From 2641b1ee74e31423914cbc5cd751de6b66de26fa Mon Sep 17 00:00:00 2001 From: Johannes Loher Date: Fri, 5 Feb 2021 02:35:47 +0100 Subject: [PATCH] Update types --- package-lock.json | 2 +- src/module/actor/sheets/actor-sheet.ts | 3 +- src/module/ds4.ts | 9 ++-- src/module/item/item-sheet.ts | 3 +- src/module/rolls/check-factory.ts | 59 +++++++++++++------------- 5 files changed, 38 insertions(+), 38 deletions(-) diff --git a/package-lock.json b/package-lock.json index c4b848c..3ace79b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -3119,7 +3119,7 @@ } }, "foundry-vtt-types": { - "version": "github:League-of-Foundry-Developers/foundry-vtt-types#4890983e397a28026b0a38c4081fb284ff97020a", + "version": "github:League-of-Foundry-Developers/foundry-vtt-types#dc5ff5a9c75cda3f4999603221275ed8d7d9212c", "from": "github:League-of-Foundry-Developers/foundry-vtt-types#foundry-0.7.9", "dev": true, "requires": { diff --git a/src/module/actor/sheets/actor-sheet.ts b/src/module/actor/sheets/actor-sheet.ts index 61f01e0..470b8e3 100644 --- a/src/module/actor/sheets/actor-sheet.ts +++ b/src/module/actor/sheets/actor-sheet.ts @@ -1,3 +1,4 @@ +import { DS4 } from "../../config"; import { DS4Item } from "../../item/item"; import { DS4ItemData, ItemType } from "../../item/item-data"; import { DS4Actor } from "../actor"; @@ -55,7 +56,7 @@ export class DS4ActorSheet extends ActorSheet { const data = { ...super.getData(), // Add the localization config to the data: - config: CONFIG.DS4, + config: DS4, // Add the items explicitly sorted by type to the data: itemsByType: this.actor.itemTypes, }; diff --git a/src/module/ds4.ts b/src/module/ds4.ts index 988f5b8..b64491a 100644 --- a/src/module/ds4.ts +++ b/src/module/ds4.ts @@ -35,8 +35,7 @@ Hooks.once("init", async function () { // Configure Dice CONFIG.Dice.types = [Die, DS4Check]; // TODO(types) fix upstream CONFIG.Dice.terms = { - c: Coin, - d: Die, + ...CONFIG.Dice.terms, s: DS4Check, }; @@ -88,12 +87,12 @@ Hooks.once("setup", function () { const noSort = ["attributes", "traits", "combatValues", "creatureSizeCategories"]; // Localize and sort CONFIG objects - for (const o of Object.keys(CONFIG.DS4.i18n)) { - const localized = Object.entries(CONFIG.DS4.i18n[o]).map((e) => { + for (const o of Object.keys(DS4.i18n)) { + const localized = Object.entries(DS4.i18n[o]).map((e) => { return [e[0], game.i18n.localize(e[1] as string)]; }); if (!noSort.includes(o)) localized.sort((a, b) => a[1].localeCompare(b[1])); - CONFIG.DS4.i18n[o] = localized.reduce((obj, e) => { + DS4.i18n[o] = localized.reduce((obj, e) => { obj[e[0]] = e[1]; return obj; }, {}); diff --git a/src/module/item/item-sheet.ts b/src/module/item/item-sheet.ts index c4e5fc3..970cefa 100644 --- a/src/module/item/item-sheet.ts +++ b/src/module/item/item-sheet.ts @@ -1,3 +1,4 @@ +import { DS4 } from "../config"; import { DS4Item } from "./item"; import { isDS4ItemDataTypePhysical } from "./item-data"; @@ -47,7 +48,7 @@ export class DS4ItemSheet extends ItemSheet { getData(): ItemSheet.Data { const data = { ...super.getData(), - config: CONFIG.DS4, + config: DS4, isOwned: this.item.isOwned, actor: this.item.actor, isPhysical: isDS4ItemDataTypePhysical(this.item.data.data), diff --git a/src/module/rolls/check-factory.ts b/src/module/rolls/check-factory.ts index af8e8fa..5c1eb7c 100644 --- a/src/module/rolls/check-factory.ts +++ b/src/module/rolls/check-factory.ts @@ -34,7 +34,7 @@ class CheckFactory { private checkOptions: DS4CheckFactoryOptions; async execute(): Promise { - const rollCls: typeof Roll = CONFIG.Dice.rolls[0]; + const rollCls = CONFIG.Dice.rolls[0]; const formula = [ "ds", @@ -131,38 +131,37 @@ async function askGmModifier( const renderedHtml = await renderTemplate(usedTemplate, templateData); const dialogPromise = new Promise((resolve) => { - new Dialog({ - title: usedTitle, - close: () => { - // Don't do anything - }, - content: renderedHtml, - buttons: { - ok: { - label: game.i18n.localize("DS4.RollDialogOkButton"), - callback: (html: HTMLElement | JQuery) => { - if (!("jquery" in html)) { - throw new Error( - game.i18n.format("DS4.ErrorUnexpectedHtmlType", { - exType: "JQuery", - realType: "HTMLElement", - }), - ); - } else { - const innerForm = html[0].querySelector("form"); - resolve(innerForm); - } - }, - }, - cancel: { - label: game.i18n.localize("DS4.RollDialogCancelButton"), - callback: () => { - // Don't do anything + new Dialog( + { + title: usedTitle, + content: renderedHtml, + buttons: { + ok: { + label: game.i18n.localize("DS4.RollDialogOkButton"), + callback: (html) => { + if (!("jquery" in html)) { + throw new Error( + game.i18n.format("DS4.ErrorUnexpectedHtmlType", { + exType: "JQuery", + realType: "HTMLElement", + }), + ); + } else { + const innerForm = html[0].querySelector("form"); + resolve(innerForm); + } + }, + icon: "", // TODO(types): Remove once https://github.com/League-of-Foundry-Developers/foundry-vtt-types/issues/266 is fixed + }, + cancel: { + label: game.i18n.localize("DS4.RollDialogCancelButton"), + icon: "", // TODO(types): Remove once https://github.com/League-of-Foundry-Developers/foundry-vtt-types/issues/266 is fixed }, }, + default: "ok", }, - default: "ok", - }).render(true); + {}, // TODO(types): Remove once https://github.com/League-of-Foundry-Developers/foundry-vtt-types/issues/267 is resolved + ).render(true); }); const dialogForm = await dialogPromise; return parseDialogFormData(dialogForm);