53 lines
1.5 KiB
JavaScript
53 lines
1.5 KiB
JavaScript
import PrismRPGItemSheet from "./base-item-sheet.mjs"
|
|
|
|
export default class PrismRPGShieldSheet extends PrismRPGItemSheet {
|
|
/** @override */
|
|
static DEFAULT_OPTIONS = {
|
|
classes: ["shield"],
|
|
position: {
|
|
width: 620,
|
|
},
|
|
window: {
|
|
contentClasses: ["shield-content"],
|
|
},
|
|
}
|
|
|
|
/** @override */
|
|
static PARTS = {
|
|
main: {
|
|
template: "systems/fvtt-prism-rpg/templates/shield.hbs",
|
|
},
|
|
}
|
|
|
|
/** @override */
|
|
tabGroups = {
|
|
primary: "details",
|
|
}
|
|
|
|
/**
|
|
* Prepare an array of form header tabs.
|
|
* @returns {Record<string, Partial<ApplicationTab>>}
|
|
*/
|
|
#getTabs() {
|
|
const tabs = {
|
|
details: { id: "details", group: "primary", label: "PRISMRPG.Label.details" },
|
|
description: { id: "description", group: "primary", label: "PRISMRPG.Label.description" },
|
|
effects: { id: "effects", group: "primary", label: "PRISMRPG.Label.effects" },
|
|
}
|
|
for (const v of Object.values(tabs)) {
|
|
v.active = this.tabGroups[v.group] === v.id
|
|
v.cssClass = v.active ? "active" : ""
|
|
}
|
|
return tabs
|
|
}
|
|
|
|
/** @override */
|
|
async _prepareContext() {
|
|
const context = await super._prepareContext()
|
|
context.tabs = this.#getTabs()
|
|
context.enrichedDescription = await foundry.applications.ux.TextEditor.implementation.enrichHTML(this.document.system.description, { async: true })
|
|
context.enrichedBlockAugmentDescription = await foundry.applications.ux.TextEditor.implementation.enrichHTML(this.document.system.blockAugmentDescription, { async: true })
|
|
return context
|
|
}
|
|
}
|