63770790b9
Arrêter d'utiliser le jQuery $(selector) qui cause des effets de bord si plusieurs élements de la page (ie: foundry) correspondent au selector. Stocker le html dans les Sheet/Dialogs lors de l'appel activateListeners afin de pouvoir s'y référer ensuite. Utiliser this.html.find pour chercher dans le html de la fenêtre courante. Eliminer les référence par id html car l'id est unique (donc ne marche pas en multi-fenêtres)
45 lines
1.3 KiB
JavaScript
45 lines
1.3 KiB
JavaScript
import { Misc } from "./misc.js";
|
|
|
|
export class DialogSplitItem extends Dialog {
|
|
|
|
static async create(item, callback) {
|
|
const splitData = {
|
|
item: item,
|
|
choix: { quantite: 1, max: item.system.quantite - 1 }
|
|
};
|
|
const html = await renderTemplate(`systems/foundryvtt-reve-de-dragon/templates/dialog-item-split.html`, splitData);
|
|
return new DialogSplitItem(item, splitData, html, callback)
|
|
}
|
|
|
|
constructor(item, splitData, html, callback) {
|
|
let options = { classes: ["dialogsplit"], width: 300, height: 160, 'z-index': 99999 };
|
|
let conf = {
|
|
title: "Séparer en deux",
|
|
content: html,
|
|
default: "separer",
|
|
buttons: {
|
|
"separer": { label: "Séparer", callback: it => this.onSplit() }
|
|
}
|
|
};
|
|
super(conf, options);
|
|
|
|
this.callback = callback;
|
|
this.item = item;
|
|
this.splitData = splitData;
|
|
}
|
|
|
|
activateListeners(html) {
|
|
super.activateListeners(html);
|
|
this.html = html;
|
|
this.html.find(".choix-quantite").change(event => {
|
|
this.splitData.choix.quantite = Number(event.currentTarget.value);
|
|
});
|
|
}
|
|
|
|
/* -------------------------------------------- */
|
|
async onSplit() {
|
|
await this.html.find(".choix-quantite").change();
|
|
this.callback(this.item, this.splitData.choix.quantite);
|
|
}
|
|
|
|
} |