88 lines
3.0 KiB
JavaScript
88 lines
3.0 KiB
JavaScript
import html from 'choo/html';
|
|
|
|
import { starRating } from '../partials/starRating';
|
|
import { modal } from '../partials/modal';
|
|
|
|
export const resultDetails = (searchController, result) => {
|
|
const { i18n } = searchController;
|
|
const modalId = `result_${result.uri}`;
|
|
|
|
const buttonHTML = html`<label for=${modalId} class="pseudo button">
|
|
<span data-tooltip="${i18n.__('interaction.average_rating')}: ${result.averageRating}">
|
|
${starRating(result.averageRating)}
|
|
</span>
|
|
<span style="margin-left:10px;" data-tooltip=${i18n.__('interaction.reviews_written')}>
|
|
<span style="margin-right:8px;"><i class="icon-chat"></i></span>
|
|
<span>${result.numberOfReviews}</span>
|
|
</span>
|
|
</label>`;
|
|
|
|
const modalContent = html`<article class="flex">
|
|
<div class="sixth-700" style="text-align:center;">
|
|
<h4>Covers</h4>
|
|
<span style="font-size:3em;"><i class="icon-loading animate-spin"></i></span>
|
|
</div>
|
|
<div class="two-third-700">
|
|
<h4>${i18n.__('interaction.average_rating')}</h4>
|
|
<span data-tooltip="${result.averageRating}">${starRating(result.averageRating)}</span>
|
|
|
|
<div class="flex">
|
|
<div>
|
|
<h4>Top Reviews</h4>
|
|
</div>
|
|
<div>
|
|
<a href="/book/${result.uri}" class="small button">
|
|
<span style="margin-right:8px;"><i class="icon-chat"></i></span>
|
|
<span>${result.numberOfReviews}</span>
|
|
<span>${i18n.__('search.see_interaction_details')}</span>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
${result.reviews.map(review => {
|
|
return html`<article class="card">
|
|
<header style="font-weight:normal;">
|
|
<strong>${review.reviewer.name}</strong> <em>${review.reviewer.handle}</em><br>
|
|
${review.date} ${starRating(Math.ceil(review.rating))}
|
|
</header>
|
|
<footer>
|
|
<div class="content">
|
|
<p>
|
|
${review.review}
|
|
</p>
|
|
</div>
|
|
<span class="tooltip-top" data-tooltip=${i18n.__('interaction.heart')}>
|
|
<button class="pseudo">
|
|
<i class="icon-heart-outline"></i>
|
|
</button>
|
|
</span>
|
|
<span>
|
|
${review.hearts}
|
|
</span>
|
|
</footer>
|
|
</article>`;
|
|
})}
|
|
</div>
|
|
<div class="sixth-700">
|
|
<p>
|
|
<span data-tooltip=${i18n.__('interaction.add')}>
|
|
<button class="success">
|
|
<i class="icon-plus"></i>
|
|
</button>
|
|
</span>
|
|
</p>
|
|
<p>
|
|
<span data-tooltip=${i18n.__('search.see_details_tooltip')}>
|
|
<a class="small pseudo button" href=${result.link} target="_blank">
|
|
${i18n.__('search.see_book_details')}
|
|
</a>
|
|
</span>
|
|
</p>
|
|
</div>
|
|
</article>`;
|
|
|
|
return modal(modalId, searchController, modalContent, {
|
|
styles: "width:90%;",
|
|
buttonHTML, // This should be replaced with buttonHTML containing the ratings and number of reviews etc.
|
|
headerText: result.name,
|
|
});
|
|
} |