import html from 'choo/html'; import { modal } from '../../partials/modal'; export const editModal = (shelf, shelvesController) => { const { __ } = shelvesController.i18n; const modalId = `editShelf${shelf.id}`; // Should add a scale of publicity: private, friends only, friends & followers, public const modalContent = html`

To Do

`; return modal(modalId, shelvesController, modalContent, { buttonHTML: html``, headerText: `${__('shelves.edit.editing')}: ${shelf.name}`, footerHTML: html``, }); }