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";
|
|
|
|
|
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() {
|
2020-11-03 13:44:09 +00:00
|
|
|
|
2021-05-25 10:27:40 +00:00
|
|
|
return foundry.utils.mergeObject(super.defaultOptions, {
|
2020-04-21 16:06:33 +00:00
|
|
|
classes: ["blades-in-the-dark", "sheet", "item"],
|
2021-03-04 06:44:24 +00:00
|
|
|
width: 560,
|
2020-11-03 13:44:09 +00:00
|
|
|
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() {
|
2020-04-22 07:57:36 +00:00
|
|
|
const path = "systems/blades-in-the-dark/templates/items";
|
2020-05-04 16:28:55 +00:00
|
|
|
let simple_item_types = ["background", "heritage", "vice", "crew_reputation"];
|
2020-04-23 16:11:04 +00:00
|
|
|
let template_name = `${this.item.data.type}`;
|
|
|
|
|
|
|
|
if (simple_item_types.indexOf(this.item.data.type) >= 0) {
|
|
|
|
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"))
|
|
|
|
onManageActiveEffect(ev, this.item)
|
|
|
|
});
|
2020-04-17 21:23:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* -------------------------------------------- */
|
2021-04-22 11:27:10 +00:00
|
|
|
|
|
|
|
/** @override */
|
|
|
|
getData() {
|
|
|
|
const data = super.getData();
|
2021-06-10 22:57:01 +00:00
|
|
|
data.isGM = game.user.isGM;
|
2021-05-25 10:27:40 +00:00
|
|
|
data.editable = this.options.editable;
|
|
|
|
const itemData = data.data;
|
|
|
|
data.actor = itemData;
|
|
|
|
data.data = itemData.data;
|
2021-06-10 22:57:01 +00:00
|
|
|
|
|
|
|
// Prepare Active Effects
|
|
|
|
data.effects = prepareActiveEffectCategories(this.item.effects);
|
|
|
|
|
2021-04-22 11:27:10 +00:00
|
|
|
return data;
|
|
|
|
}
|
2020-04-17 21:23:57 +00:00
|
|
|
}
|