[PR #20] [CLOSED] a1 #25

Closed
opened 2026-03-16 12:12:22 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/hipcityreg/situation-monitor/pull/20
Author: @zqsb6k44sp-cmd
Created: 1/17/2026
Status: Closed

Base: mainHead: main


📝 Commits (10+)

  • 858817d Change BASE_PATH in deploy workflow
  • c14cc01 Update +page.svelte
  • 747bcdb Update header logo text for clarity
  • 55543ca Initial plan
  • ebd6c8f Add Nifty 50 and Nifty Next 50 heatmap panels with logo support
  • 51fb378 Add unit tests and fix formatting
  • ed1f938 Address code review feedback - remove hardcoded token, fix NaN handling
  • d3fe3d7 Merge pull request #1 from zqsb6k44sp-cmd/copilot/add-nifty-heatmap-panels
  • cfa5fda Initial plan
  • b731497 Add auto-refresh for Nifty heatmaps with 60s interval and last update time display

📊 Changes

30 files changed (+8935 additions, -7535 deletions)

View changed files

📝 .github/workflows/deploy.yml (+1 -1)
📝 CLAUDE.md (+8 -0)
📝 package-lock.json (+7512 -7512)
src/lib/api/bloomberg.ts (+113 -0)
📝 src/lib/api/index.ts (+2 -0)
📝 src/lib/api/markets.ts (+1 -2)
src/lib/api/nifty.ts (+160 -0)
src/lib/components/common/StockHeatmapCell.svelte (+144 -0)
📝 src/lib/components/common/index.ts (+1 -0)
📝 src/lib/components/layout/Header.svelte (+1 -1)
src/lib/components/panels/BloombergFeedPanel.svelte (+144 -0)
📝 src/lib/components/panels/IntelPanel.svelte (+2 -1)
src/lib/components/panels/Nifty50HeatmapPanel.svelte (+51 -0)
src/lib/components/panels/NiftyNext50HeatmapPanel.svelte (+51 -0)
📝 src/lib/components/panels/index.ts (+3 -0)
📝 src/lib/config/api.ts (+2 -1)
📝 src/lib/config/feeds.ts (+13 -2)
📝 src/lib/config/index.ts (+9 -1)
src/lib/config/nifty.ts (+122 -0)
📝 src/lib/config/panels.ts (+8 -2)

...and 10 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/hipcityreg/situation-monitor/pull/20 **Author:** [@zqsb6k44sp-cmd](https://github.com/zqsb6k44sp-cmd) **Created:** 1/17/2026 **Status:** ❌ Closed **Base:** `main` ← **Head:** `main` --- ### 📝 Commits (10+) - [`858817d`](https://github.com/hipcityreg/situation-monitor/commit/858817d34a3d2774168bf729131af9f3b9873e5d) Change BASE_PATH in deploy workflow - [`c14cc01`](https://github.com/hipcityreg/situation-monitor/commit/c14cc016fa45aba9e39b259da6dc84d00cce349d) Update +page.svelte - [`747bcdb`](https://github.com/hipcityreg/situation-monitor/commit/747bcdb8ab79675d03b5921bbd260f3f929780a5) Update header logo text for clarity - [`55543ca`](https://github.com/hipcityreg/situation-monitor/commit/55543caddd5f07b03e5c72834d5e1a43df480ecd) Initial plan - [`ebd6c8f`](https://github.com/hipcityreg/situation-monitor/commit/ebd6c8fb756837ae31e8611b61d913c0fd184507) Add Nifty 50 and Nifty Next 50 heatmap panels with logo support - [`51fb378`](https://github.com/hipcityreg/situation-monitor/commit/51fb378a3774bf6460f90425d0e4c816662c4ea1) Add unit tests and fix formatting - [`ed1f938`](https://github.com/hipcityreg/situation-monitor/commit/ed1f938ea203fdee97038baf293ab28cf438466e) Address code review feedback - remove hardcoded token, fix NaN handling - [`d3fe3d7`](https://github.com/hipcityreg/situation-monitor/commit/d3fe3d74817f5d3fa9d0a6df437bdd00ce59571d) Merge pull request #1 from zqsb6k44sp-cmd/copilot/add-nifty-heatmap-panels - [`cfa5fda`](https://github.com/hipcityreg/situation-monitor/commit/cfa5fda34799eb3ec1ae8979e1a403d9d07294f3) Initial plan - [`b731497`](https://github.com/hipcityreg/situation-monitor/commit/b731497be3ec33cdfbd5f7099234f2994f99dda0) Add auto-refresh for Nifty heatmaps with 60s interval and last update time display ### 📊 Changes **30 files changed** (+8935 additions, -7535 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/deploy.yml` (+1 -1) 📝 `CLAUDE.md` (+8 -0) 📝 `package-lock.json` (+7512 -7512) ➕ `src/lib/api/bloomberg.ts` (+113 -0) 📝 `src/lib/api/index.ts` (+2 -0) 📝 `src/lib/api/markets.ts` (+1 -2) ➕ `src/lib/api/nifty.ts` (+160 -0) ➕ `src/lib/components/common/StockHeatmapCell.svelte` (+144 -0) 📝 `src/lib/components/common/index.ts` (+1 -0) 📝 `src/lib/components/layout/Header.svelte` (+1 -1) ➕ `src/lib/components/panels/BloombergFeedPanel.svelte` (+144 -0) 📝 `src/lib/components/panels/IntelPanel.svelte` (+2 -1) ➕ `src/lib/components/panels/Nifty50HeatmapPanel.svelte` (+51 -0) ➕ `src/lib/components/panels/NiftyNext50HeatmapPanel.svelte` (+51 -0) 📝 `src/lib/components/panels/index.ts` (+3 -0) 📝 `src/lib/config/api.ts` (+2 -1) 📝 `src/lib/config/feeds.ts` (+13 -2) 📝 `src/lib/config/index.ts` (+9 -1) ➕ `src/lib/config/nifty.ts` (+122 -0) 📝 `src/lib/config/panels.ts` (+8 -2) _...and 10 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-16 12:12:22 +03:00
Sign in to join this conversation.
No labels
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/situation-monitor#25
No description provided.