14 lines
407 B
TypeScript
14 lines
407 B
TypeScript
import { usePlayerStore } from "@/store/players"
|
|
|
|
export function listPlayers() {
|
|
return usePlayerStore.getState().players
|
|
}
|
|
|
|
export function getPlayerById(playerId: string) {
|
|
return usePlayerStore.getState().players.find((player) => player.id === playerId)
|
|
}
|
|
|
|
export function listPlayersByShop(shopId: string) {
|
|
return usePlayerStore.getState().players.filter((player) => player.shopId === shopId)
|
|
}
|