xmpp.chapril.org-conversejs/src/plugins/chatview/templates/chat-head.js
JC Brand b2ad6e844c Fix chat head buttons not showing
We need to use `converse-icon` now that the fontawesome fonts aren't
included
2022-10-30 16:51:15 +01:00

35 lines
1.7 KiB
JavaScript

import { __ } from 'i18n';
import { _converse } from '@converse/headless/core';
import { getStandaloneButtons, getDropdownButtons } from 'shared/chat/utils.js';
import { html } from "lit";
import { until } from 'lit/directives/until.js';
export default (o) => {
const i18n_profile = __("The User's Profile Image");
const avatar = html`<span title="${i18n_profile}">
<converse-avatar
class="avatar chat-msg__avatar"
.data=${o.model.vcard?.attributes}
nonce=${o.model.vcard?.get('vcard_updated')}
height="40" width="40"></converse-avatar></span>`;
const display_name = o.model.getDisplayName();
return html`
<div class="chatbox-title ${ o.status ? '' : "chatbox-title--no-desc"}">
<div class="chatbox-title--row">
${ (!_converse.api.settings.get("singleton")) ? html`<converse-controlbox-navback jid="${o.jid}"></converse-controlbox-navback>` : '' }
${ (o.type !== _converse.HEADLINES_TYPE) ? html`<a class="show-msg-author-modal" @click=${o.showUserDetailsModal}>${ avatar }</a>` : '' }
<div class="chatbox-title__text" title="${o.jid}">
${ (o.type !== _converse.HEADLINES_TYPE) ? html`<a class="user show-msg-author-modal" @click=${o.showUserDetailsModal}>${ display_name }</a>` : display_name }
</div>
</div>
<div class="chatbox-title__buttons row no-gutters">
${ until(getDropdownButtons(o.heading_buttons_promise), '') }
${ until(getStandaloneButtons(o.heading_buttons_promise), '') }
</div>
</div>
${ o.status ? html`<p class="chat-head__desc">${ o.status }</p>` : '' }
`;
}