import { Link } from "@remix-run/react";
import {
humanTimeAgo,
snakeCaseToTitleCase,
worlds,
zones,
} from "~/utils/strings";
import * as styles from "./index-world.css";
import vsLogo from "~/images/vs-100.png";
import ncLogo from "~/images/nc-100.png";
import trLogo from "~/images/tr-100.png";
import { FactionBar } from "./faction-bar";
import type { MetagameWorld } from "~/utils/metagame";
import type { PopulationWorld } from "~/utils/population";
import { c } from "~/utils/classes";
import { useEffect, useState } from "react";
import { AlertTimer } from "./alert-timer";
export type IndexWorldProps = {
metagame: MetagameWorld;
population: PopulationWorld;
};
export const IndexWorld = ({ metagame, population }: IndexWorldProps) => {
const worldId = metagame.id;
const { platform, location, name } = worlds[String(worldId || "default")];
if (metagame.zones.length === 0) {
return ;
}
const nextZone = metagame.zones.sort(
(a, b) =>
new Date(a.locked_since ?? Date.now()).getTime() -
new Date(b.locked_since ?? Date.now()).getTime()
)[0];
const nextZoneStrings = zones[nextZone.id];
return (
{name}
[{location}] [{platform}]{" "}
DETAILS ⇨
{population.factions.vs +
population.factions.nc +
population.factions.tr}

{" "}
{population.factions.vs}

{" "}
{population.factions.nc}

{" "}
{population.factions.tr}
{metagame.zones
.filter((zone) => !zone.locked)
.sort((a, b) => {
return a.alert && !b.alert ? -1 : b.alert && !a.alert ? 1 : 0;
})
.map((zone) => {
return worldId !== 19 ? (
) : (
);
})}
{worldId !== 19 && (
)}
);
};
const JaegerContinent = ({ zone }: { zone: MetagameWorld["zones"][0] }) => {
const {
name,
colors: [upper, lower],
} = zones[zone.id];
return (
);
};
const Continent = ({ zone }: { zone: MetagameWorld["zones"][0] }) => {
const {
name,
colors: [upper, lower],
} = zones[zone.id];
return (
{zone.alert && (
<>
{snakeCaseToTitleCase(zone.alert.alert_type).toUpperCase()}{" "}
ALERT PROGRESS
{" "}
>
)}
);
};
const BrokenWorld = ({ worldId }: { worldId: number }) => {
const { platform, location, name } = worlds[String(worldId || "default")];
return (
{name}
[{location}] [{platform}]{" "}
DETAILS ⇨
Daybreak made an oopsie.
🙂
);
};