const html = require('choo/html'); const { modal } = require('../../partials/modal'); 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``, }); } module.exports = { editModal };