This repository has been archived on 2024-10-22. You can view files and clone it, but cannot push or open issues or pull requests.
foundryvtt-beam-saber/module/blades-item-sheet.js

70 lines
2 KiB
JavaScript
Raw Permalink Normal View History

2020-04-17 21:23:57 +00:00
/**
2020-04-21 16:06:33 +00:00
* Extend the basic ItemSheet
2020-04-17 21:23:57 +00:00
* @extends {ItemSheet}
*/
2021-06-10 22:57:01 +00:00
import {onManageActiveEffect, prepareActiveEffectCategories} from "./effects.js";
import { BladesActiveEffect } from "./blades-active-effect.js";
2021-06-10 22:57:01 +00:00
2020-04-21 16:06:33 +00:00
export class BladesItemSheet extends ItemSheet {
2020-04-17 21:23:57 +00:00
/** @override */
static get defaultOptions() {
return foundry.utils.mergeObject(super.defaultOptions, {
classes: ["beam-saber", "sheet", "item"],
width: 560,
height: 'auto',
2020-04-17 21:23:57 +00:00
tabs: [{navSelector: ".sheet-tabs", contentSelector: ".sheet-body", initial: "description"}]
});
}
/* -------------------------------------------- */
2020-04-21 16:06:33 +00:00
/** @override */
get template() {
const path = "systems/beam-saber/templates/items";
let simple_item_types = ["background", "heritage", "vice", "crew_reputation"];
2022-09-03 15:44:26 +00:00
let template_name = `${this.item.type}`;
2020-04-23 16:11:04 +00:00
2022-09-03 15:44:26 +00:00
if (simple_item_types.indexOf(this.item.type) >= 0) {
2020-04-23 16:11:04 +00:00
template_name = "simple";
}
return `${path}/${template_name}.html`;
2020-04-21 16:06:33 +00:00
}
/* -------------------------------------------- */
2020-04-17 21:23:57 +00:00
/** @override */
activateListeners(html) {
super.activateListeners(html);
// Everything below here is only needed if the sheet is editable
if (!this.options.editable) return;
2021-06-10 22:57:01 +00:00
html.find(".effect-control").click(ev => {
if ( this.item.isOwned ) return ui.notifications.warn(game.i18n.localize("BITD.EffectWarning"))
BladesActiveEffect.onManageActiveEffect(ev, this.item)
2021-06-10 22:57:01 +00:00
});
2020-04-17 21:23:57 +00:00
}
/* -------------------------------------------- */
2021-04-22 11:27:10 +00:00
/** @override */
2022-09-03 15:44:26 +00:00
async getData(options) {
const superData = super.getData( options );
const sheetData = superData.data;
sheetData.isGM = game.user.isGM;
sheetData.owner = superData.owner;
sheetData.editable = superData.editable;
2021-06-10 22:57:01 +00:00
// Prepare Active Effects
2022-09-03 15:44:26 +00:00
sheetData.effects = prepareActiveEffectCategories(this.document.effects);
sheetData.system.description = await TextEditor.enrichHTML(sheetData.system.description, {secrets: sheetData.owner, async: true});
2021-06-10 22:57:01 +00:00
2022-09-03 15:44:26 +00:00
return sheetData;
2021-04-22 11:27:10 +00:00
}
2020-04-17 21:23:57 +00:00
}