Readlebee/app/views/search/index.js

163 lines
6.0 KiB
JavaScript
Raw Normal View History

import html from 'choo/html';
import { SearchController } from './controller'; // The controller for this view, where processing should happen.
import { resultDetails } from './resultDetails';
2019-09-26 18:39:08 +02:00
import { modal } from '../partials/modal';
// This is the view function that is exported and used in the view manager.
export const searchView = (state, emit, i18n) => {
2019-09-25 22:41:56 +02:00
const controller = new SearchController(state, emit, i18n);
const { __ } = controller.i18n;
if (controller.hasQuery && controller.queryIsNew) {
2019-09-25 22:41:56 +02:00
controller.search();
} else if (controller.state.lastSearch !== '') {
controller.appState.query.for = controller.state.lastSearch;
2019-09-10 01:09:25 +02:00
}
// 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`<h1 class="title">${__('search.header')}</h1>`,
html`<section class="flex">
<label class="three-fourth">
<input type="text" name="search"
aria-label=${i18n.__('search.placeholder')}
placeholder=${i18n.__('search.placeholder')}
value=${controller.state.lastSearch}
onchange=${e => {
emit('pushState', '/search?for=' + encodeURIComponent(e.target.value.trim()));
}}
${!controller.doneSearching ? 'disabled' : null}
>
</label>
<button class="fourth" style="margin-top:0;height:2.1em;"
onclick=${() => emit('pushState', '/search?for=' + encodeURIComponent(controller.appState.query.for))}
${!controller.doneSearching ? 'disabled' : null}
>
${!controller.doneSearching
? html`<i class="icon-loading animate-spin"></i>`
: __('search.button_text')
2019-09-16 20:47:47 +02:00
}
</button>
</section>`,
2019-09-11 01:16:01 +02:00
2019-09-26 18:39:08 +02:00
// Search Options Section
html`<section>
2019-09-26 18:39:08 +02:00
<header class="flex two four-800">
2019-09-26 01:19:35 +02:00
<div>
<h3>Search Options</h3>
</div>
<div>
2019-09-26 18:39:08 +02:00
<button class="pseudo" onclick=${() => {
controller.state.expandSearchOptions = !controller.state.expandSearchOptions;
emit('render');
}}>
${controller.state.expandSearchOptions !== true ? '+ Expand' : '- Collapse'}
</button>
2019-09-26 01:19:35 +02:00
</div>
</header>
2019-09-26 18:39:08 +02:00
<footer class="flex one two-700" ${controller.state.expandSearchOptions !== true ? 'hidden' : null}>
2019-09-26 01:19:35 +02:00
<div>
2019-09-26 18:39:08 +02:00
${modal('searchSourceInfo', controller, [
html`<p>
This refers to where the search tries to look for data.
</p>`,
html`<ul>
<li>
<a href="https://inventaire.io" target="_blank">
Inventaire
</a>
</li>
<li>
<a href="https://openlibrary.org" target="_blank">
Open Library
</a>
</li>
<li>
<a href="https://bookbrainz.org/" target="_blank">
BoookBrainz
</a>
</li>
</ul>`,
], {
buttonText: 'What\'s This?',
buttonClasses: 'small marginless pseudo button pull-right',
headerText: 'What does "Search Source" mean?',
})}
2019-09-26 01:19:35 +02:00
<label>
Search Source
2019-09-26 18:39:08 +02:00
<select onchange=${event => {
controller.state.searchSource = event.target.value;
}}>
<option value="inventaire" ${controller.state.searchSource === 'inventaire' ? 'selected' : null}>
Inventaire
</option>
<option value="openlibrary" ${controller.state.searchSource === 'openlibrary' ? 'selected' : null}>
Open Library
</option>
<option value="bookbrainz" ${controller.state.searchSource === 'bookbrainz' ? 'selected' : null}>
BookBrainz
</option>
2019-09-26 01:19:35 +02:00
</select>
</label>
</div>
<div>
Search By<br>
<label>
2019-09-26 18:39:08 +02:00
<input type="radio" name="searchBy" value="title"
${controller.state.searchBy === 'title' ? 'checked' : null}
onchange=${(event) => {
if (event.target.checked) {
controller.state.searchBy = event.target.value;
}
}}
>
2019-09-26 01:19:35 +02:00
<span class="checkable">Title</span>
</label>
<label>
2019-09-26 18:39:08 +02:00
<input type="radio" name="searchBy" value="author"
${controller.state.searchBy === 'author' ? 'checked' : null}
onchange=${(event) => {
if (event.target.checked) {
controller.state.searchBy = event.target.value;
}
}}
>
2019-09-26 01:19:35 +02:00
<span class="checkable">Author</span>
</label>
</div>
</footer>
</section>`,
html`<section>
<h2>
${controller.hasQuery && !controller.doneSearching
? html`<span>${__('search.loading')}</span> <i class="icon-loading animate-spin"></i>`
: null
}
</h2>
${controller.hasQuery && controller.doneSearching && controller.results.works < 1
? [
html`<h3>${__('search.no_results')}</h3>`,
html`<a class="button" href="https://wiki.inventaire.io/wiki/How-to-contribute" target="_blank">
${__('search.no_results_suggestion')}
</a>`
]
: controller.results.works.map(result => {
return html`<article class="flex search-result">
<header class="two-third-800 half-500">
<h3 class="title">${result.name}</h3>
${result.description ? html`<h4 class="subtitle">${result.description}</h4>` : null}
</header>
<footer class="third-800 half-500">
${resultDetails(controller, result, emit)}
</footer>
</article>`;
})
}
</section>`,
];
}