2019-12-15 22:01:48 +00:00
|
|
|
import { graphql, get } from '../api';
|
2019-12-31 02:12:52 +00:00
|
|
|
import {
|
|
|
|
releasePosterFragment,
|
|
|
|
releaseActorsFragment,
|
|
|
|
releaseTagsFragment,
|
|
|
|
} from '../fragments';
|
|
|
|
import { curateRelease } from '../curate';
|
2019-12-15 22:01:48 +00:00
|
|
|
|
|
|
|
function curateActor(actor) {
|
|
|
|
const curatedActor = {
|
|
|
|
...actor,
|
2019-12-16 01:39:13 +00:00
|
|
|
height: actor.heightMetric && {
|
|
|
|
metric: actor.heightMetric,
|
|
|
|
imperial: actor.heightImperial,
|
|
|
|
},
|
|
|
|
weight: actor.weightMetric && {
|
|
|
|
metric: actor.weightMetric,
|
|
|
|
imperial: actor.weightImperial,
|
|
|
|
},
|
|
|
|
origin: actor.birthCountry && {
|
|
|
|
city: actor.birthCity,
|
|
|
|
state: actor.birthState,
|
|
|
|
country: actor.birthCountry,
|
|
|
|
},
|
|
|
|
residence: actor.residenceCountry && {
|
|
|
|
city: actor.residenceCity,
|
|
|
|
state: actor.residenceState,
|
|
|
|
country: actor.residenceCountry,
|
2019-12-15 22:01:48 +00:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2020-01-02 16:13:57 +00:00
|
|
|
if (actor.avatar) {
|
|
|
|
curatedActor.avatar = actor.avatar.media;
|
|
|
|
}
|
|
|
|
|
2019-12-31 02:12:52 +00:00
|
|
|
if (actor.releases) {
|
|
|
|
curatedActor.releases = actor.releases.map(release => curateRelease(release.release));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (actor.photos) {
|
|
|
|
curatedActor.photos = actor.photos.map(photo => photo.media);
|
|
|
|
}
|
|
|
|
|
2019-12-15 22:01:48 +00:00
|
|
|
return curatedActor;
|
|
|
|
}
|
2019-11-10 03:20:22 +00:00
|
|
|
|
2019-11-15 04:10:59 +00:00
|
|
|
function initActorActions(store, _router) {
|
2020-01-04 01:51:58 +00:00
|
|
|
async function fetchActorBySlug(actorSlug, limit = 100) {
|
2019-12-15 22:01:48 +00:00
|
|
|
const { actor } = await graphql(`
|
2020-01-04 01:51:58 +00:00
|
|
|
query Actor(
|
|
|
|
$actorSlug: String!
|
|
|
|
$limit:Int = 1000,
|
|
|
|
$after:Date = "1900-01-01",
|
|
|
|
$before:Date = "2100-01-01",
|
2020-01-08 23:23:37 +00:00
|
|
|
$orderBy:[ReleasesActorsOrderBy!]
|
2020-01-04 01:51:58 +00:00
|
|
|
) {
|
|
|
|
actor: actorBySlug(slug: $actorSlug) {
|
2019-12-15 22:01:48 +00:00
|
|
|
id
|
|
|
|
name
|
|
|
|
slug
|
2019-12-16 01:39:13 +00:00
|
|
|
gender
|
|
|
|
birthdate
|
|
|
|
age
|
|
|
|
ethnicity
|
|
|
|
bust
|
|
|
|
waist
|
|
|
|
hip
|
|
|
|
heightMetric: height(units:METRIC)
|
|
|
|
heightImperial: height(units:IMPERIAL)
|
|
|
|
weightMetric: weight(units:METRIC)
|
|
|
|
weightImperial: weight(units:IMPERIAL)
|
|
|
|
hasTattoos
|
|
|
|
hasPiercings
|
|
|
|
tattoos
|
|
|
|
piercings
|
2019-12-31 02:12:52 +00:00
|
|
|
avatar: actorsAvatarByActorId {
|
|
|
|
media {
|
|
|
|
thumbnail
|
|
|
|
path
|
|
|
|
}
|
2019-12-15 22:01:48 +00:00
|
|
|
}
|
2019-12-31 02:12:52 +00:00
|
|
|
photos: actorsPhotos {
|
|
|
|
media {
|
|
|
|
id
|
|
|
|
thumbnail
|
|
|
|
path
|
|
|
|
index
|
|
|
|
}
|
2019-12-16 01:39:13 +00:00
|
|
|
}
|
|
|
|
birthCity
|
|
|
|
birthState
|
|
|
|
birthCountry: countryByBirthCountryAlpha2 {
|
2019-12-15 22:01:48 +00:00
|
|
|
alpha2
|
|
|
|
name
|
|
|
|
alias
|
|
|
|
}
|
2019-12-16 01:39:13 +00:00
|
|
|
residenceCity
|
|
|
|
residenceState
|
|
|
|
residenceCountry: countryByResidenceCountryAlpha2 {
|
|
|
|
alpha2
|
|
|
|
name
|
|
|
|
alias
|
|
|
|
}
|
2019-12-31 02:12:52 +00:00
|
|
|
social: actorsSocials {
|
2019-12-16 01:39:13 +00:00
|
|
|
id
|
|
|
|
url
|
|
|
|
platform
|
|
|
|
}
|
2019-12-15 22:01:48 +00:00
|
|
|
aliases: actorsByAliasFor {
|
|
|
|
id
|
|
|
|
name
|
|
|
|
slug
|
|
|
|
}
|
2020-01-04 01:51:58 +00:00
|
|
|
releases: releasesActors(
|
|
|
|
filter: {
|
|
|
|
release: {
|
|
|
|
date: {
|
|
|
|
lessThan: $before,
|
|
|
|
greaterThan: $after,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
first: $limit,
|
2020-01-08 23:23:37 +00:00
|
|
|
orderBy: $orderBy
|
2020-01-04 01:51:58 +00:00
|
|
|
) {
|
2019-12-31 02:12:52 +00:00
|
|
|
release {
|
|
|
|
id
|
|
|
|
url
|
|
|
|
title
|
|
|
|
date
|
|
|
|
${releaseActorsFragment}
|
|
|
|
${releaseTagsFragment}
|
|
|
|
${releasePosterFragment}
|
|
|
|
site {
|
|
|
|
id
|
|
|
|
name
|
|
|
|
slug
|
|
|
|
url
|
|
|
|
network {
|
|
|
|
id
|
|
|
|
name
|
|
|
|
slug
|
|
|
|
url
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-12-15 22:01:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
`, {
|
|
|
|
actorSlug,
|
2020-01-04 01:51:58 +00:00
|
|
|
limit,
|
|
|
|
after: store.getters.after,
|
|
|
|
before: store.getters.before,
|
2020-01-08 23:23:37 +00:00
|
|
|
orderBy: store.state.ui.range === 'upcoming' ? 'RELEASE_BY_RELEASE_ID__DATE_ASC' : 'RELEASE_BY_RELEASE_ID__DATE_DESC',
|
2019-12-15 22:01:48 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
return curateActor(actor);
|
|
|
|
}
|
|
|
|
|
|
|
|
async function fetchActors({ _commit }, { actorSlug, limit = 100 }) {
|
|
|
|
if (actorSlug) {
|
|
|
|
return fetchActorBySlug(actorSlug);
|
2019-12-01 04:32:47 +00:00
|
|
|
}
|
2019-11-10 03:20:22 +00:00
|
|
|
|
2019-12-15 22:01:48 +00:00
|
|
|
const { actors } = await graphql(`
|
|
|
|
query Actors($limit:Int) {
|
2020-01-07 03:23:28 +00:00
|
|
|
actors(first:$limit, orderBy: NAME_ASC) {
|
2019-12-15 22:01:48 +00:00
|
|
|
id
|
|
|
|
name
|
|
|
|
slug
|
2020-01-02 16:13:57 +00:00
|
|
|
age
|
|
|
|
birthdate
|
2019-12-31 02:12:52 +00:00
|
|
|
avatar: actorsAvatarByActorId {
|
|
|
|
media {
|
|
|
|
thumbnail
|
|
|
|
}
|
2019-12-15 22:01:48 +00:00
|
|
|
}
|
2019-12-16 01:39:13 +00:00
|
|
|
birthCountry: countryByBirthCountryAlpha2 {
|
2019-12-15 22:01:48 +00:00
|
|
|
alpha2
|
|
|
|
name
|
|
|
|
alias
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`, {
|
|
|
|
limit,
|
|
|
|
});
|
|
|
|
|
|
|
|
return actors.map(actor => curateActor(actor));
|
2019-11-10 03:20:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
async function fetchActorReleases({ _commit }, actorId) {
|
2019-11-15 04:10:59 +00:00
|
|
|
const releases = await get(`/actors/${actorId}/releases`, {
|
|
|
|
filter: store.state.ui.filter,
|
|
|
|
after: store.getters.after,
|
|
|
|
before: store.getters.before,
|
|
|
|
});
|
2019-11-10 03:20:22 +00:00
|
|
|
|
|
|
|
return releases;
|
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
|
|
|
fetchActors,
|
|
|
|
fetchActorReleases,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export default initActorActions;
|