mirror of
https://github.com/romancm/gamebrary
synced 2024-12-22 09:03:08 +00:00
82 lines
1.9 KiB
Vue
82 lines
1.9 KiB
Vue
<template lang="html">
|
|
<b-card
|
|
no-body
|
|
class="clickable mb-2"
|
|
:bg-variant="nightMode ? 'dark' : ''"
|
|
:text-variant="nightMode ? 'white' : ''"
|
|
@click="openDetails"
|
|
>
|
|
<b-row no-gutters v-if="game && game.name">
|
|
<b-card-body body-class="pt-0 pb-1 px-2">
|
|
<small>
|
|
<icon
|
|
name="verified"
|
|
class="rounded bg-success p-1"
|
|
white
|
|
font-scale="1.5"
|
|
v-if="showCompletedBadge"
|
|
/>
|
|
|
|
{{ game.name }}
|
|
|
|
<b-badge variant="warning" v-if="gameNotes">
|
|
<icon name="note" />
|
|
</b-badge>
|
|
</small>
|
|
|
|
<br />
|
|
|
|
<!-- <b-badge
|
|
v-if="releaseDate"
|
|
variant="secondary"
|
|
class="mb-2"
|
|
>
|
|
Releases in
|
|
{{ releaseDate }}
|
|
</b-badge> -->
|
|
|
|
<b-form-rating
|
|
v-if="gameRating"
|
|
:class="['p-0', { 'bg-dark': nightMode }]"
|
|
inline
|
|
:value="gameRating"
|
|
readonly
|
|
variant="warning"
|
|
size="sm"
|
|
no-border
|
|
/>
|
|
|
|
<b-progress
|
|
v-if="showGameProgress"
|
|
:value="gameProgress"
|
|
class="my-1"
|
|
variant="success"
|
|
height="6px"
|
|
/>
|
|
|
|
|
|
<div v-if="showGameTags">
|
|
<b-badge
|
|
v-for="({ games, hex, tagTextColor }, name) in tags"
|
|
v-if="games.includes(game.id)"
|
|
:key="name"
|
|
pill
|
|
variant="primary"
|
|
tag="small"
|
|
:style="`background-color: ${hex}; color: ${tagTextColor}`"
|
|
>
|
|
{{ name }}
|
|
</b-badge>
|
|
</div>
|
|
</b-card-body>
|
|
</b-row>
|
|
</b-card>
|
|
</template>
|
|
|
|
<script>
|
|
import GameCardUtils from '@/components/GameCards/GameCard';
|
|
|
|
export default {
|
|
mixins: [GameCardUtils],
|
|
};
|
|
</script>
|