Timothy J. Warren
23d9fd0b40
All checks were successful
timw4mail/HummingBirdAnimeClient/pipeline/pr-master This commit looks good
82 lines
2.4 KiB
JavaScript
82 lines
2.4 KiB
JavaScript
import _ from './anime-client.js';
|
|
|
|
// Click on hidden MAL checkbox so
|
|
// that MAL id is passed
|
|
_.on('main', 'change', '.big-check', (e) => {
|
|
const id = e.target.id;
|
|
document.getElementById(`mal_${id}`).checked = true;
|
|
});
|
|
|
|
export function renderAnimeSearchResults (data) {
|
|
const results = [];
|
|
|
|
data.forEach(item => {
|
|
const titles = item.titles.join('<br />');
|
|
|
|
results.push(`
|
|
<article class="media search">
|
|
<div class="name">
|
|
<input type="radio" class="mal-check" id="mal_${item.slug}" name="mal_id" value="${item.mal_id}" />
|
|
<input type="radio" class="big-check" id="${item.slug}" name="id" value="${item.id}" />
|
|
<label for="${item.slug}">
|
|
<picture width="220">
|
|
<source srcset="/public/images/anime/${item.id}.webp" type="image/webp" />
|
|
<source srcset="/public/images/anime/${item.id}.jpg" type="image/jpeg" />
|
|
<img src="/public/images/anime/${item.id}.jpg" alt="" width="220" />
|
|
</picture>
|
|
<span class="name">
|
|
${item.canonicalTitle}<br />
|
|
<small>${titles}</small>
|
|
</span>
|
|
</label>
|
|
</div>
|
|
<div class="table">
|
|
<div class="row">
|
|
<span class="edit">
|
|
<a class="bracketed" href="/anime/details/${item.slug}">Info Page</a>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</article>
|
|
`);
|
|
});
|
|
|
|
return results.join('');
|
|
}
|
|
|
|
export function renderMangaSearchResults (data) {
|
|
const results = [];
|
|
|
|
data.forEach(item => {
|
|
const titles = item.titles.join('<br />');
|
|
|
|
results.push(`
|
|
<article class="media search">
|
|
<div class="name">
|
|
<input type="radio" id="mal_${item.slug}" name="mal_id" value="${item.mal_id}" />
|
|
<input type="radio" class="big-check" id="${item.slug}" name="id" value="${item.id}" />
|
|
<label for="${item.slug}">
|
|
<picture width="220">
|
|
<source srcset="/public/images/manga/${item.id}.webp" type="image/webp" />
|
|
<source srcset="/public/images/manga/${item.id}.jpg" type="image/jpeg" />
|
|
<img src="/public/images/manga/${item.id}.jpg" alt="" width="220" />
|
|
</picture>
|
|
<span class="name">
|
|
${item.canonicalTitle}<br />
|
|
<small>${titles}</small>
|
|
</span>
|
|
</label>
|
|
</div>
|
|
<div class="table">
|
|
<div class="row">
|
|
<span class="edit">
|
|
<a class="bracketed" href="/manga/details/${item.slug}">Info Page</a>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</article>
|
|
`);
|
|
});
|
|
|
|
return results.join('');
|
|
} |