79 lines
1.8 KiB
Vue
79 lines
1.8 KiB
Vue
<script setup lang="ts">
|
|
import { buyCard, buyGem } from "~/netcode";
|
|
import type { Container, Game } from "~/netcode/interfaces";
|
|
|
|
export interface Props {
|
|
game: Game;
|
|
market: Container;
|
|
marketStack: Container;
|
|
fire_gems: Container;
|
|
}
|
|
|
|
const props = defineProps<Props>();
|
|
|
|
const authStore = useAuthStore();
|
|
|
|
// const selfPlayer = computed(() => authStore.logged ? playerList.value?.find(p => p.user.userId == authStore.selfUser.userId) : undefined)
|
|
|
|
// const isTurn = computed(() => goStore.self && goStore.current_game?.started && (goStore.self.team == goStore.current_game.current_turn))
|
|
// const clientStore = useClientSideStore()
|
|
|
|
// const buyableFiregem = computed(() => goStore?.current_game?.gem_stack.at(-1))
|
|
|
|
function marketCardClick(e: string) {
|
|
buyCard(props.game._id, e);
|
|
}
|
|
|
|
function fireGemCardClick(e: string) {
|
|
buyGem(props.game._id);
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<div id="market">
|
|
<CardsGrouped
|
|
:container="marketStack"
|
|
:wrapped="true"
|
|
:hidden="true"
|
|
></CardsGrouped>
|
|
<div class="separator"></div>
|
|
<CardsGrouped
|
|
:container="market"
|
|
@cardClick="marketCardClick"
|
|
:noEffects="true"
|
|
></CardsGrouped>
|
|
<div class="separator"></div>
|
|
<CardsGrouped
|
|
:container="fire_gems"
|
|
:wrapped="true"
|
|
@cardClick="fireGemCardClick"
|
|
:noEffects="true"
|
|
></CardsGrouped>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
#market {
|
|
width: max-content;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
align-items: center;
|
|
z-index: 2;
|
|
position: relative;
|
|
gap: 2px;
|
|
margin: 10px;
|
|
padding-left: 10px;
|
|
padding-right: 10px;
|
|
padding-bottom: 10px;
|
|
border-radius: 10px;
|
|
filter: drop-shadow(2.5px 7.5px 1px rgba(0, 0, 0, 0.6));
|
|
backdrop-filter: blur(5px) brightness(80%);
|
|
background: rgba(155, 62, 62, 0.46);
|
|
}
|
|
|
|
.separator {
|
|
width: 50px;
|
|
}
|
|
</style>
|