gamebrary/src/components/Game/GameDescription.vue
2021-02-16 16:59:22 -07:00

158 lines
3.2 KiB
Vue

<template lang="html">
<div class="game-description">
<div v-if="loading">
<b-skeleton
v-for="n in 3"
:key="n"
/>
</div>
<!-- TODO: get images from article and add them to screenshots -->
<template v-else>
<small>Source: {{ source }}</small>
<p>
<template v-if="trimmedDescription && !descriptionExpanded">
<span
:class="{'break-spaces': source === 'IGDB' }"
v-html="trimmedDescription"
/>
<!-- TODO: open entire article in other modal -->
<b-button
variant="secondary"
@click="descriptionExpanded = true"
>
<i class="fab fa-wikipedia-w" aria-hidden />
Read more
</b-button>
</template>
<template v-if="!trimmedDescription">
<div
v-html="gameDescription"
:class="{'break-spaces': source === 'IGDB' }"
/>
</template>
</p>
<b-collapse v-model="descriptionExpanded">
<p
:class="{'break-spaces': source === 'IGDB' }"
v-html="gameDescription"
/>
</b-collapse>
</template>
</div>
</template>
<script>
import { LINKS_CATEGORIES } from '@/constants';
export default {
props: {
game: Object,
},
data() {
return {
descriptionExpanded: false,
wikipediaArticle: {},
loading: true,
};
},
computed: {
gameDescription() {
const wikipediaDescription = this.wikipediaArticle && this.wikipediaArticle.extract
? this.wikipediaArticle.extract
: null;
const igdbDescription = this.game && this.game.summary
? this.game.summary
: null;
// Default to wikipedia article, fall back to igdb's desc
return wikipediaDescription || igdbDescription;
},
trimmedDescription() {
return this.gameDescription && this.gameDescription.length > 600
? `${this.gameDescription.substr(0, 600)}...`
: null;
},
source() {
return this.wikipediaArticle && this.wikipediaArticle.extract
? 'Wikipedia'
: 'IGDB';
},
},
mounted() {
this.descriptionExpanded = false;
this.loadWikipediaArticle();
},
methods: {
async loadWikipediaArticle() {
const wikiData = this.game && this.game.websites
? this.game.websites.find(({ category, url }) => url.includes('/wiki/') && category === LINKS_CATEGORIES.wikipedia)
: null;
if (!wikiData) {
this.loading = false;
return;
}
const articleTitle = wikiData.url.split('/wiki/')[1];
this.wikipediaArticle = await this.$store.dispatch('LOAD_WIKIPEDIA_ARTICLE', articleTitle)
.catch(() => {
this.loading = false;
});
this.loading = false;
},
},
};
</script>
<style lang="scss" rel="stylesheet/scss" scoped>
.break-spaces {
white-space: break-spaces;
}
h2 {
background-color: red;
}
</style>
<style lang="scss" rel="stylesheet/scss">
.game-description {
h2, h3 {
margin-bottom: 0;
padding-bottom: .5rem;
}
h2 {
font-size: 24px;
top: 0;
}
h3 {
font-size: 18px;
}
h4, h5, h6 {
font-size: 16px;
font-weight: bold;
}
}
.mw-empty-elt {
display: none;
}
</style>