mirror of
https://github.com/calli-eve/eve-pi.git
synced 2026-02-12 10:48:48 +01:00
Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7a09503ffa | ||
|
|
9de91f9982 |
@@ -4,6 +4,14 @@ Simple tool to track your PI planet extractors. Login with your characters and e
|
||||
|
||||
Any questions, feedback or suggestions are welcome at [EVE PI Discord](https://discord.gg/bCdXzU8PHK)
|
||||
|
||||
## Partner code
|
||||
|
||||
Consider using EVE partner code to support the project:
|
||||
|
||||
```
|
||||
CALLIEVE
|
||||
```
|
||||
|
||||
## [Hosted PI tool](https://pi.calli.fi)
|
||||
|
||||

|
||||
|
||||
@@ -22,15 +22,17 @@ interface AccountTotals {
|
||||
totalExtractors: number;
|
||||
}
|
||||
|
||||
const calculateAlertState = (planetDetails: PlanetCalculations): AlertState => {
|
||||
const calculateAlertState = (planetDetails: PlanetCalculations, minExtractionRate: number): AlertState => {
|
||||
const hasLowStorage = planetDetails.storageInfo.some(storage => storage.fillRate > 60);
|
||||
const hasLowImports = planetDetails.importDepletionTimes.some(depletion => depletion.hoursUntilDepletion < 24);
|
||||
|
||||
const hasLowExtractionRate = planetDetails.extractorAverages.length > 0 && minExtractionRate > 0 && planetDetails.extractorAverages.some(avg => avg.averagePerHour < minExtractionRate);
|
||||
|
||||
return {
|
||||
expired: planetDetails.expired,
|
||||
hasLowStorage,
|
||||
hasLowImports,
|
||||
hasLargeExtractorDifference: planetDetails.hasLargeExtractorDifference
|
||||
hasLargeExtractorDifference: planetDetails.hasLargeExtractorDifference,
|
||||
hasLowExtractionRate
|
||||
};
|
||||
};
|
||||
|
||||
@@ -228,7 +230,7 @@ const calculateAccountTotals = (characters: AccessToken[], piPrices: EvePraisalR
|
||||
export const AccountCard = ({ characters, isCollapsed: propIsCollapsed }: { characters: AccessToken[], isCollapsed?: boolean }) => {
|
||||
const theme = useTheme();
|
||||
const [localIsCollapsed, setLocalIsCollapsed] = useState(false);
|
||||
const { planMode, piPrices, alertMode, balanceThreshold } = useContext(SessionContext);
|
||||
const { planMode, piPrices, alertMode, balanceThreshold, minExtractionRate } = useContext(SessionContext);
|
||||
const { monthlyEstimate, storageValue, planetCount, characterCount, runningExtractors, totalExtractors } = calculateAccountTotals(characters, piPrices);
|
||||
|
||||
// Calculate planet details and alert states for each planet
|
||||
@@ -237,7 +239,7 @@ export const AccountCard = ({ characters, isCollapsed: propIsCollapsed }: { char
|
||||
const details = calculatePlanetDetails(planet, piPrices, balanceThreshold);
|
||||
acc[`${character.character.characterId}-${planet.planet_id}`] = {
|
||||
...details,
|
||||
alertState: calculateAlertState(details)
|
||||
alertState: calculateAlertState(details, minExtractionRate)
|
||||
};
|
||||
});
|
||||
return acc;
|
||||
@@ -254,16 +256,18 @@ export const AccountCard = ({ characters, isCollapsed: propIsCollapsed }: { char
|
||||
if (alertState.hasLowStorage) return 'visible';
|
||||
if (alertState.hasLowImports) return 'visible';
|
||||
if (alertState.hasLargeExtractorDifference) return 'visible';
|
||||
if (alertState.hasLowExtractionRate) return 'visible';
|
||||
return 'hidden';
|
||||
};
|
||||
|
||||
// Check if any planet in the account has alerts
|
||||
const hasAnyAlerts = Object.values(planetDetails).some(details => {
|
||||
const alertState = calculateAlertState(details);
|
||||
return alertState.expired ||
|
||||
alertState.hasLowStorage ||
|
||||
alertState.hasLowImports ||
|
||||
alertState.hasLargeExtractorDifference;
|
||||
const alertState = calculateAlertState(details, minExtractionRate);
|
||||
return alertState.expired ||
|
||||
alertState.hasLowStorage ||
|
||||
alertState.hasLowImports ||
|
||||
alertState.hasLargeExtractorDifference ||
|
||||
alertState.hasLowExtractionRate;
|
||||
});
|
||||
|
||||
// If in alert mode and no alerts, hide the entire card
|
||||
|
||||
@@ -15,6 +15,7 @@ import { CCPButton } from "../CCP/CCPButton";
|
||||
import { DiscordButton } from "../Discord/DiscordButton";
|
||||
import { GitHubButton } from "../Github/GitHubButton";
|
||||
import { LoginButton } from "../Login/LoginButton";
|
||||
import { PartnerCodeButton } from "../PartnerCode/PartnerCodeButton";
|
||||
import { SettingsButton } from "../Settings/SettingsButtons";
|
||||
import {
|
||||
Button,
|
||||
@@ -128,6 +129,9 @@ function ResponsiveAppBar() {
|
||||
<MenuItem onClick={handleCloseNavMenu}>
|
||||
<CCPButton />
|
||||
</MenuItem>
|
||||
<MenuItem onClick={handleCloseNavMenu}>
|
||||
<PartnerCodeButton />
|
||||
</MenuItem>
|
||||
</Menu>
|
||||
</Box>
|
||||
<PublicIcon sx={{ display: { xs: "flex", md: "none" }, mr: 1 }} />
|
||||
@@ -162,12 +166,13 @@ function ResponsiveAppBar() {
|
||||
<UploadButton />
|
||||
<DiscordButton />
|
||||
<GitHubButton />
|
||||
|
||||
|
||||
<SettingsButton />
|
||||
<Button onClick={() => setFaqOpen(true)} color="inherit">
|
||||
FAQ
|
||||
</Button>
|
||||
<CCPButton />
|
||||
<PartnerCodeButton />
|
||||
</Box>
|
||||
</Toolbar>
|
||||
</Container>
|
||||
|
||||
32
src/app/components/PartnerCode/PartnerCodeButton.tsx
Normal file
32
src/app/components/PartnerCode/PartnerCodeButton.tsx
Normal file
@@ -0,0 +1,32 @@
|
||||
import { Box, Button, Tooltip } from "@mui/material";
|
||||
import { useState } from "react";
|
||||
|
||||
export const PartnerCodeButton = () => {
|
||||
const [copied, setCopied] = useState(false);
|
||||
|
||||
const handleClick = () => {
|
||||
navigator.clipboard.writeText("CALLIEVE");
|
||||
setCopied(true);
|
||||
setTimeout(() => setCopied(false), 2000);
|
||||
};
|
||||
|
||||
return (
|
||||
<Box>
|
||||
<Tooltip
|
||||
title={
|
||||
copied
|
||||
? "Copied to clipboard!"
|
||||
: "Click to copy partner code - Use for CCP purchases to support this project"
|
||||
}
|
||||
>
|
||||
<Button
|
||||
onClick={handleClick}
|
||||
style={{ width: "100%" }}
|
||||
sx={{ color: "white", display: "block" }}
|
||||
>
|
||||
Partner Code: CALLIEVE
|
||||
</Button>
|
||||
</Tooltip>
|
||||
</Box>
|
||||
);
|
||||
};
|
||||
@@ -1,8 +1,9 @@
|
||||
import React from 'react';
|
||||
import React, { useContext } from 'react';
|
||||
import { Box, Paper, Typography, Stack } from '@mui/material';
|
||||
import { Line } from 'react-chartjs-2';
|
||||
import { getProgramOutputPrediction } from './ExtractionSimulation';
|
||||
import { PI_TYPES_MAP } from '@/const';
|
||||
import { SessionContext } from '@/app/context/Context';
|
||||
import {
|
||||
Chart as ChartJS,
|
||||
CategoryScale,
|
||||
@@ -41,6 +42,7 @@ interface ExtractionSimulationTooltipProps {
|
||||
export const ExtractionSimulationTooltip: React.FC<ExtractionSimulationTooltipProps> = ({
|
||||
extractors
|
||||
}) => {
|
||||
const { minExtractionRate } = useContext(SessionContext);
|
||||
const CYCLE_TIME = 30 * 60; // 30 minutes in seconds
|
||||
|
||||
// Calculate program duration and cycles for each extractor
|
||||
@@ -159,8 +161,15 @@ export const ExtractionSimulationTooltip: React.FC<ExtractionSimulationTooltipPr
|
||||
<Typography variant="body2">
|
||||
• Average per Cycle: {(totalOutput / cycles).toFixed(1)} units
|
||||
</Typography>
|
||||
<Typography variant="body2">
|
||||
• Average per hour: {(totalOutput / cycles * 2).toFixed(1)} units
|
||||
<Typography
|
||||
variant="body2"
|
||||
color={
|
||||
minExtractionRate > 0 && (extractors[idx].baseValue * 3600) / extractors[idx].cycleTime < minExtractionRate
|
||||
? 'error'
|
||||
: 'inherit'
|
||||
}
|
||||
>
|
||||
• Average per hour: {((extractors[idx].baseValue * 3600) / extractors[idx].cycleTime).toFixed(1)} units
|
||||
</Typography>
|
||||
<Typography variant="body2">
|
||||
• Expires in: <Countdown overtime={true} date={DateTime.fromISO(expiryTime).toMillis()} />
|
||||
|
||||
@@ -8,7 +8,7 @@ import { PlanetCalculations } from "@/types/planet";
|
||||
import React, { useContext } from "react";
|
||||
import { DateTime } from "luxon";
|
||||
import Countdown from "react-countdown";
|
||||
import { ColorContext } from "@/app/context/Context";
|
||||
import { ColorContext, SessionContext } from "@/app/context/Context";
|
||||
import { ExtractionSimulationTooltip } from "./ExtractionSimulationTooltip";
|
||||
import { timeColor } from "./alerts";
|
||||
|
||||
@@ -40,6 +40,7 @@ export const PlanetCard = ({
|
||||
}) => {
|
||||
const theme = useTheme();
|
||||
const { colors } = useContext(ColorContext);
|
||||
const { minExtractionRate } = useContext(SessionContext);
|
||||
|
||||
const extractorConfigs: ExtractorConfig[] = planetDetails.extractors
|
||||
.filter(e => e.extractor_details?.product_type_id && e.extractor_details?.qty_per_cycle)
|
||||
@@ -51,6 +52,8 @@ export const PlanetCard = ({
|
||||
expiryTime: e.expiry_time ?? ""
|
||||
}));
|
||||
|
||||
const hasLowExtractionRate = planetDetails.extractorAverages.length > 0 && minExtractionRate > 0 && planetDetails.extractorAverages.some(avg => avg.averagePerHour < minExtractionRate);
|
||||
|
||||
return (
|
||||
<Tooltip
|
||||
title={
|
||||
@@ -114,9 +117,30 @@ export const PlanetCard = ({
|
||||
/>
|
||||
)}
|
||||
<div style={{ position: "absolute", top: 5, left: 10 }}>
|
||||
<Typography fontSize={theme.custom.smallText}>
|
||||
<Typography
|
||||
fontSize={theme.custom.smallText}
|
||||
color={(planetDetails.hasLargeExtractorDifference || hasLowExtractionRate) ? 'error' : 'inherit'}
|
||||
>
|
||||
{planet.infoUniverse?.name}
|
||||
</Typography>
|
||||
{planetDetails.hasLargeExtractorDifference && (
|
||||
<Typography
|
||||
fontSize={theme.custom.smallText}
|
||||
color="error"
|
||||
sx={{ opacity: 0.7 }}
|
||||
>
|
||||
off-balance
|
||||
</Typography>
|
||||
)}
|
||||
{hasLowExtractionRate && (
|
||||
<Typography
|
||||
fontSize={theme.custom.smallText}
|
||||
color="error"
|
||||
sx={{ opacity: 0.7 }}
|
||||
>
|
||||
low-extraction
|
||||
</Typography>
|
||||
)}
|
||||
{planetDetails.extractors.map((e, idx) => {
|
||||
const average = planetDetails.extractorAverages[idx];
|
||||
return (
|
||||
|
||||
@@ -55,7 +55,7 @@ export const PlanetTableRow = ({
|
||||
planetDetails: PlanetCalculations;
|
||||
}) => {
|
||||
const theme = useTheme();
|
||||
const { showProductIcons, extractionTimeMode, alertMode } = useContext(SessionContext);
|
||||
const { showProductIcons, extractionTimeMode, alertMode, minExtractionRate } = useContext(SessionContext);
|
||||
const { colors } = useContext(ColorContext);
|
||||
|
||||
const [planetRenderOpen, setPlanetRenderOpen] = useState(false);
|
||||
@@ -103,11 +103,13 @@ export const PlanetTableRow = ({
|
||||
};
|
||||
|
||||
// Check if there are any alerts
|
||||
const hasLowExtractionRate = planetDetails.extractorAverages.length > 0 && minExtractionRate > 0 && planetDetails.extractorAverages.some(avg => avg.averagePerHour < minExtractionRate);
|
||||
const hasAlerts = alertMode && (
|
||||
planetDetails.expired ||
|
||||
planetDetails.storageInfo.some(storage => storage.fillRate > 60) ||
|
||||
planetDetails.importDepletionTimes.some(depletion => depletion.hoursUntilDepletion < 24) ||
|
||||
planetDetails.hasLargeExtractorDifference
|
||||
planetDetails.hasLargeExtractorDifference ||
|
||||
hasLowExtractionRate
|
||||
);
|
||||
|
||||
// If in alert mode and no alerts, hide the row
|
||||
@@ -225,14 +227,14 @@ export const PlanetTableRow = ({
|
||||
}}
|
||||
>
|
||||
<Stack spacing={0}>
|
||||
<Typography
|
||||
<Typography
|
||||
fontSize={theme.custom.smallText}
|
||||
color={planetDetails.hasLargeExtractorDifference ? 'error' : 'inherit'}
|
||||
color={(planetDetails.hasLargeExtractorDifference || hasLowExtractionRate) ? 'error' : 'inherit'}
|
||||
>
|
||||
{planetInfoUniverse?.name}
|
||||
</Typography>
|
||||
{planetDetails.hasLargeExtractorDifference && (
|
||||
<Typography
|
||||
<Typography
|
||||
fontSize={theme.custom.smallText}
|
||||
color="error"
|
||||
sx={{ opacity: 0.7 }}
|
||||
@@ -240,6 +242,15 @@ export const PlanetTableRow = ({
|
||||
off-balance
|
||||
</Typography>
|
||||
)}
|
||||
{hasLowExtractionRate && (
|
||||
<Typography
|
||||
fontSize={theme.custom.smallText}
|
||||
color="error"
|
||||
sx={{ opacity: 0.7 }}
|
||||
>
|
||||
low-extraction
|
||||
</Typography>
|
||||
)}
|
||||
</Stack>
|
||||
</Tooltip>
|
||||
</div>
|
||||
|
||||
@@ -21,7 +21,7 @@ import React, { useState, useContext } from "react";
|
||||
|
||||
export const SettingsButton = () => {
|
||||
const { colors, setColors } = useContext(ColorContext);
|
||||
const { balanceThreshold, setBalanceThreshold, showProductIcons, setShowProductIcons } = useContext(SessionContext);
|
||||
const { balanceThreshold, setBalanceThreshold, minExtractionRate, setMinExtractionRate, showProductIcons, setShowProductIcons } = useContext(SessionContext);
|
||||
const [open, setOpen] = useState(false);
|
||||
|
||||
const handleClickOpen = () => {
|
||||
@@ -51,6 +51,13 @@ export const SettingsButton = () => {
|
||||
setShowProductIcons(event.target.checked);
|
||||
};
|
||||
|
||||
const handleMinExtractionRateChange = (event: React.ChangeEvent<HTMLInputElement>) => {
|
||||
const value = parseInt(event.target.value);
|
||||
if (!isNaN(value) && value >= 0 && value <= 100000) {
|
||||
setMinExtractionRate(value);
|
||||
}
|
||||
};
|
||||
|
||||
return (
|
||||
<Tooltip title="Toggle settings dialog">
|
||||
<>
|
||||
@@ -93,6 +100,19 @@ export const SettingsButton = () => {
|
||||
error={balanceThreshold < 0 || balanceThreshold > 100000}
|
||||
/>
|
||||
</Box>
|
||||
<Box sx={{ mt: 2 }}>
|
||||
<Typography variant="subtitle1">Minimum Extraction Rate</Typography>
|
||||
<TextField
|
||||
type="number"
|
||||
value={minExtractionRate}
|
||||
onChange={handleMinExtractionRateChange}
|
||||
fullWidth
|
||||
margin="normal"
|
||||
inputProps={{ min: 0, max: 100000 }}
|
||||
helperText="Alert if extraction per hour is below this value (0-100,000, 0 = disabled)"
|
||||
error={minExtractionRate < 0 || minExtractionRate > 100000}
|
||||
/>
|
||||
</Box>
|
||||
{Object.keys(colors).map((key) => {
|
||||
return (
|
||||
<div key={`color-row-${key}`}>
|
||||
|
||||
@@ -39,6 +39,8 @@ export const SessionContext = createContext<{
|
||||
}) => PlanetConfig;
|
||||
balanceThreshold: number;
|
||||
setBalanceThreshold: Dispatch<SetStateAction<number>>;
|
||||
minExtractionRate: number;
|
||||
setMinExtractionRate: Dispatch<SetStateAction<number>>;
|
||||
showProductIcons: boolean;
|
||||
setShowProductIcons: (show: boolean) => void;
|
||||
}>({
|
||||
@@ -68,6 +70,8 @@ export const SessionContext = createContext<{
|
||||
},
|
||||
balanceThreshold: 1000,
|
||||
setBalanceThreshold: () => {},
|
||||
minExtractionRate: 0,
|
||||
setMinExtractionRate: () => {},
|
||||
showProductIcons: false,
|
||||
setShowProductIcons: () => {},
|
||||
});
|
||||
|
||||
@@ -46,6 +46,7 @@ const Home = () => {
|
||||
undefined,
|
||||
);
|
||||
const [balanceThreshold, setBalanceThreshold] = useState(1000);
|
||||
const [minExtractionRate, setMinExtractionRate] = useState(0);
|
||||
const [showProductIcons, setShowProductIcons] = useState(false);
|
||||
const [extractionTimeMode, setExtractionTimeMode] = useState(false);
|
||||
|
||||
@@ -305,6 +306,8 @@ const Home = () => {
|
||||
readPlanetConfig,
|
||||
balanceThreshold,
|
||||
setBalanceThreshold,
|
||||
minExtractionRate,
|
||||
setMinExtractionRate,
|
||||
showProductIcons,
|
||||
setShowProductIcons,
|
||||
}}
|
||||
|
||||
@@ -32,6 +32,7 @@ export interface AlertState {
|
||||
hasLowStorage: boolean;
|
||||
hasLowImports: boolean;
|
||||
hasLargeExtractorDifference: boolean;
|
||||
hasLowExtractionRate: boolean;
|
||||
}
|
||||
|
||||
export interface ExtractorAverage {
|
||||
|
||||
Reference in New Issue
Block a user