import { html } from "lit-html"; import { __ } from '@converse/headless/i18n'; const desc_bookmarks = __('Click to toggle the bookmarks list'); const info_remove_bookmark = __('Unbookmark this groupchat'); const label_bookmarks = __('Bookmarks'); const open_title = __('Click to open this groupchat'); const bookmark_item = (o) => html`
${o.bm.getDisplayName()}
`; export default (o) => html`
${label_bookmarks}
${ o.bookmarks.map(bm => bookmark_item(Object.assign({bm}, o))) }
`;