import html from 'choo/html';
import { modal } from '../partials/modal';
export const resultDetails = (searchController, result, buttonHTML) => {
const { i18n } = searchController;
const modalId = `result_${result.uri}}`;
const modalContent = html`
${i18n.__('search.see_details')}
`;
return modal(modalId, searchController, modalContent, {
buttonText: i18n.__('search.see_details'), // This should be replaced with buttonHTML containing the ratings and number of reviews etc.
headerText: result.name,
});
}