mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 19:51:08 +01:00
* Restructured all the files * Moved build/daggerheart.js to ./daggerheart.js. Changed rollup to use the css file instead of the less * Restored build/ folder * Mvoed config out form under application * Moved roll.mjs to module/dice and renamed to dhRolls.mjs * Update module/canvas/placeables/_module.mjs Co-authored-by: joaquinpereyra98 <24190917+joaquinpereyra98@users.noreply.github.com> * Le massive export update * Removed unncessary import --------- Co-authored-by: joaquinpereyra98 <24190917+joaquinpereyra98@users.noreply.github.com>
40 lines
1.4 KiB
JavaScript
40 lines
1.4 KiB
JavaScript
export default class DhpChatMessage extends foundry.documents.ChatMessage {
|
|
async renderHTML() {
|
|
if (this.system.messageTemplate)
|
|
this.content = await foundry.applications.handlebars.renderTemplate(
|
|
this.system.messageTemplate,
|
|
this.system
|
|
);
|
|
|
|
/* We can change to fully implementing the renderHTML function if needed, instead of augmenting it. */
|
|
const html = await super.renderHTML();
|
|
this.applyPermission(html);
|
|
|
|
if (this.type === 'dualityRoll') {
|
|
html.classList.add('duality');
|
|
switch (this.system.roll.result.duality) {
|
|
case 1:
|
|
html.classList.add('hope');
|
|
break;
|
|
case -1:
|
|
html.classList.add('fear');
|
|
break;
|
|
default:
|
|
html.classList.add('critical');
|
|
break;
|
|
}
|
|
}
|
|
|
|
return html;
|
|
}
|
|
|
|
applyPermission(html) {
|
|
const elements = html.querySelectorAll('[data-perm-id]');
|
|
elements.forEach(e => {
|
|
const uuid = e.dataset.permId,
|
|
document = fromUuidSync(uuid);
|
|
e.setAttribute('data-view-perm', document.testUserPermission(game.user, 'OBSERVER'));
|
|
e.setAttribute('data-use-perm', document.testUserPermission(game.user, 'OWNER'));
|
|
});
|
|
}
|
|
}
|