gamebrary/src/components/GameCards/GameCardDefault.vue

83 lines
1.9 KiB
Vue
Raw Normal View History

<template lang="html">
2020-08-17 16:10:21 +00:00
<b-card no-body class="game-card mb-2" @click="openDetails">
<b-row no-gutters v-if="game && game.name">
2020-07-22 20:09:23 +00:00
<b-col md="4">
<b-img-lazy
fluid
blank-color="#ccc"
2020-07-22 20:09:23 +00:00
:src="coverUrl"
:alt="game.name"
/>
</b-col>
<b-col md="8">
2020-08-11 23:39:11 +00:00
<b-card-body body-class="p-2">
<b-card-title
class="mb-0"
title-tag="h6"
>
2020-08-11 23:39:11 +00:00
{{ game.name }}
<b-badge variant="warning" v-if="gameNotes">
<b-icon-file-earmark-text />
</b-badge>
</b-card-title>
<b-badge
v-if="releaseDate"
variant="secondary"
class="mb-2"
>
Releases in
{{ releaseDate }}
</b-badge>
2020-07-22 20:09:23 +00:00
<b-form-rating
2020-08-11 23:39:11 +00:00
v-if="gameRating"
class="p-0"
2020-07-22 20:09:23 +00:00
inline
2020-08-11 23:39:11 +00:00
:value="gameRating"
2020-07-22 20:09:23 +00:00
readonly
variant="warning"
size="sm"
no-border
/>
2020-08-11 23:39:11 +00:00
<b-progress
v-if="gameProgress"
:value="gameProgress"
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
2020-08-17 16:10:21 +00:00
class="mr-1"
2020-08-11 23:39:11 +00:00
variant="primary"
:style="`background-color: ${hex}; color: ${tagTextColor}`"
>
{{ name }}
</b-badge>
</div>
2020-07-22 20:09:23 +00:00
</b-card-body>
</b-col>
</b-row>
</b-card>
</template>
<script>
import GameCardUtils from '@/components/GameCards/GameCard';
export default {
2019-11-08 19:56:03 +00:00
mixins: [GameCardUtils],
};
</script>
2020-08-17 16:10:21 +00:00
<style lang="scss" rel="stylesheet/scss" scoped>
@import "GameCard";
</style>