import { t } from "../services/i18n.js";
import NoteContextAwareWidget from "./note_context_aware_widget.js";
import server from "../services/server.js";
import fileWatcher from "../services/file_watcher.js";
import dayjs from "dayjs";
import type { EventData } from "../components/app_context.js";
import type FNote from "../entities/fnote.js";
const TPL = /*html*/`
`;
export default class WatchedFileUpdateStatusWidget extends NoteContextAwareWidget {
    private $filePath!: JQuery;
    private $fileLastModified!: JQuery;
    private $fileUploadButton!: JQuery;
    private $ignoreThisChangeButton!: JQuery;
    isEnabled() {
        const { entityType, entityId } = this.getEntity();
        return super.isEnabled()
            && !!entityType
            && !!entityId
            && !!fileWatcher.getFileModificationStatus(entityType, entityId);
    }
    doRender() {
        this.$widget = $(TPL);
        this.$filePath = this.$widget.find(".file-path");
        this.$fileLastModified = this.$widget.find(".file-last-modified");
        this.$fileUploadButton = this.$widget.find(".file-upload-button");
        this.$fileUploadButton.on("click", async () => {
            const { entityType, entityId } = this.getEntity();
            await server.post(`${entityType}/${entityId}/upload-modified-file`, {
                filePath: this.$filePath.text()
            });
            if (entityType && entityId) {
                fileWatcher.fileModificationUploaded(entityType, entityId);
            }
            this.refresh();
        });
        this.$ignoreThisChangeButton = this.$widget.find(".ignore-this-change-button");
        this.$ignoreThisChangeButton.on("click", () => {
            const { entityType, entityId } = this.getEntity();
            if (entityType && entityId) {
                fileWatcher.ignoreModification(entityType, entityId);
            }
            this.refresh();
        });
    }
    async refreshWithNote(note: FNote) {
        const { entityType, entityId } = this.getEntity();
        if (!entityType || !entityId) {
            return;
        }
        const status = fileWatcher.getFileModificationStatus(entityType, entityId);
        this.$filePath.text(status.filePath);
        this.$fileLastModified.text(dayjs.unix(status.lastModifiedMs / 1000).format("HH:mm:ss"));
    }
    getEntity() {
        if (!this.noteContext) {
            return {};
        }
        const { viewScope } = this.noteContext;
        if (viewScope?.viewMode === "attachments" && viewScope.attachmentId) {
            return {
                entityType: "attachments",
                entityId: viewScope.attachmentId
            };
        } else {
            return {
                entityType: "notes",
                entityId: this.noteId
            };
        }
    }
    openedFileUpdatedEvent(data: EventData<"openedFileUpdated">) {
        console.log(data);
        const { entityType, entityId } = this.getEntity();
        if (data.entityType === entityType && data.entityId === entityId) {
            this.refresh();
        }
    }
}