1
0
Fork 0
This repository has been archived on 2023-12-03. You can view files and clone it, but cannot push or open issues or pull requests.
chellaris-galaxy-political-.../components/gui/server/game-select.tsx
2023-06-11 14:24:11 +02:00

43 lines
1.3 KiB
TypeScript

import { Game } from "@/types/stellaris";
import { Dropdown } from "@nextui-org/react";
import { Dispatch, Key, SetStateAction, useState } from "react";
type SelectionType = "all" | Set<Key>;
export const GameSelect = (props: { games: Game[], currentGame: Game | undefined, setCurrentGame: Dispatch<SetStateAction<Game>> }) => {
const changeSelection = (keys: SelectionType) => {
if (keys != "all") {
props.games.forEach(game => {
if (game.name == keys.keys().next().value) [
props.setCurrentGame(game)
]
})
}
}
return (
<Dropdown>
<Dropdown.Button flat color="secondary" css={{ tt: "capitalize" }}>
{props.currentGame ? props.currentGame.name : "-"}
</Dropdown.Button>
<Dropdown.Menu
aria-label="Single selection actions"
color="secondary"
disallowEmptySelection
selectionMode="single"
selectedKeys={[props.currentGame ? props.currentGame.name : "-"]}
onSelectionChange={changeSelection}
items={props.games}
>
{props.games.map((item) => (
<Dropdown.Item
key={item.name}
color="default"
>
{item.name}
</Dropdown.Item>
))}
</Dropdown.Menu>
</Dropdown>
)
}