Message si le journal est inaccessible

This commit is contained in:
Vincent Vandemeulebrouck 2023-01-10 22:45:23 +01:00
parent 03f84eb3f7
commit f9fd8a1e24
2 changed files with 14 additions and 4 deletions

View File

@ -54,7 +54,6 @@ export class DialogChronologie extends Dialog {
title: `Chronologie - ${timeData.jourDuMois} ${timeData.mois.label} - Heure ${timeData.heure.label}`,
content: html,
buttons: {
ajout: { label: "Ajouter", callback: it => this.ajouter() },
}
};
super(conf, options);
@ -68,6 +67,7 @@ export class DialogChronologie extends Dialog {
this.html.find("a.chronologie-preset-show").click(event => this.showChronologiePreset(true));
this.html.find("a.chronologie-preset-hide").click(event => this.showChronologiePreset(false));
this.html.find("button.chronologie-ajouter").click(event => this.ajouter());
}
showChronologiePreset(showPreset) {
@ -79,9 +79,16 @@ export class DialogChronologie extends Dialog {
async ajouter() {
await this.forceValidation();
const { journalId, journalEntry } = this.findJournal();
// ajouter à la page ou créer une page
this.addContentToJournal(journalEntry, await this.prepareChronologieEntry());
this.storeLatestUsedJournalEntry(journalId);
if (journalEntry?.canUserModify(game.user)) {
// ajouter à la page ou créer une page
this.addContentToJournal(journalEntry, await this.prepareChronologieEntry());
this.storeLatestUsedJournalEntry(journalId);
this.close();
}
else {
const journal = this.html.find("form.rdddialogchrono select[name='journalId']").val();
ui.notifications.warn(`Le journal ${journal} n'est pas accessible`);
}
}
async forceValidation() {

View File

@ -45,5 +45,8 @@
</label>
<textarea autocomplete="off" title="Information" name="information" autofocus>{{information}}</textarea>
</div>
<div class="form-group">
<button class="chronologie-ajouter">Ajouter au journal</button>
</div>
</div>
</form>