|
@@ -12,7 +12,6 @@ import tpl_spinner from 'templates/spinner.js';
|
|
import { CustomElement } from 'shared/components/element.js';
|
|
import { CustomElement } from 'shared/components/element.js';
|
|
import { __ } from 'i18n';
|
|
import { __ } from 'i18n';
|
|
import { _converse, api, converse } from '@converse/headless/core';
|
|
import { _converse, api, converse } from '@converse/headless/core';
|
|
-import { getDerivedMessageProps } from './message-history';
|
|
|
|
import { html } from 'lit-element';
|
|
import { html } from 'lit-element';
|
|
import { renderAvatar } from 'shared/directives/avatar';
|
|
import { renderAvatar } from 'shared/directives/avatar';
|
|
|
|
|
|
@@ -24,53 +23,19 @@ export default class Message extends CustomElement {
|
|
|
|
|
|
static get properties () {
|
|
static get properties () {
|
|
return {
|
|
return {
|
|
- correcting: { type: Boolean },
|
|
|
|
- editable: { type: Boolean },
|
|
|
|
- edited: { type: String },
|
|
|
|
- error: { type: String },
|
|
|
|
- error_text: { type: String },
|
|
|
|
- from: { type: String },
|
|
|
|
- has_mentions: { type: Boolean },
|
|
|
|
- hats: { type: Array },
|
|
|
|
- is_delayed: { type: Boolean },
|
|
|
|
- is_encrypted: { type: Boolean },
|
|
|
|
- is_first_unread: { type: Boolean },
|
|
|
|
- is_me_message: { type: Boolean },
|
|
|
|
- is_only_emojis: { type: Boolean },
|
|
|
|
- is_retracted: { type: Boolean },
|
|
|
|
- is_spoiler: { type: Boolean },
|
|
|
|
- is_spoiler_visible: { type: Boolean },
|
|
|
|
- message_type: { type: String },
|
|
|
|
- model: { type: Object },
|
|
|
|
- moderated_by: { type: String },
|
|
|
|
- moderation_reason: { type: String },
|
|
|
|
- msgid: { type: String },
|
|
|
|
- occupant_affiliation: { type: String },
|
|
|
|
- occupant_role: { type: String },
|
|
|
|
- oob_url: { type: String },
|
|
|
|
- progress: { type: Number },
|
|
|
|
- reason: { type: String },
|
|
|
|
- received: { type: String },
|
|
|
|
- retractable: { type: Boolean },
|
|
|
|
- retry_event_id: { type: String },
|
|
|
|
- sender: { type: String },
|
|
|
|
- show_spinner: { type: Boolean },
|
|
|
|
- spoiler_hint: { type: String },
|
|
|
|
- subject: { type: String },
|
|
|
|
- time: { type: String },
|
|
|
|
- unfurl_metadata: { type: String },
|
|
|
|
- username: { type: String }
|
|
|
|
|
|
+ jid: { type: String },
|
|
|
|
+ mid: { type: String }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
render () {
|
|
render () {
|
|
const format = api.settings.get('time_format');
|
|
const format = api.settings.get('time_format');
|
|
- this.pretty_time = dayjs(this.edited || this.time).format(format);
|
|
|
|
|
|
+ this.pretty_time = dayjs(this.model.get('edited') || this.model.get('time')).format(format);
|
|
if (this.show_spinner) {
|
|
if (this.show_spinner) {
|
|
return tpl_spinner();
|
|
return tpl_spinner();
|
|
} else if (this.model.get('file') && !this.model.get('oob_url')) {
|
|
} else if (this.model.get('file') && !this.model.get('oob_url')) {
|
|
return this.renderFileProgress();
|
|
return this.renderFileProgress();
|
|
- } else if (['error', 'info'].includes(this.message_type)) {
|
|
|
|
|
|
+ } else if (['error', 'info'].includes(this.model.get('type'))) {
|
|
return this.renderInfoMessage();
|
|
return this.renderInfoMessage();
|
|
} else {
|
|
} else {
|
|
return this.renderChatMessage();
|
|
return this.renderChatMessage();
|
|
@@ -79,24 +44,35 @@ export default class Message extends CustomElement {
|
|
|
|
|
|
connectedCallback () {
|
|
connectedCallback () {
|
|
super.connectedCallback();
|
|
super.connectedCallback();
|
|
- // Listen to changes and update properties (which will trigger a
|
|
|
|
- // re-render if necessary).
|
|
|
|
- this.listenTo(this.model, 'change', (model) => {
|
|
|
|
- const chatbox = this.model.collection.chatbox;
|
|
|
|
- Object.assign(this, getDerivedMessageProps(chatbox, this.model));
|
|
|
|
- Object.keys(model.changed)
|
|
|
|
- .filter(p => Object.keys(Message.properties).includes(p))
|
|
|
|
- .forEach(p => (this[p] = model.changed[p]));
|
|
|
|
- });
|
|
|
|
- const vcard = this.model.vcard;
|
|
|
|
- vcard && this.listenTo(vcard, 'change', () => this.requestUpdate());
|
|
|
|
|
|
+ this.chatbox = _converse.chatboxes.get(this.jid);
|
|
|
|
+ this.model = this.chatbox.messages.get(this.mid);
|
|
|
|
+
|
|
|
|
+ this.listenTo(this.model, 'change', () => this.requestUpdate());
|
|
|
|
+ this.model.vcard && this.listenTo(this.model.vcard, 'change', () => this.requestUpdate());
|
|
|
|
+
|
|
|
|
+ if (this.model.get('type') === 'groupchat') {
|
|
|
|
+ if (this.model.occupant) {
|
|
|
|
+ this.listenTo(this.model.occupant, 'change', () => this.requestUpdate());
|
|
|
|
+ } else {
|
|
|
|
+ this.listenTo(this.model, 'occupantAdded', () => {
|
|
|
|
+ this.listenTo(this.model.occupant, 'change', () => this.requestUpdate())
|
|
|
|
+ });
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ getProps () {
|
|
|
|
+ return Object.assign(
|
|
|
|
+ this.model.toJSON(),
|
|
|
|
+ this.getDerivedMessageProps()
|
|
|
|
+ );
|
|
}
|
|
}
|
|
|
|
|
|
renderInfoMessage () {
|
|
renderInfoMessage () {
|
|
const isodate = dayjs(this.model.get('time')).toISOString();
|
|
const isodate = dayjs(this.model.get('time')).toISOString();
|
|
const i18n_retry = __('Retry');
|
|
const i18n_retry = __('Retry');
|
|
return html`
|
|
return html`
|
|
- <div class="message chat-info chat-${this.message_type}"
|
|
|
|
|
|
+ <div class="message chat-info chat-${this.model.get('type')}"
|
|
data-isodate="${isodate}"
|
|
data-isodate="${isodate}"
|
|
data-type="${this.data_name}"
|
|
data-type="${this.data_name}"
|
|
data-value="${this.data_value}">
|
|
data-value="${this.data_value}">
|
|
@@ -104,11 +80,10 @@ export default class Message extends CustomElement {
|
|
<div class="chat-info__message">
|
|
<div class="chat-info__message">
|
|
${ this.model.getMessageText() }
|
|
${ this.model.getMessageText() }
|
|
</div>
|
|
</div>
|
|
- ${ this.reason ? html`<q class="reason">${this.reason}</q>` : `` }
|
|
|
|
- ${ this.error_text ? html`<q class="reason">${this.error_text}</q>` : `` }
|
|
|
|
- ${ this.retry_event_id ? html`<a class="retry" @click=${this.onRetryClicked}>${i18n_retry}</a>` : '' }
|
|
|
|
- </div>
|
|
|
|
- `;
|
|
|
|
|
|
+ ${ this.model.get('reason') ? html`<q class="reason">${this.model.get('reason')}</q>` : `` }
|
|
|
|
+ ${ this.model.get('error_text') ? html`<q class="reason">${this.model.get('error_text')}</q>` : `` }
|
|
|
|
+ ${ this.model.get('retry_event_id') ? html`<a class="retry" @click=${this.onRetryClicked}>${i18n_retry}</a>` : '' }
|
|
|
|
+ </div>`;
|
|
}
|
|
}
|
|
|
|
|
|
renderFileProgress () {
|
|
renderFileProgress () {
|
|
@@ -120,17 +95,17 @@ export default class Message extends CustomElement {
|
|
${ renderAvatar(this.getAvatarData()) }
|
|
${ renderAvatar(this.getAvatarData()) }
|
|
<div class="chat-msg__content">
|
|
<div class="chat-msg__content">
|
|
<span class="chat-msg__text">${i18n_uploading} <strong>${filename}</strong>, ${size}</span>
|
|
<span class="chat-msg__text">${i18n_uploading} <strong>${filename}</strong>, ${size}</span>
|
|
- <progress value="${this.progress}"/>
|
|
|
|
|
|
+ <progress value="${this.model.get('progress')}"/>
|
|
</div>
|
|
</div>
|
|
</div>`;
|
|
</div>`;
|
|
}
|
|
}
|
|
|
|
|
|
renderChatMessage () {
|
|
renderChatMessage () {
|
|
- return tpl_message(this);
|
|
|
|
|
|
+ return tpl_message(this, this.getProps());
|
|
}
|
|
}
|
|
|
|
|
|
shouldShowAvatar () {
|
|
shouldShowAvatar () {
|
|
- return api.settings.get('show_message_avatar') && !this.is_me_message && this.type !== 'headline';
|
|
|
|
|
|
+ return api.settings.get('show_message_avatar') && !this.model.isMeCommand() && this.type !== 'headline';
|
|
}
|
|
}
|
|
|
|
|
|
getAvatarData () {
|
|
getAvatarData () {
|
|
@@ -156,7 +131,8 @@ export default class Message extends CustomElement {
|
|
|
|
|
|
async onRetryClicked () {
|
|
async onRetryClicked () {
|
|
this.show_spinner = true;
|
|
this.show_spinner = true;
|
|
- await api.trigger(this.retry_event_id, {'synchronous': true});
|
|
|
|
|
|
+ this.requestUpdate();
|
|
|
|
+ await api.trigger(this.model.get('retry_event_id'), {'synchronous': true});
|
|
this.model.destroy();
|
|
this.model.destroy();
|
|
this.parentElement.removeChild(this);
|
|
this.parentElement.removeChild(this);
|
|
}
|
|
}
|
|
@@ -168,40 +144,69 @@ export default class Message extends CustomElement {
|
|
if (prev_model === null) {
|
|
if (prev_model === null) {
|
|
return false;
|
|
return false;
|
|
}
|
|
}
|
|
- const date = dayjs(this.time);
|
|
|
|
- return this.from === prev_model.get('from') &&
|
|
|
|
- !this.is_me_message &&
|
|
|
|
|
|
+ const date = dayjs(this.model.get('time'));
|
|
|
|
+ return this.model.get('from') === prev_model.get('from') &&
|
|
|
|
+ !this.model.isMeCommand() &&
|
|
!prev_model.isMeCommand() &&
|
|
!prev_model.isMeCommand() &&
|
|
- this.message_type !== 'info' &&
|
|
|
|
|
|
+ this.model.get('type') !== 'info' &&
|
|
prev_model.get('type') !== 'info' &&
|
|
prev_model.get('type') !== 'info' &&
|
|
date.isBefore(dayjs(prev_model.get('time')).add(10, 'minutes')) &&
|
|
date.isBefore(dayjs(prev_model.get('time')).add(10, 'minutes')) &&
|
|
- !!this.is_encrypted === !!prev_model.get('is_encrypted');
|
|
|
|
|
|
+ !!this.model.get('is_encrypted') === !!prev_model.get('is_encrypted');
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ isRetracted () {
|
|
|
|
+ return this.model.get('retracted') || this.model.get('moderated') === 'retracted';
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ hasMentions () {
|
|
|
|
+ const is_groupchat = this.model.get('type') === 'groupchat';
|
|
|
|
+ return is_groupchat && this.model.get('sender') === 'them' && this.chatbox.isUserMentioned(this.model);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ getOccupantAffiliation () {
|
|
|
|
+ return this.model.occupant?.get('affiliation');
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ getOccupantRole () {
|
|
|
|
+ return this.model.occupant?.get('role');
|
|
}
|
|
}
|
|
|
|
|
|
getExtraMessageClasses () {
|
|
getExtraMessageClasses () {
|
|
const extra_classes = [
|
|
const extra_classes = [
|
|
this.isFollowup() ? 'chat-msg--followup' : null,
|
|
this.isFollowup() ? 'chat-msg--followup' : null,
|
|
- this.is_delayed ? 'delayed' : null,
|
|
|
|
- this.is_me_message ? 'chat-msg--action' : null,
|
|
|
|
- this.is_retracted ? 'chat-msg--retracted' : null,
|
|
|
|
- this.message_type,
|
|
|
|
|
|
+ this.model.get('is_delayed') ? 'delayed' : null,
|
|
|
|
+ this.model.isMeCommand() ? 'chat-msg--action' : null,
|
|
|
|
+ this.isRetracted() ? 'chat-msg--retracted' : null,
|
|
|
|
+ this.model.get('type'),
|
|
this.shouldShowAvatar() ? 'chat-msg--with-avatar' : null,
|
|
this.shouldShowAvatar() ? 'chat-msg--with-avatar' : null,
|
|
].map(c => c);
|
|
].map(c => c);
|
|
|
|
|
|
- if (this.message_type === 'groupchat') {
|
|
|
|
- this.occupant_role && extra_classes.push(this.occupant_role);
|
|
|
|
- this.occupant_affiliation && extra_classes.push(this.occupant_affiliation);
|
|
|
|
- if (this.sender === 'them' && this.has_mentions) {
|
|
|
|
|
|
+ if (this.model.get('type') === 'groupchat') {
|
|
|
|
+ extra_classes.push(this.getOccupantRole() ?? '');
|
|
|
|
+ extra_classes.push(this.getOccupantAffiliation() ?? '');
|
|
|
|
+ if (this.model.get('sender') === 'them' && this.hasMentions()) {
|
|
extra_classes.push('mentioned');
|
|
extra_classes.push('mentioned');
|
|
}
|
|
}
|
|
}
|
|
}
|
|
- this.correcting && extra_classes.push('correcting');
|
|
|
|
|
|
+ this.model.get('correcting') && extra_classes.push('correcting');
|
|
return extra_classes.filter(c => c).join(" ");
|
|
return extra_classes.filter(c => c).join(" ");
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ getDerivedMessageProps () {
|
|
|
|
+ return {
|
|
|
|
+ 'has_mentions': this.hasMentions(),
|
|
|
|
+ 'hats': _converse.getHats(this.model),
|
|
|
|
+ 'is_first_unread': this.chatbox.get('first_unread_id') === this.model.get('id'),
|
|
|
|
+ 'is_me_message': this.model.isMeCommand(),
|
|
|
|
+ 'is_retracted': this.isRetracted(),
|
|
|
|
+ 'username': this.model.getDisplayName(),
|
|
|
|
+ 'should_show_avatar': this.shouldShowAvatar(),
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
getRetractionText () {
|
|
getRetractionText () {
|
|
- if (this.message_type === 'groupchat' && this.moderated_by) {
|
|
|
|
- const retracted_by_mod = this.moderated_by;
|
|
|
|
|
|
+ if (this.model.get('type') === 'groupchat' && this.model.get('moderated_by')) {
|
|
|
|
+ const retracted_by_mod = this.model.get('moderated_by');
|
|
const chatbox = this.model.collection.chatbox;
|
|
const chatbox = this.model.collection.chatbox;
|
|
if (!this.model.mod) {
|
|
if (!this.model.mod) {
|
|
this.model.mod =
|
|
this.model.mod =
|
|
@@ -216,60 +221,62 @@ export default class Message extends CustomElement {
|
|
}
|
|
}
|
|
|
|
|
|
renderRetraction () {
|
|
renderRetraction () {
|
|
- const retraction_text = this.is_retracted ? this.getRetractionText() : null;
|
|
|
|
|
|
+ const retraction_text = this.isRetracted() ? this.getRetractionText() : null;
|
|
return html`
|
|
return html`
|
|
<div>${retraction_text}</div>
|
|
<div>${retraction_text}</div>
|
|
- ${ this.moderation_reason ? html`<q class="chat-msg--retracted__reason">${this.moderation_reason}</q>` : '' }
|
|
|
|
|
|
+ ${ this.model.get('moderation_reason') ?
|
|
|
|
+ html`<q class="chat-msg--retracted__reason">${this.model.get('moderation_reason')}</q>` : '' }
|
|
`;
|
|
`;
|
|
}
|
|
}
|
|
|
|
|
|
renderMessageText () {
|
|
renderMessageText () {
|
|
const i18n_edited = __('This message has been edited');
|
|
const i18n_edited = __('This message has been edited');
|
|
const i18n_show = __('Show more');
|
|
const i18n_show = __('Show more');
|
|
- const is_groupchat_message = (this.message_type === 'groupchat');
|
|
|
|
|
|
+ const is_groupchat_message = (this.model.get('type') === 'groupchat');
|
|
const i18n_show_less = __('Show less');
|
|
const i18n_show_less = __('Show less');
|
|
|
|
|
|
const tpl_spoiler_hint = html`
|
|
const tpl_spoiler_hint = html`
|
|
<div class="chat-msg__spoiler-hint">
|
|
<div class="chat-msg__spoiler-hint">
|
|
- <span class="spoiler-hint">${this.spoiler_hint}</span>
|
|
|
|
|
|
+ <span class="spoiler-hint">${this.model.get('spoiler_hint')}</span>
|
|
<a class="badge badge-info spoiler-toggle" href="#" @click=${this.toggleSpoilerMessage}>
|
|
<a class="badge badge-info spoiler-toggle" href="#" @click=${this.toggleSpoilerMessage}>
|
|
- <i class="fa ${this.is_spoiler_visible ? 'fa-eye-slash' : 'fa-eye'}"></i>
|
|
|
|
- ${ this.is_spoiler_visible ? i18n_show_less : i18n_show }
|
|
|
|
|
|
+ <i class="fa ${this.model.get('is_spoiler_visible') ? 'fa-eye-slash' : 'fa-eye'}"></i>
|
|
|
|
+ ${ this.model.get('is_spoiler_visible') ? i18n_show_less : i18n_show }
|
|
</a>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
`;
|
|
`;
|
|
- const spoiler_classes = this.is_spoiler ? `spoiler ${this.is_spoiler_visible ? '' : 'hidden'}` : '';
|
|
|
|
|
|
+ const spoiler_classes = this.model.get('is_spoiler') ? `spoiler ${this.model.get('is_spoiler_visible') ? '' : 'hidden'}` : '';
|
|
|
|
+ const text = this.model.getMessageText();
|
|
return html`
|
|
return html`
|
|
- ${ this.is_spoiler ? tpl_spoiler_hint : '' }
|
|
|
|
- ${ this.subject ? html`<div class="chat-msg__subject">${this.subject}</div>` : '' }
|
|
|
|
|
|
+ ${ this.model.get('is_spoiler') ? tpl_spoiler_hint : '' }
|
|
|
|
+ ${ this.model.get('subject') ? html`<div class="chat-msg__subject">${this.model.get('subject')}</div>` : '' }
|
|
<span>
|
|
<span>
|
|
<converse-chat-message-body
|
|
<converse-chat-message-body
|
|
- class="chat-msg__text ${this.is_only_emojis ? 'chat-msg__text--larger' : ''} ${spoiler_classes}"
|
|
|
|
|
|
+ class="chat-msg__text ${this.model.get('is_only_emojis') ? 'chat-msg__text--larger' : ''} ${spoiler_classes}"
|
|
.model="${this.model}"
|
|
.model="${this.model}"
|
|
- ?is_me_message="${this.is_me_message}"
|
|
|
|
- ?is_only_emojis="${this.is_only_emojis}"
|
|
|
|
- ?is_spoiler="${this.is_spoiler}"
|
|
|
|
- ?is_spoiler_visible="${this.is_spoiler_visible}"
|
|
|
|
- text="${this.model.getMessageText()}"></converse-chat-message-body>
|
|
|
|
- ${ (this.received && !this.is_me_message && !is_groupchat_message) ? html`<span class="fa fa-check chat-msg__receipt"></span>` : '' }
|
|
|
|
- ${ (this.edited) ? html`<i title="${ i18n_edited }" class="fa fa-edit chat-msg__edit-modal" @click=${this.showMessageVersionsModal}></i>` : '' }
|
|
|
|
|
|
+ ?is_me_message="${this.model.isMeCommand()}"
|
|
|
|
+ ?is_only_emojis="${this.model.get('is_only_emojis')}"
|
|
|
|
+ ?is_spoiler="${this.model.get('is_spoiler')}"
|
|
|
|
+ ?is_spoiler_visible="${this.model.get('is_spoiler_visible')}"
|
|
|
|
+ text="${text}"></converse-chat-message-body>
|
|
|
|
+ ${ (this.model.get('received') && !this.model.isMeCommand() && !is_groupchat_message) ? html`<span class="fa fa-check chat-msg__receipt"></span>` : '' }
|
|
|
|
+ ${ (this.model.get('edited')) ? html`<i title="${ i18n_edited }" class="fa fa-edit chat-msg__edit-modal" @click=${this.showMessageVersionsModal}></i>` : '' }
|
|
</span>
|
|
</span>
|
|
- ${ this.oob_url ? html`<div class="chat-msg__media">${u.getOOBURLMarkup(_converse, this.oob_url)}</div>` : '' }
|
|
|
|
- <div class="chat-msg__error">${ this.error_text || this.error }</div>
|
|
|
|
|
|
+ ${ this.model.get('oob_url') ? html`<div class="chat-msg__media">${u.getOOBURLMarkup(_converse, this.model.get('oob_url'))}</div>` : '' }
|
|
|
|
+ <div class="chat-msg__error">${ this.model.get('error_text') || this.model.get('error') }</div>
|
|
`;
|
|
`;
|
|
}
|
|
}
|
|
|
|
|
|
renderAvatarByline () {
|
|
renderAvatarByline () {
|
|
return html`
|
|
return html`
|
|
- ${ this.hats.map(h => html`<span class="badge badge-secondary">${h.title}</span>`) }
|
|
|
|
- <time timestamp="${this.edited || this.time}" class="chat-msg__time">${this.pretty_time}</time>
|
|
|
|
|
|
+ ${ _converse.getHats(this.model).map(h => html`<span class="badge badge-secondary">${h.title}</span>`) }
|
|
|
|
+ <time timestamp="${this.model.get('edited') || this.model.get('time')}" class="chat-msg__time">${this.pretty_time}</time>
|
|
`;
|
|
`;
|
|
}
|
|
}
|
|
|
|
|
|
showUserModal (ev) {
|
|
showUserModal (ev) {
|
|
if (this.model.get('sender') === 'me') {
|
|
if (this.model.get('sender') === 'me') {
|
|
_converse.xmppstatusview.showProfileModal(ev);
|
|
_converse.xmppstatusview.showProfileModal(ev);
|
|
- } else if (this.message_type === 'groupchat') {
|
|
|
|
|
|
+ } else if (this.model.get('type') === 'groupchat') {
|
|
ev.preventDefault();
|
|
ev.preventDefault();
|
|
api.modal.show(OccupantModal, { 'model': this.model.occupant }, ev);
|
|
api.modal.show(OccupantModal, { 'model': this.model.occupant }, ev);
|
|
} else {
|
|
} else {
|