Skip to content

Commit 0f27e45

Browse files
committed
refined react elastic readme
1 parent a0d4f10 commit 0f27e45

File tree

5 files changed

+19
-3
lines changed

5 files changed

+19
-3
lines changed

README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,20 @@
11

2+
![A Banner](images/swampedtv_banner.webp)
3+
4+
5+
6+
### Next.js Analytics with Redux: Harnessing Elasticsearch for Actionable Insights
7+
8+
9+
Swamped TV Dashboard is a Next.js-powered analytics platform tailored for setup box data analysis. Harnessing the power of Elasticsearch, it offers insights into channel performance, top channels, slow channels, device monitoring, and configuration. Built with a modular Redux store and intuitive UI components.
10+
11+
12+
[![A Screen](images/swampedtv_screen.webp)](https://react-elastic.junkielabs.in)
13+
14+
15+
16+
17+
218
## Project Overview
319

420
This dashboard is designed to analyze and visualize data retrieved from an Elasticsearch database. It offers insights into various aspects of setup box data, such as channel performance, top channels, slow channels, device monitoring, and configuration details.

images/swampedtv_banner.webp

67.7 KB
Loading

images/swampedtv_screen.webp

48.3 KB
Loading

src/ui/resource/color.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ export class UiResourceColor {
3333
"#f9e370",
3434

3535
//light Blue
36-
"#81bDe9",
36+
"#67a9d9",
3737

3838
//pink:
39-
"#f5afc8",
39+
"#fb8eb4",
4040
//lightClay:
4141
"#cbc396",
4242

src/ui/sections/analysis/DeviceMonitor/DeviceTable/DeviceTable.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ const DeviceTableRow: FC<DeviceTableRowProps> = (props) => {
162162

163163
return (
164164
<React.Fragment>
165-
<tr key={row?.id} onClick={(event) => handleClick(event, row.deviceId)}>
165+
<tr key={row?.id} className="td-cursor-pointer" onClick={(event) => handleClick(event, row.deviceId)}>
166166
<td>
167167
<IconButton
168168
aria-label="expand row"

0 commit comments

Comments
 (0)