UNPKG

converse.js

Version:
40 lines (35 loc) 1.21 kB
import { _converse, api, converse } from '@converse/headless'; const { u } = converse.env; export const BookmarkableChatRoomView = { /** * Set whether the groupchat is bookmarked or not. * @private */ setBookmarkState () { const { bookmarks } = _converse.state; if (bookmarks) { const models = bookmarks.where({ 'jid': this.model.get('jid') }); if (!models.length) { this.model.save('bookmarked', false); } else { this.model.save('bookmarked', true); } } }, renderBookmarkForm () { if (!this.bookmark_form) { this.bookmark_form = new _converse.state.MUCBookmarkForm({ 'model': this.model, 'chatroomview': this }); const container_el = this.querySelector('.chatroom-body'); container_el.insertAdjacentElement('beforeend', this.bookmark_form.el); } u.showElement(this.bookmark_form.el); }, showBookmarkModal(ev) { ev?.preventDefault(); const jid = this.model.get('jid'); api.modal.show('converse-bookmark-form-modal', { jid }, ev); } };