Readlebee/app/views/search/index.js

107 lines
4.0 KiB
JavaScript
Raw Normal View History

import html from 'choo/html';
2019-09-10 01:08:11 +02:00
import { I18n } from '../../i18n';
import { SearchController } from './controller'; // The controller for this view, where processing should happen.
// This is the view function that is exported and used in the view manager.
export const searchView = (state, emit) => {
2019-09-10 01:08:11 +02:00
const i18n = new I18n(state);
const controller = new SearchController(state);
2019-09-10 01:09:25 +02:00
if (controller.state.lastSearch !== state.query.for) {
console.log('searching!');
controller.search().then(() => {
emit('render');
});
}
// Returning an array in a view allows non-shared parent HTML elements.
// This one doesn't have the problem right now, but it's good to remember.
return [
html`<section>
2019-09-11 01:16:01 +02:00
<h1 class="title">${i18n.__('search.header')}</h1>
<article>
2019-09-11 01:36:49 +02:00
${controller.doneSearching ? null : html`<h2><i class="icon-loading animate-spin"></i></h2>`}
2019-09-11 01:16:01 +02:00
${controller.results.works < 1
? null
: [
html`<h2>${i18n.__('search.books_header')}</h2>`,
controller.results.works.map(result => {
return html`<div class="flex search-result">
<div class="half-500">
<h3 class="title">${result.name}</h3>
${result.description ? html`<h4 class="subtitle">${result.description}</h4>` : null}
2019-09-11 19:38:09 +02:00
</div>
<div class="third-500">
2019-09-11 01:36:49 +02:00
<span data-tooltip=${i18n.__('interaction.heart')}>
<button class="pseudo">
<i class="pseudo icon-heart-outline"></i>
</button>
</span>
<span data-tooltip=${i18n.__('interaction.add')}>
<button class="pseudo">
<i class="pseudo icon-plus"></i>
</button>
</span>
2019-09-11 01:16:01 +02:00
</div>
2019-09-11 19:38:09 +02:00
<div class="sixth-500">
<span class="tooltip-left" data-tooltip=${i18n.__('search.see_details_tooltip')}>
<a class="small pseudo button" href=${result.link} target="_blank">
${i18n.__('search.see_details')}
</a>
</span>
2019-09-11 01:16:01 +02:00
</div>
</div>`;
}),
]}
${controller.results.series.length < 1
? null
: [
html`<h2>${i18n.__('search.series_header')}</h2>`,
controller.results.series.map(result => {
return html`<div class="flex search-result">
<div class="half-500">
<h3 class="title">${result.name}</h3>
${result.description ? html`<h4 class="subtitle">${result.description}</h4>` : null}
</div>
2019-09-11 19:38:09 +02:00
<div class="sixth-500 off-third-500">
<span class="tooltip-left" data-tooltip=${i18n.__('search.see_details_tooltip')}>
<a class="small pseudo button" href=${result.link} target="_blank">
${i18n.__('search.see_details')}
</a>
</span>
2019-09-11 01:16:01 +02:00
</div>
</div>`;
}),
]}
${controller.results.humans.length < 1
? null
: [
html`<h2>${i18n.__('search.people_header')}</h2>`,
controller.results.humans.map(result => {
return html`<div class="flex search-result">
<div class="sixth-500">
${result.image ? html`<img src=${result.image.url} class="search-image">` : null}
</div>
<div class="half-500">
<h3 class="title">${result.name}</h3>
${result.description ? html`<h4 class="subtitle">${result.description}</h4>` : null}
</div>
<div class="third-500">
2019-09-11 19:38:09 +02:00
<span class="tooltip-left" data-tooltip=${i18n.__('search.see_details_tooltip')}>
<a class="small pseudo button" href=${result.link} target="_blank">
${i18n.__('search.see_details')}
</a>
</span>
2019-09-11 01:16:01 +02:00
</div>
</div>`;
}),
]}
</article>
</section>`,
];
}