301 lines
6.5 KiB
Vue
301 lines
6.5 KiB
Vue
<template>
|
|
<section class="person">
|
|
<header ref="header">
|
|
<div class="info">
|
|
<h1 v-if="person">
|
|
{{ person.title || person.name }}
|
|
</h1>
|
|
<div v-else>
|
|
<loading-placeholder :count="1" />
|
|
<loading-placeholder :count="1" lineClass="short" :top="3.5" />
|
|
</div>
|
|
|
|
<span class="known-for" v-if="person && person['known_for_department']">
|
|
{{
|
|
person.known_for_department === "Acting"
|
|
? "Actor"
|
|
: person.known_for_department
|
|
}}
|
|
</span>
|
|
</div>
|
|
|
|
<figure class="person__poster">
|
|
<img
|
|
class="person-item__img is-loaded"
|
|
ref="poster-image"
|
|
src="/assets/placeholder.png"
|
|
/>
|
|
</figure>
|
|
</header>
|
|
|
|
<div v-if="loading">
|
|
<loading-placeholder :count="6" />
|
|
<loading-placeholder lineClass="short" :top="3" />
|
|
<loading-placeholder :count="6" lineClass="fullwidth" />
|
|
<loading-placeholder lineClass="short" :top="4.5" />
|
|
<loading-placeholder />
|
|
</div>
|
|
|
|
<div v-if="person">
|
|
<Detail v-if="age" title="Age" :detail="age" />
|
|
|
|
<Detail
|
|
v-if="person"
|
|
title="Born"
|
|
:detail="person.place_of_birth ? person.place_of_birth : '(Not found)'"
|
|
/>
|
|
|
|
<Detail v-if="person.biography" title="Biography">
|
|
<Description :description="person.biography" />
|
|
</Detail>
|
|
|
|
<Detail
|
|
title="movies"
|
|
:detail="`Credited in ${movieCredits.length} movies`"
|
|
v-if="credits"
|
|
>
|
|
<CastList :cast="movieCredits" />
|
|
</Detail>
|
|
|
|
<Detail
|
|
title="shows"
|
|
:detail="`Credited in ${showCredits.length} shows`"
|
|
v-if="credits"
|
|
>
|
|
<CastList :cast="showCredits" />
|
|
</Detail>
|
|
</div>
|
|
</section>
|
|
</template>
|
|
|
|
<script>
|
|
import img from "@/directives/v-image";
|
|
import CastList from "@/components/CastList";
|
|
import Detail from "@/components/popup/Detail";
|
|
import Description from "@/components/popup/Description";
|
|
import LoadingPlaceholder from "@/components/ui/LoadingPlaceholder";
|
|
|
|
import { getPerson, getPersonCredits } from "@/api";
|
|
|
|
export default {
|
|
props: {
|
|
id: {
|
|
required: true,
|
|
type: Number
|
|
},
|
|
type: {
|
|
required: false,
|
|
type: String,
|
|
default: "person"
|
|
}
|
|
},
|
|
components: {
|
|
Detail,
|
|
Description,
|
|
CastList,
|
|
LoadingPlaceholder
|
|
},
|
|
directives: { img: img }, // TODO decide to remove or use
|
|
data() {
|
|
return {
|
|
ASSET_URL: "https://image.tmdb.org/t/p/",
|
|
ASSET_SIZES: ["w500", "w780", "original"],
|
|
person: undefined,
|
|
loading: true,
|
|
credits: undefined
|
|
};
|
|
},
|
|
watch: {
|
|
backdrop: function (backdrop) {
|
|
if (backdrop != null) {
|
|
const style = {
|
|
backgroundImage:
|
|
"url(" + this.ASSET_URL + this.ASSET_SIZES[1] + backdrop + ")"
|
|
};
|
|
|
|
Object.assign(this.$refs.header.style, style);
|
|
}
|
|
}
|
|
},
|
|
computed: {
|
|
age: function () {
|
|
if (!this.person || !this.person.birthday) {
|
|
return;
|
|
}
|
|
|
|
const today = new Date().getFullYear();
|
|
const birthYear = new Date(this.person.birthday).getFullYear();
|
|
return `${today - birthYear} years old`;
|
|
},
|
|
movieCredits: function () {
|
|
const { cast } = this.credits;
|
|
if (!cast) return;
|
|
|
|
return cast
|
|
.filter(l => l.type === "movie")
|
|
.filter((item, pos, self) => self.indexOf(item) == pos)
|
|
.sort((a, b) => a.popularity < b.popularity);
|
|
},
|
|
showCredits: function () {
|
|
const { cast } = this.credits;
|
|
if (!cast) return;
|
|
|
|
const alreadyExists = (item, pos, self) => {
|
|
const names = self.map(item => item.title);
|
|
return names.indexOf(item.title) == pos;
|
|
};
|
|
|
|
return cast
|
|
.filter(item => item.type === "show")
|
|
.filter(alreadyExists)
|
|
.sort((a, b) => a.popularity < b.popularity);
|
|
}
|
|
},
|
|
methods: {
|
|
parseResponse(person) {
|
|
this.loading = false;
|
|
this.person = { ...person };
|
|
this.title = person.title;
|
|
this.poster = person.poster;
|
|
if (person.credits) this.credits = person.credits;
|
|
|
|
this.setPosterSrc();
|
|
},
|
|
setPosterSrc() {
|
|
const poster = this.$refs["poster-image"];
|
|
if (this.poster == null) {
|
|
poster.src = "/assets/no-image.svg";
|
|
return;
|
|
}
|
|
|
|
poster.src = `${this.ASSET_URL}${this.ASSET_SIZES[0]}${this.poster}`;
|
|
}
|
|
},
|
|
created() {
|
|
getPerson(this.id, false)
|
|
.then(this.parseResponse)
|
|
.catch(error => {
|
|
console.error(error);
|
|
this.$router.push({ name: "404" });
|
|
});
|
|
|
|
getPersonCredits(this.id)
|
|
.then(credits => (this.credits = credits))
|
|
.catch(error => {
|
|
console.error(error);
|
|
});
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
@import "src/scss/loading-placeholder";
|
|
@import "src/scss/variables";
|
|
@import "src/scss/media-queries";
|
|
@import "src/scss/main";
|
|
|
|
section.person {
|
|
overflow: hidden;
|
|
position: relative;
|
|
padding: 40px;
|
|
background-color: var(--background-color);
|
|
|
|
@include mobile {
|
|
padding: 50px 20px 10px;
|
|
}
|
|
|
|
&:before {
|
|
content: "";
|
|
display: block;
|
|
position: absolute;
|
|
top: -130px;
|
|
left: -100px;
|
|
z-index: 1;
|
|
width: 1000px;
|
|
height: 500px;
|
|
transform: rotate(21deg);
|
|
background-color: #062541;
|
|
|
|
@include mobile {
|
|
// top: -52vw;
|
|
top: -215px;
|
|
}
|
|
}
|
|
}
|
|
|
|
header {
|
|
$duration: 0.2s;
|
|
transition: height $duration ease;
|
|
position: relative;
|
|
background-color: transparent;
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
height: 350px;
|
|
z-index: 2;
|
|
|
|
@include mobile {
|
|
height: 180px;
|
|
}
|
|
|
|
.info {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 30px;
|
|
padding-left: 0;
|
|
text-align: left;
|
|
|
|
@include mobile {
|
|
padding: 0;
|
|
}
|
|
}
|
|
|
|
h1 {
|
|
color: $green;
|
|
width: 100%;
|
|
font-weight: 500;
|
|
line-height: 1.4;
|
|
font-size: 30px;
|
|
margin-top: 0;
|
|
|
|
@include mobile {
|
|
font-size: 24px;
|
|
margin: 10px 0;
|
|
// padding: 30px 30px 30px 40px;
|
|
}
|
|
}
|
|
|
|
.known-for {
|
|
color: rgba(255, 255, 255, 0.8);
|
|
font-size: 1.2rem;
|
|
}
|
|
}
|
|
|
|
.person__poster {
|
|
display: block;
|
|
border-radius: 10px;
|
|
background-color: grey;
|
|
animation: pulse 1s infinite ease-in-out;
|
|
|
|
@keyframes pulse {
|
|
0% {
|
|
background-color: rgba(165, 165, 165, 0.1);
|
|
}
|
|
50% {
|
|
background-color: rgba(165, 165, 165, 0.3);
|
|
}
|
|
100% {
|
|
background-color: rgba(165, 165, 165, 0.1);
|
|
}
|
|
}
|
|
|
|
> img {
|
|
border-radius: 10px;
|
|
width: 100%;
|
|
|
|
@include mobile {
|
|
max-width: 225px;
|
|
}
|
|
}
|
|
}
|
|
</style>
|