Get character details page from GraphQL, still need to do castings section, see #27
This commit is contained in:
parent
67d3b7c1dc
commit
681a70fd92
@ -42,15 +42,15 @@ use Aviat\AnimeClient\API\Kitsu;
|
||||
<?php foreach ($data['media']['anime'] as $id => $anime): ?>
|
||||
<article class="media">
|
||||
<?php
|
||||
$link = $url->generate('anime.details', ['id' => $anime['attributes']['slug']]);
|
||||
$titles = Kitsu::filterTitles($anime['attributes']);
|
||||
$link = $url->generate('anime.details', ['id' => $anime['slug']]);
|
||||
$titles = Kitsu::getTitles($anime['titles']);
|
||||
?>
|
||||
<a href="<?= $link ?>">
|
||||
<?= $helper->picture("images/anime/{$id}.webp") ?>
|
||||
<?= $helper->picture("images/anime/{$anime['id']}.webp") ?>
|
||||
</a>
|
||||
<div class="name">
|
||||
<a href="<?= $link ?>">
|
||||
<?= array_shift($titles) ?>
|
||||
<?= $anime['titles']['canonical'] ?>
|
||||
<?php foreach ($titles as $title): ?>
|
||||
<br />
|
||||
<small><?= $title ?></small>
|
||||
@ -70,15 +70,15 @@ use Aviat\AnimeClient\API\Kitsu;
|
||||
<?php foreach ($data['media']['manga'] as $id => $manga): ?>
|
||||
<article class="media">
|
||||
<?php
|
||||
$link = $url->generate('manga.details', ['id' => $manga['attributes']['slug']]);
|
||||
$titles = Kitsu::filterTitles($manga['attributes']);
|
||||
$link = $url->generate('manga.details', ['id' => $manga['slug']]);
|
||||
$titles = Kitsu::getTitles($manga['titles']);
|
||||
?>
|
||||
<a href="<?= $link ?>">
|
||||
<?= $helper->picture("images/manga/{$id}.webp") ?>
|
||||
<?= $helper->picture("images/manga/{$manga['id']}.webp") ?>
|
||||
</a>
|
||||
<div class="name">
|
||||
<a href="<?= $link ?>">
|
||||
<?= array_shift($titles) ?>
|
||||
<?= $manga['titles']['canonical'] ?>
|
||||
<?php foreach ($titles as $title): ?>
|
||||
<br />
|
||||
<small><?= $title ?></small>
|
||||
|
@ -190,17 +190,8 @@ final class Model {
|
||||
*/
|
||||
public function getCharacter(string $slug): array
|
||||
{
|
||||
return $this->requestBuilder->getRequest('characters', [
|
||||
'query' => [
|
||||
'filter' => [
|
||||
'slug' => $slug,
|
||||
],
|
||||
'fields' => [ // For some characters, these filters cause issues...so leave them out
|
||||
// 'anime' => 'canonicalTitle,abbreviatedTitles,titles,slug,posterImage',
|
||||
// 'manga' => 'canonicalTitle,abbreviatedTitles,titles,slug,posterImage'
|
||||
],
|
||||
'include' => 'castings.person,castings.media'
|
||||
]
|
||||
return $this->requestBuilder->runQuery('CharacterDetails', [
|
||||
'slug' => $slug
|
||||
]);
|
||||
}
|
||||
|
||||
|
@ -6,10 +6,11 @@ query ($slug: String!) {
|
||||
url
|
||||
}
|
||||
}
|
||||
description
|
||||
names {
|
||||
alternatives
|
||||
canonical
|
||||
#canonicalLocale
|
||||
canonicalLocale
|
||||
localized
|
||||
},
|
||||
primaryMedia {
|
||||
@ -23,6 +24,63 @@ query ($slug: String!) {
|
||||
}
|
||||
type
|
||||
},
|
||||
media {
|
||||
nodes {
|
||||
media {
|
||||
id
|
||||
slug
|
||||
titles {
|
||||
alternatives
|
||||
canonical
|
||||
canonicalLocale
|
||||
localized
|
||||
}
|
||||
posterImage {
|
||||
original {
|
||||
height
|
||||
name
|
||||
url
|
||||
width
|
||||
}
|
||||
views {
|
||||
height
|
||||
name
|
||||
url
|
||||
width
|
||||
}
|
||||
}
|
||||
type
|
||||
}
|
||||
voices {
|
||||
nodes {
|
||||
id
|
||||
licensor {
|
||||
name
|
||||
}
|
||||
locale
|
||||
person {
|
||||
id
|
||||
slug
|
||||
name
|
||||
names {
|
||||
alternatives
|
||||
canonical
|
||||
canonicalLocale
|
||||
localized
|
||||
}
|
||||
image {
|
||||
original {
|
||||
height
|
||||
width
|
||||
url
|
||||
name
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
slug
|
||||
}
|
||||
}
|
@ -31,6 +31,65 @@ final class CharacterTransformer extends AbstractTransformer {
|
||||
* @return Character
|
||||
*/
|
||||
public function transform($characterData): Character
|
||||
{
|
||||
$data = $characterData['data']['findCharacterBySlug'] ?? [];
|
||||
$castings = [];
|
||||
$media = [
|
||||
'anime' => [],
|
||||
'manga' => [],
|
||||
];
|
||||
|
||||
$names = array_unique(
|
||||
array_merge(
|
||||
[$data['names']['canonical']],
|
||||
array_values($data['names']['localized'])
|
||||
)
|
||||
);
|
||||
$name = array_shift($names);
|
||||
|
||||
if (isset($data['media']['nodes']))
|
||||
{
|
||||
[$media, $castings] = $this->organizeMediaAndVoices($data['media']['nodes']);
|
||||
}
|
||||
|
||||
return Character::from([
|
||||
'castings' => $castings,
|
||||
'description' => $data['description']['en'],
|
||||
'id' => $data['id'],
|
||||
'media' => $media,
|
||||
'name' => $name,
|
||||
'names' => $names,
|
||||
'otherNames' => $data['names']['alternatives'],
|
||||
]);
|
||||
}
|
||||
|
||||
protected function organizeMediaAndVoices (array $data): array
|
||||
{
|
||||
if (empty($data))
|
||||
{
|
||||
return [[], []];
|
||||
}
|
||||
|
||||
$rawMedia = array_column($data, 'media');
|
||||
$rawAnime = array_filter($rawMedia, fn ($item) => $item['type'] === 'Anime');
|
||||
$rawManga = array_filter($rawMedia, fn ($item) => $item['type'] === 'Manga');
|
||||
|
||||
uasort($rawAnime, fn ($a, $b) => $a['titles']['canonical'] <=> $b['titles']['canonical']);
|
||||
uasort($rawManga, fn ($a, $b) => $a['titles']['canonical'] <=> $b['titles']['canonical']);
|
||||
|
||||
$media = [
|
||||
'anime' => $rawAnime,
|
||||
'manga' => $rawManga,
|
||||
];
|
||||
|
||||
return [$media, []];
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $characterData
|
||||
* @return Character
|
||||
*/
|
||||
public function oldTransform($characterData): Character
|
||||
{
|
||||
$data = JsonAPI::organizeData($characterData);
|
||||
$attributes = $data[0]['attributes'];
|
||||
|
Loading…
Reference in New Issue
Block a user