1
0
Fork 0

Removal of WIP Selections for final prod deploy

This commit is contained in:
Neshura 2023-08-06 02:47:34 +02:00
parent a78057de8c
commit 4ee7cb014f
Signed by: Neshura
GPG key ID: B6983AAA6B9A7A6C
5 changed files with 20 additions and 43 deletions

View file

@ -1,25 +0,0 @@
'use client';
import '@/app/globals.css';
import { useState } from 'react';
import { RadarChart } from '../../components/charts/radar'
import { EmpireStats } from '../../components/tables/empires'
import { Checkbox } from '@nextui-org/react';
import { PopChart } from '@/components/charts/pops';
import { EthicsBar } from '../../components/charts/ethicsBar';
export default function Graphs() {
const [weighted, setWeighted] = useState(true);
return (
<main className='charts'>
<div className='column'>
<RadarChart weighted={weighted} />
<Checkbox labelColor="primary" defaultSelected={weighted} onChange={() => setWeighted(!weighted)}>Weighted Ethics</Checkbox>
</div>
<EmpireStats />
<div className='column'>
<PopChart></PopChart>
<EthicsBar></EthicsBar>
</div>
</main>
)
}

View file

@ -17,7 +17,6 @@ export default async function RootLayout({
return (
<html lang="en">
<body>
<PageNavbar links={navLinks}/>
{children}
</body>
</html>

View file

@ -1,14 +1,25 @@
'use client';
import '@/app/globals.css';
import { Game, GameGroup } from '@/types/stellaris';
import { GameView } from '@/components/gui/client/game-view';
import { generateUrl } from '@/components/server/fetchers';
export default async function Home() {
const games = await fetch(generateUrl('/games')).then((res) => res.json())
import { useState } from 'react';
import { RadarChart } from '../components/charts/radar'
import { EmpireStats } from '../components/tables/empires'
import { Checkbox } from '@nextui-org/react';
import { PopChart } from '@/components/charts/pops';
import { EthicsBar } from '../components/charts/ethicsBar';
export default function Graphs() {
const [weighted, setWeighted] = useState(true);
return (
<main>
<GameView games={games}/>
<main className='charts'>
<div className='column'>
<RadarChart weighted={weighted} />
<Checkbox labelColor="primary" defaultSelected={weighted} onChange={() => setWeighted(!weighted)}>Weighted Ethics</Checkbox>
</div>
<EmpireStats />
<div className='column'>
<PopChart></PopChart>
<EthicsBar></EthicsBar>
</div>
</main>
)
}

View file

@ -4,10 +4,6 @@
"name": "Home",
"href": "/"
},
{
"name": "Game 15 Info",
"href": "/graphs"
},
{
"name": "Admin Menu",
"href": "/admin"

View file

@ -1,13 +1,9 @@
{
"links": [
{
"name": "Home New",
"name": "Home",
"href": "/"
},
{
"name": "Game 15 Info",
"href": "/graphs"
},
{
"name": "Admin Menu",
"href": "/admin"