export class DialogRepos extends Dialog {

  static async create(actor) {
    const html = await renderTemplate("systems/foundryvtt-reve-de-dragon/templates/dialog-repos.html", actor);
    const dialog = new DialogRepos(html, actor);
    dialog.render(true);
  }

  constructor(html, actor) {
    let options = { classes: ["DialogCreateSigneDraconiqueActorsActors"], width: 400, height: 'fit-content', 'z-index': 99999 };
    let conf = {
      title: "Se reposer",
      content: html,
      default: "repos",
      buttons: {
        "repos": { label: "Se reposer", callback: async it => { this.repos(); } }
      }
    };
    super(conf, options);
    this.actor = actor;
  }
  activateListeners(html) {
    super.activateListeners(html);
    this.html = html;
  }
  /* -------------------------------------------- */

  async repos() {
    await this.html.find("[name='nb-heures']").change();
    await this.html.find("[name='nb-jours']").change();
    const selection = await this.html.find("[name='repos']:checked").val();
    const nbHeures = Number.parseInt(await this.html.find("[name='nb-heures']").val());
    const nbJours = Number.parseInt(await this.html.find("[name='nb-jours']").val());
    console.log("ACTOR", this.actor)
    switch (selection) {
      case "sieste": {
        await this.actor.dormir(nbHeures);
        return;
      }
      case "nuit": {
        let heuresDormies = await this.actor.dormir(nbHeures);
        if (heuresDormies == nbHeures) {
          await this.actor.dormirChateauDormant();
        }
        return;
      }
      case "chateau-dormant":
        await this.actor.dormirChateauDormant();
        return;
      case "gris-reve": {
        await this.actor.grisReve(nbJours);
        return;
      }
    }
  }
}