mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 03:31:07 +01:00
[Feature] 942 - Limited Sheet Views (#1090)
* Added stumps for all limited actor views * Added description to adversary and environment * style limited sheets * Limited views are no longer resizable * . * Update styles/less/sheets/actors/actor-sheet-shared.less Co-authored-by: Nikhil Nagarajan <potter.nikhil@gmail.com> --------- Co-authored-by: moliloo <dev.murilobrito@gmail.com> Co-authored-by: Nikhil Nagarajan <potter.nikhil@gmail.com>
This commit is contained in:
parent
ce3e2a804c
commit
ba84a75bd0
11 changed files with 479 additions and 12 deletions
|
|
@ -47,6 +47,12 @@ export default class DHBaseActorSheet extends DHApplicationMixin(ActorSheetV2) {
|
|||
return (this.#settingSheet ??= SheetClass ? new SheetClass({ document: this.document }) : null);
|
||||
}
|
||||
|
||||
get isVisible() {
|
||||
const viewPermission = this.document.testUserPermission(game.user, this.options.viewPermission);
|
||||
const limitedOnly = this.document.testUserPermission(game.user, this.options.viewPermission, { exact: true });
|
||||
return limitedOnly ? this.document.system.metadata.hasLimitedView : viewPermission;
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
/* Prepare Context */
|
||||
/* -------------------------------------------- */
|
||||
|
|
@ -72,6 +78,31 @@ export default class DHBaseActorSheet extends DHApplicationMixin(ActorSheetV2) {
|
|||
return context;
|
||||
}
|
||||
|
||||
_configureRenderParts(options) {
|
||||
const parts = super._configureRenderParts(options);
|
||||
if (!this.document.system.metadata.hasLimitedView) return parts;
|
||||
|
||||
if (this.document.testUserPermission(game.user, 'LIMITED', { exact: true })) return { limited: parts.limited };
|
||||
|
||||
return Object.keys(parts).reduce((acc, key) => {
|
||||
if (key !== 'limited') acc[key] = parts[key];
|
||||
|
||||
return acc;
|
||||
}, {});
|
||||
}
|
||||
|
||||
/** @inheritDoc */
|
||||
async _onRender(context, options) {
|
||||
await super._onRender(context, options);
|
||||
|
||||
if (
|
||||
this.document.system.metadata.hasLimitedView &&
|
||||
this.document.testUserPermission(game.user, 'LIMITED', { exact: true })
|
||||
) {
|
||||
this.element.classList = `${this.element.classList} limited`;
|
||||
}
|
||||
}
|
||||
|
||||
/**@inheritdoc */
|
||||
_attachPartListeners(partId, htmlElement, options) {
|
||||
super._attachPartListeners(partId, htmlElement, options);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue