Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
383e2e07bd
|
|||
|
c708fedca3
|
|||
|
690015aa40
|
|||
|
6e04dc1c74
|
|||
|
34b2aed773
|
|||
|
a967176454
|
|||
|
56bc506aae
|
|||
|
fd36c61f8f
|
@@ -25,10 +25,14 @@ jobs:
|
||||
|
||||
- name: Create production .env file
|
||||
working-directory: electron-app
|
||||
run: |
|
||||
echo "WS_URL=${{ secrets.WS_URL }}" > .env
|
||||
echo "API_URL=${{ secrets.API_URL }}" >> .env
|
||||
echo "NODE_ENV=production" >> .env
|
||||
env:
|
||||
WS_URL: ${{ secrets.WS_URL }}
|
||||
API_URL: ${{ secrets.API_URL }}
|
||||
run: node scripts/create-env.cjs
|
||||
|
||||
- name: Verify .env file
|
||||
working-directory: electron-app
|
||||
run: type .env
|
||||
|
||||
- name: Build TypeScript
|
||||
working-directory: electron-app
|
||||
@@ -43,9 +47,7 @@ jobs:
|
||||
- name: Get version from package.json
|
||||
id: version
|
||||
working-directory: electron-app
|
||||
run: |
|
||||
$version = (Get-Content package.json | ConvertFrom-Json).version
|
||||
echo "VERSION=$version" >> $env:GITHUB_OUTPUT
|
||||
run: node scripts/get-version.cjs
|
||||
|
||||
- name: Create Release and Upload exe
|
||||
uses: softprops/action-gh-release@v1
|
||||
|
||||
@@ -9,6 +9,8 @@ files:
|
||||
extraResources:
|
||||
- from: .env
|
||||
to: .env
|
||||
- from: resources/icons
|
||||
to: icons
|
||||
win:
|
||||
target:
|
||||
- portable
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'">
|
||||
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'; media-src 'self' data:; img-src 'self' data:">
|
||||
<title>rmtPocketWatcher</title>
|
||||
<style>
|
||||
* {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "rmtpocketwatcher",
|
||||
"version": "1.0.2",
|
||||
"version": "1.0.5",
|
||||
"description": "Real-time AUEC price tracking desktop application",
|
||||
"type": "module",
|
||||
"main": "dist/main/index.js",
|
||||
|
||||
BIN
electron-app/public/notifcation.mp3
Normal file
BIN
electron-app/public/notifcation.mp3
Normal file
Binary file not shown.
14
electron-app/scripts/create-env.cjs
Normal file
14
electron-app/scripts/create-env.cjs
Normal file
@@ -0,0 +1,14 @@
|
||||
const fs = require('fs');
|
||||
const path = require('path');
|
||||
|
||||
const envPath = path.join(__dirname, '..', '.env');
|
||||
|
||||
const content = `WS_URL=${process.env.WS_URL || ''}
|
||||
API_URL=${process.env.API_URL || ''}
|
||||
NODE_ENV=production
|
||||
`;
|
||||
|
||||
fs.writeFileSync(envPath, content, 'utf8');
|
||||
console.log('.env file created at:', envPath);
|
||||
console.log('Contents:');
|
||||
console.log(content);
|
||||
12
electron-app/scripts/get-version.cjs
Normal file
12
electron-app/scripts/get-version.cjs
Normal file
@@ -0,0 +1,12 @@
|
||||
const fs = require('fs');
|
||||
const path = require('path');
|
||||
|
||||
const pkgPath = path.join(__dirname, '..', 'package.json');
|
||||
const pkg = JSON.parse(fs.readFileSync(pkgPath, 'utf8'));
|
||||
|
||||
const outputFile = process.env.GITHUB_OUTPUT;
|
||||
if (outputFile) {
|
||||
fs.appendFileSync(outputFile, `VERSION=${pkg.version}\n`);
|
||||
}
|
||||
|
||||
console.log(pkg.version);
|
||||
@@ -9,6 +9,12 @@ import { initDatabase, closeDatabase } from './database.js';
|
||||
const __filename = fileURLToPath(import.meta.url);
|
||||
const __dirname = path.dirname(__filename);
|
||||
|
||||
// Set app name for notifications (must be before app ready)
|
||||
app.setName('rmtPocketWatcher');
|
||||
if (process.platform === 'win32') {
|
||||
app.setAppUserModelId('com.lambdabanking.rmtpocketwatcher');
|
||||
}
|
||||
|
||||
// Load environment variables from .env file
|
||||
// In dev: __dirname = dist/main, so go up to electron-app root
|
||||
// In prod: __dirname = resources/app.asar/dist/main, .env should be in resources
|
||||
|
||||
@@ -13,29 +13,40 @@ export function setupIpcHandlers(mainWindow: BrowserWindow): void {
|
||||
wsClient = new WebSocketClient(wsUrl);
|
||||
}
|
||||
|
||||
// Helper to safely send to renderer (window may be destroyed or hidden)
|
||||
const safeSend = (channel: string, ...args: any[]) => {
|
||||
try {
|
||||
if (mainWindow && !mainWindow.isDestroyed() && mainWindow.webContents && !mainWindow.webContents.isDestroyed()) {
|
||||
mainWindow.webContents.send(channel, ...args);
|
||||
}
|
||||
} catch (error) {
|
||||
// Window was destroyed, ignore
|
||||
}
|
||||
};
|
||||
|
||||
// Forward WebSocket events to renderer
|
||||
wsClient.on('connected', () => {
|
||||
mainWindow.webContents.send('ws:connected');
|
||||
safeSend('ws:connected');
|
||||
});
|
||||
|
||||
wsClient.on('disconnected', () => {
|
||||
mainWindow.webContents.send('ws:disconnected');
|
||||
safeSend('ws:disconnected');
|
||||
});
|
||||
|
||||
wsClient.on('priceUpdate', (data: PriceIndex) => {
|
||||
mainWindow.webContents.send('ws:priceUpdate', data);
|
||||
safeSend('ws:priceUpdate', data);
|
||||
});
|
||||
|
||||
wsClient.on('historyData', (data: any) => {
|
||||
mainWindow.webContents.send('ws:historyData', data);
|
||||
safeSend('ws:historyData', data);
|
||||
});
|
||||
|
||||
wsClient.on('error', (error: Error) => {
|
||||
mainWindow.webContents.send('ws:error', error.message);
|
||||
safeSend('ws:error', error.message);
|
||||
});
|
||||
|
||||
wsClient.on('maxReconnectAttemptsReached', () => {
|
||||
mainWindow.webContents.send('ws:maxReconnectAttemptsReached');
|
||||
safeSend('ws:maxReconnectAttemptsReached');
|
||||
});
|
||||
|
||||
// Remove existing handlers
|
||||
|
||||
@@ -44,6 +44,8 @@ export function App() {
|
||||
const [selectedRange, setSelectedRange] = useState('7d');
|
||||
const [zoomState, setZoomState] = useState<ZoomState | null>(null);
|
||||
const chartContainerRef = useRef<HTMLDivElement>(null);
|
||||
const [animateChart, setAnimateChart] = useState(true);
|
||||
const [hoveredSeller, setHoveredSeller] = useState<string | null>(null);
|
||||
|
||||
// Price Alert State
|
||||
const [alerts, setAlerts] = useState<PriceAlert[]>([]);
|
||||
@@ -262,6 +264,7 @@ export function App() {
|
||||
const handleWheel = (e: WheelEvent) => {
|
||||
e.preventDefault();
|
||||
e.stopPropagation();
|
||||
setAnimateChart(false);
|
||||
|
||||
const isZoomIn = e.deltaY < 0;
|
||||
const zoomFactor = isZoomIn ? 0.8 : 1.25; // Zoom in = smaller range, zoom out = larger range
|
||||
@@ -334,11 +337,13 @@ export function App() {
|
||||
}, [fullChartData, zoomState, yAxisDomain]);
|
||||
|
||||
const handleRangeChange = (range: string) => {
|
||||
setAnimateChart(true);
|
||||
setSelectedRange(range);
|
||||
setZoomState(null);
|
||||
};
|
||||
|
||||
const resetZoom = () => {
|
||||
setAnimateChart(false);
|
||||
setZoomState(null);
|
||||
};
|
||||
|
||||
@@ -415,22 +420,19 @@ export function App() {
|
||||
|
||||
const handleZoomIn = () => {
|
||||
if (!fullChartData.length) return;
|
||||
setAnimateChart(false);
|
||||
|
||||
// Keep current X range, only adjust Y max
|
||||
const currentXStart = zoomState?.xStart ?? fullChartData[0].timestamp;
|
||||
const currentXEnd = zoomState?.xEnd ?? fullChartData[fullChartData.length - 1].timestamp;
|
||||
const currentYMax = zoomState?.yMax ?? yAxisDomain[1];
|
||||
|
||||
const xRange = currentXEnd - currentXStart;
|
||||
const newXRange = xRange * 0.8;
|
||||
|
||||
const xCenter = (currentXStart + currentXEnd) / 2;
|
||||
|
||||
// Y-axis: zoom from 0
|
||||
// Y-axis: decrease max to zoom in (show less range)
|
||||
const newYMax = currentYMax * 0.8;
|
||||
|
||||
setZoomState({
|
||||
xStart: xCenter - newXRange / 2,
|
||||
xEnd: xCenter + newXRange / 2,
|
||||
xStart: currentXStart,
|
||||
xEnd: currentXEnd,
|
||||
yMin: 0,
|
||||
yMax: newYMax,
|
||||
});
|
||||
@@ -438,30 +440,87 @@ export function App() {
|
||||
|
||||
const handleZoomOut = () => {
|
||||
if (!fullChartData.length) return;
|
||||
setAnimateChart(false);
|
||||
|
||||
// Keep current X range, only adjust Y max
|
||||
const currentXStart = zoomState?.xStart ?? fullChartData[0].timestamp;
|
||||
const currentXEnd = zoomState?.xEnd ?? fullChartData[fullChartData.length - 1].timestamp;
|
||||
const currentYMax = zoomState?.yMax ?? yAxisDomain[1];
|
||||
|
||||
// Y-axis: increase max to zoom out (show more range)
|
||||
const newYMax = currentYMax * 1.25;
|
||||
|
||||
setZoomState({
|
||||
xStart: currentXStart,
|
||||
xEnd: currentXEnd,
|
||||
yMin: 0,
|
||||
yMax: newYMax,
|
||||
});
|
||||
};
|
||||
|
||||
const handleTimelineCompress = () => {
|
||||
if (!fullChartData.length) return;
|
||||
setAnimateChart(false);
|
||||
|
||||
const currentXStart = zoomState?.xStart ?? fullChartData[0].timestamp;
|
||||
const currentXEnd = zoomState?.xEnd ?? fullChartData[fullChartData.length - 1].timestamp;
|
||||
const currentYMax = zoomState?.yMax ?? yAxisDomain[1];
|
||||
|
||||
const xRange = currentXEnd - currentXStart;
|
||||
const newXRange = xRange * 1.25;
|
||||
|
||||
const newXRange = xRange * 0.8; // Compress = show less time
|
||||
const xCenter = (currentXStart + currentXEnd) / 2;
|
||||
|
||||
// Constrain to data bounds
|
||||
const dataXStart = fullChartData[0].timestamp;
|
||||
const dataXEnd = fullChartData[fullChartData.length - 1].timestamp;
|
||||
|
||||
let newXStart = xCenter - newXRange / 2;
|
||||
let newXEnd = xCenter + newXRange / 2;
|
||||
|
||||
// Ensure we stay within data bounds
|
||||
if (newXStart < dataXStart) {
|
||||
newXEnd += dataXStart - newXStart;
|
||||
newXStart = dataXStart;
|
||||
}
|
||||
if (newXEnd > dataXEnd) {
|
||||
newXStart -= newXEnd - dataXEnd;
|
||||
newXEnd = dataXEnd;
|
||||
}
|
||||
newXStart = Math.max(dataXStart, newXStart);
|
||||
newXEnd = Math.min(dataXEnd, newXEnd);
|
||||
|
||||
setZoomState({
|
||||
xStart: newXStart,
|
||||
xEnd: newXEnd,
|
||||
yMin: 0,
|
||||
yMax: currentYMax,
|
||||
});
|
||||
};
|
||||
|
||||
const handleTimelineExpand = () => {
|
||||
if (!fullChartData.length) return;
|
||||
setAnimateChart(false);
|
||||
|
||||
const currentXStart = zoomState?.xStart ?? fullChartData[0].timestamp;
|
||||
const currentXEnd = zoomState?.xEnd ?? fullChartData[fullChartData.length - 1].timestamp;
|
||||
const currentYMax = zoomState?.yMax ?? yAxisDomain[1];
|
||||
|
||||
const xRange = currentXEnd - currentXStart;
|
||||
const newXRange = xRange * 1.25; // Expand = show more time
|
||||
const xCenter = (currentXStart + currentXEnd) / 2;
|
||||
|
||||
// Constrain to data bounds
|
||||
const dataXStart = fullChartData[0].timestamp;
|
||||
const dataXEnd = fullChartData[fullChartData.length - 1].timestamp;
|
||||
|
||||
const newXStart = Math.max(dataXStart, xCenter - newXRange / 2);
|
||||
const newXEnd = Math.min(dataXEnd, xCenter + newXRange / 2);
|
||||
|
||||
// Y-axis: zoom from 0
|
||||
const newYMax = currentYMax * 1.25;
|
||||
|
||||
setZoomState({
|
||||
xStart: newXStart,
|
||||
xEnd: newXEnd,
|
||||
yMin: 0,
|
||||
yMax: newYMax,
|
||||
yMax: currentYMax,
|
||||
});
|
||||
};
|
||||
|
||||
@@ -474,6 +533,64 @@ export function App() {
|
||||
return fullXRange / currentXRange;
|
||||
};
|
||||
|
||||
// Timeline slider position (0-100)
|
||||
const sliderPosition = useMemo(() => {
|
||||
if (!fullChartData.length) return 50;
|
||||
|
||||
const dataXStart = fullChartData[0].timestamp;
|
||||
const dataXEnd = fullChartData[fullChartData.length - 1].timestamp;
|
||||
const fullRange = dataXEnd - dataXStart;
|
||||
|
||||
if (!zoomState || fullRange === 0) return 50;
|
||||
|
||||
const viewCenter = (zoomState.xStart + zoomState.xEnd) / 2;
|
||||
const position = ((viewCenter - dataXStart) / fullRange) * 100;
|
||||
|
||||
return Math.max(0, Math.min(100, position));
|
||||
}, [fullChartData, zoomState]);
|
||||
|
||||
const handleSliderChange = (e: React.ChangeEvent<HTMLInputElement>) => {
|
||||
if (!fullChartData.length) return;
|
||||
setAnimateChart(false);
|
||||
|
||||
const position = parseFloat(e.target.value);
|
||||
const dataXStart = fullChartData[0].timestamp;
|
||||
const dataXEnd = fullChartData[fullChartData.length - 1].timestamp;
|
||||
const fullRange = dataXEnd - dataXStart;
|
||||
|
||||
// Calculate new center based on slider position
|
||||
const newCenter = dataXStart + (position / 100) * fullRange;
|
||||
|
||||
// Keep current view width or use full range if no zoom
|
||||
const currentXStart = zoomState?.xStart ?? dataXStart;
|
||||
const currentXEnd = zoomState?.xEnd ?? dataXEnd;
|
||||
const currentYMax = zoomState?.yMax ?? yAxisDomain[1];
|
||||
const viewWidth = currentXEnd - currentXStart;
|
||||
|
||||
// Calculate new bounds centered on slider position
|
||||
let newXStart = newCenter - viewWidth / 2;
|
||||
let newXEnd = newCenter + viewWidth / 2;
|
||||
|
||||
// Constrain to data bounds
|
||||
if (newXStart < dataXStart) {
|
||||
newXEnd += dataXStart - newXStart;
|
||||
newXStart = dataXStart;
|
||||
}
|
||||
if (newXEnd > dataXEnd) {
|
||||
newXStart -= newXEnd - dataXEnd;
|
||||
newXEnd = dataXEnd;
|
||||
}
|
||||
newXStart = Math.max(dataXStart, newXStart);
|
||||
newXEnd = Math.min(dataXEnd, newXEnd);
|
||||
|
||||
setZoomState({
|
||||
xStart: newXStart,
|
||||
xEnd: newXEnd,
|
||||
yMin: 0,
|
||||
yMax: currentYMax,
|
||||
});
|
||||
};
|
||||
|
||||
return (
|
||||
<div style={{
|
||||
fontFamily: 'system-ui',
|
||||
@@ -716,6 +833,38 @@ export function App() {
|
||||
>
|
||||
Reset (×{getZoomLevel().toFixed(1)})
|
||||
</button>
|
||||
<button
|
||||
onClick={handleTimelineExpand}
|
||||
style={{
|
||||
padding: '6px 12px',
|
||||
backgroundColor: '#2a2f4a',
|
||||
color: '#fff',
|
||||
border: '1px solid #50e3c2',
|
||||
borderRadius: '4px',
|
||||
cursor: 'pointer',
|
||||
fontSize: '14px',
|
||||
fontWeight: 'bold',
|
||||
}}
|
||||
title="Expand Timeline"
|
||||
>
|
||||
<
|
||||
</button>
|
||||
<button
|
||||
onClick={handleTimelineCompress}
|
||||
style={{
|
||||
padding: '6px 12px',
|
||||
backgroundColor: '#2a2f4a',
|
||||
color: '#fff',
|
||||
border: '1px solid #50e3c2',
|
||||
borderRadius: '4px',
|
||||
cursor: 'pointer',
|
||||
fontSize: '14px',
|
||||
fontWeight: 'bold',
|
||||
}}
|
||||
title="Compress Timeline"
|
||||
>
|
||||
>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<div style={{ color: '#888', fontSize: '11px', fontStyle: 'italic' }}>
|
||||
@@ -754,15 +903,59 @@ export function App() {
|
||||
allowDataOverflow={true}
|
||||
/>
|
||||
<Tooltip
|
||||
contentStyle={{ backgroundColor: '#1a1f3a', border: '1px solid #2a2f4a', borderRadius: '4px' }}
|
||||
labelStyle={{ color: '#fff' }}
|
||||
labelFormatter={(label, payload) => {
|
||||
if (payload && payload.length > 0 && payload[0].payload.fullTime) {
|
||||
return payload[0].payload.fullTime;
|
||||
content={({ active, payload }) => {
|
||||
if (!active || !payload || payload.length === 0) return null;
|
||||
const data = payload[0]?.payload;
|
||||
if (!data) return null;
|
||||
const seenNames = new Set<string>();
|
||||
const validSellers = payload
|
||||
.filter((p: any) => {
|
||||
if (p.value === undefined || p.value === null || isNaN(p.value)) return false;
|
||||
if (!p.name || String(p.name).trim() === '') return false;
|
||||
if (p.stroke === 'transparent') return false;
|
||||
// Deduplicate by name
|
||||
if (seenNames.has(p.name)) return false;
|
||||
seenNames.add(p.name);
|
||||
return true;
|
||||
})
|
||||
.sort((a: any, b: any) => a.value - b.value);
|
||||
if (validSellers.length === 0) return null;
|
||||
|
||||
// If hovering over a specific line, show that seller and others with same price
|
||||
let displaySellers = validSellers;
|
||||
if (hoveredSeller) {
|
||||
const hoveredData = validSellers.find((s: any) => s.name === hoveredSeller);
|
||||
if (hoveredData) {
|
||||
const hoveredPrice = hoveredData.value;
|
||||
// Show hovered seller and any with same price (within 0.0001 tolerance)
|
||||
displaySellers = validSellers.filter((s: any) =>
|
||||
s.name === hoveredSeller || Math.abs(s.value - hoveredPrice) < 0.0001
|
||||
);
|
||||
}
|
||||
}
|
||||
return label;
|
||||
|
||||
return (
|
||||
<div style={{ backgroundColor: "#1a1f3a", border: "1px solid #50e3c2", borderRadius: "6px", padding: "12px", maxHeight: "300px", overflowY: "auto", minWidth: "200px" }}>
|
||||
<div style={{ color: "#fff", fontWeight: "bold", marginBottom: "8px", borderBottom: "1px solid #2a2f4a", paddingBottom: "6px" }}>
|
||||
{data.fullTime || data.time}
|
||||
</div>
|
||||
{!hoveredSeller && (
|
||||
<div style={{ fontSize: "11px", color: "#888", marginBottom: "6px" }}>
|
||||
{validSellers.length} seller{validSellers.length !== 1 ? "s" : ""} - Sorted by price
|
||||
</div>
|
||||
)}
|
||||
{displaySellers.slice(0, hoveredSeller ? 20 : 10).map((seller: any, idx: number) => (
|
||||
<div key={`${seller.name}-${idx}`} style={{ display: "flex", justifyContent: "space-between", alignItems: "center", padding: "4px 0", borderBottom: idx < displaySellers.length - 1 ? "1px solid #2a2f4a" : "none" }}>
|
||||
<span style={{ color: seller.color, fontSize: "12px", fontWeight: seller.name === hoveredSeller ? "bold" : "normal" }}>{seller.name}</span>
|
||||
<span style={{ color: "#50e3c2", fontWeight: "bold", fontSize: "12px", marginLeft: "10px" }}>${Number(seller.value).toFixed(4)}</span>
|
||||
</div>
|
||||
))}
|
||||
{!hoveredSeller && validSellers.length > 10 && (
|
||||
<div style={{ color: "#888", fontSize: "11px", marginTop: "6px", textAlign: "center" }}>+{validSellers.length - 10} more sellers</div>
|
||||
)}
|
||||
</div>
|
||||
);
|
||||
}}
|
||||
formatter={(value: any, name: string) => [`$${Number(value).toFixed(9)}`, name]}
|
||||
wrapperStyle={{ zIndex: 1000 }}
|
||||
/>
|
||||
<Legend
|
||||
@@ -775,20 +968,73 @@ export function App() {
|
||||
}}
|
||||
iconType="line"
|
||||
/>
|
||||
{/* Invisible wider lines for better hover detection */}
|
||||
{sellers.map((seller) => (
|
||||
<Line
|
||||
key={`${seller}-hitarea`}
|
||||
type="linear"
|
||||
dataKey={seller}
|
||||
stroke="transparent"
|
||||
strokeWidth={15}
|
||||
dot={false}
|
||||
connectNulls
|
||||
isAnimationActive={false}
|
||||
onMouseEnter={() => setHoveredSeller(seller)}
|
||||
onMouseLeave={() => setHoveredSeller(null)}
|
||||
style={{ cursor: 'pointer' }}
|
||||
legendType="none"
|
||||
/>
|
||||
))}
|
||||
{/* Visible lines */}
|
||||
{sellers.map((seller) => (
|
||||
<Line
|
||||
key={seller}
|
||||
type="monotone"
|
||||
type="linear"
|
||||
dataKey={seller}
|
||||
stroke={COLORS[sellers.indexOf(seller) % COLORS.length]}
|
||||
strokeWidth={2}
|
||||
strokeWidth={hoveredSeller === seller ? 4 : 2}
|
||||
dot={false}
|
||||
activeDot={{ r: 6 }}
|
||||
connectNulls
|
||||
isAnimationActive={animateChart}
|
||||
style={{ pointerEvents: 'none' }}
|
||||
legendType="line"
|
||||
/>
|
||||
))}
|
||||
</LineChart>
|
||||
</ResponsiveContainer>
|
||||
</div>
|
||||
|
||||
{/* Timeline Slider */}
|
||||
<div style={{
|
||||
marginTop: '15px',
|
||||
padding: '10px 15px',
|
||||
backgroundColor: '#0f1329',
|
||||
borderRadius: '4px',
|
||||
border: '1px solid #2a2f4a',
|
||||
}}>
|
||||
<div style={{ display: 'flex', alignItems: 'center', gap: '15px' }}>
|
||||
<span style={{ color: '#888', fontSize: '12px', minWidth: '60px' }}>
|
||||
{fullChartData.length > 0 ? new Date(fullChartData[0].timestamp).toLocaleDateString() : ''}
|
||||
</span>
|
||||
<input
|
||||
type="range"
|
||||
min="0"
|
||||
max="100"
|
||||
value={sliderPosition}
|
||||
onChange={handleSliderChange}
|
||||
style={{
|
||||
flex: 1,
|
||||
height: '8px',
|
||||
cursor: 'pointer',
|
||||
accentColor: '#50e3c2',
|
||||
}}
|
||||
/>
|
||||
<span style={{ color: '#888', fontSize: '12px', minWidth: '60px', textAlign: 'right' }}>
|
||||
{fullChartData.length > 0 ? new Date(fullChartData[fullChartData.length - 1].timestamp).toLocaleDateString() : ''}
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
) : (
|
||||
<div style={{ textAlign: 'center', padding: '40px', color: '#ff6b9d' }}>
|
||||
@@ -854,7 +1100,7 @@ export function App() {
|
||||
<th style={{ textAlign: 'right', padding: '12px', color: '#888', fontWeight: 'normal' }}>Price/1M AUEC</th>
|
||||
{customAuecAmount && (
|
||||
<th style={{ textAlign: 'right', padding: '12px', color: '#888', fontWeight: 'normal' }}>
|
||||
Price for {(customAuecAmount / 1000000).toLocaleString()}M AUEC
|
||||
Price for {customAuecAmount.toLocaleString()} AUEC
|
||||
</th>
|
||||
)}
|
||||
</tr>
|
||||
@@ -928,10 +1174,7 @@ export function App() {
|
||||
)}
|
||||
|
||||
{/* Alert Audio */}
|
||||
<audio
|
||||
ref={alertAudioRef}
|
||||
src="data:audio/wav;base64,UklGRnoGAABXQVZFZm10IBAAAAABAAEAQB8AAEAfAAABAAgAZGF0YQoGAACBhYqFbF1fdJivrJBhNjVgodDbq2EcBj+a2/LDciUFLIHO8tiJNwgZaLvt559NEAxQp+PwtmMcBjiR1/LMeSwFJHfH8N2QQAoUXrTp66hVFApGn+DyvmwhBSuBzvLZiTYIGGS57OihUBELTKXh8bllHAU2jdXvz3oqBSh+zPDajzsKElyx6OyrWBUIQ5zd8sFuJAUuhM/z24k2CBhku+zooVARC0yl4fG5ZRwFNo3V7896KgUofszw2o87ChJcsevsq1gVCEOc3fLBbiQFLoTP89uJNggYZLvs6KFQEQtMpeHxuWUcBTaN1e/PeioFKH7M8NqPOwsSXLHr7KtYFQhDnN3ywW4kBS6Ez/PbiTYIGGS77OihUBELTKXh8bllHAU2jdXvz3oqBSh+zPDajzsKElyx6+yrWBUIQ5zd8sFuJAUuhM/z24k2CBhku+zooVARC0yl4fG5ZRwFNo3V7896KgUofszw2o87ChJcsevsq1gVCEOc3fLBbiQFLoTP89uJNggYZLvs6KFQEQtMpeHxuWUcBTaN1e/PeioFKH7M8NqPOwsSXLHr7KtYFQhDnN3ywW4kBS6Ez/PbiTYIGGS77OihUBELTKXh8bllHAU2jdXvz3oqBSh+zPDajzsKElyx6+yrWBUIQ5zd8sFuJAUuhM/z24k2CBhku+zooVARC0yl4fG5ZRwFNo3V7896KgUofszw2o87ChJcsevsq1gVCEOc3fLBbiQFLoTP89uJNggYZLvs6KFQEQtMpeHxuWUcBTaN1e/PeioFKH7M8NqPOwsSXLHr7KtYFQhDnN3ywW4kBS6Ez/PbiTYIGGS77OihUBELTKXh8bllHAU2jdXvz3oqBSh+zPDajzsKElyx6+yrWBUIQ5zd8sFuJAUuhM/z24k2CBhku+zooVARC0yl4fG5ZRwFNo3V7896KgUofszw2o87ChJcsevsq1gVCEOc3fLBbiQFLoTP89uJNggYZLvs6KFQEQtMpeHxuWUcBTaN1e/PeioFKH7M8NqPOwsSXLHr7KtYFQhDnN3ywW4kBS6Ez/PbiTYIGGS77OihUBELTKXh8bllHAU2jdXvz3oqBSh+zPDajzsKElyx6+yrWBUIQ5zd8sFuJAUuhM/z24k2CBhku+zooVARC0yl4fG5ZRwFNo3V7896KgUofszw2o87ChJcsevsq1gVCEOc3fLBbiQFLoTP89uJNggYZLvs6KFQEQtMpeHxuWUcBTaN1e/PeioFKH7M8NqPOwsSXLHr7KtYFQhDnN3ywW4kBS6Ez/PbiTYIGGS77OihUBELTKXh8bllHAU2jdXvz3oqBSh+zPDajzsKElyx6+yrWBUIQ5zd8sFuJAUuhM/z24k2CBhku+zooVARC0yl4fG5ZRwFNo3V7896KgUofszw2o87ChJcsevsq1gVCEOc3fLBbiQFLoTP89uJNggYZLvs6KFQEQtMpeHxuWUcBTaN1e/PeioFKH7M8NqPOwsSXLHr7KtYFQhDnN3ywW4kBS6Ez/PbiTYIGGS77OihUBELTKXh8bllHAU2jdXvz3oqBSh+zPDajzsKElyx6+yrWBUIQ5zd8sFuJAUuhM/z24k2CBhku+zooVARC0yl4fG5ZRwFNo3V7896KgUofszw2o87ChJcsevsq1gVCEOc3fLBbiQFLoTP89uJNggYZLvs6KFQEQtMpeHxuWQ="
|
||||
/>
|
||||
<audio ref={alertAudioRef} src="./notifcation.mp3" />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -56,6 +56,9 @@ export function TitleBar() {
|
||||
WebkitAppRegion: 'drag',
|
||||
userSelect: 'none',
|
||||
padding: '0 15px',
|
||||
position: 'sticky',
|
||||
top: 0,
|
||||
zIndex: 1000,
|
||||
} as any}
|
||||
>
|
||||
<div style={{ display: 'flex', alignItems: 'center', gap: '10px' }}>
|
||||
|
||||
@@ -5,6 +5,7 @@ export default defineConfig({
|
||||
plugins: [react()],
|
||||
root: '.',
|
||||
base: './', // Use relative paths for Electron
|
||||
publicDir: 'public',
|
||||
build: {
|
||||
outDir: 'dist/renderer',
|
||||
emptyOutDir: true,
|
||||
|
||||
Reference in New Issue
Block a user