"use strict"; const events = require("../events.js"); const views = require("../util/views.js"); const misc = require("../util/misc.js"); const TagSummaryView = require("./tag_summary_view.js"); const TagEditView = require("./tag_edit_view.js"); const TagMergeView = require("./tag_merge_view.js"); const TagMetricView = require("./tag_metric_view.js"); const TagDeleteView = require("./tag_delete_view.js"); const EmptyView = require("../views/empty_view.js"); const template = views.getTemplate("tag"); class TagView extends events.EventTarget { constructor(ctx) { super(); this._ctx = ctx; ctx.tag.addEventListener("change", (e) => this._evtChange(e)); ctx.section = ctx.section || "summary"; ctx.getPrettyName = misc.getPrettyName; this._hostNode = document.getElementById("content-holder"); this._install(); } _install() { const ctx = this._ctx; views.replaceContent(this._hostNode, template(ctx)); for (let item of this._hostNode.querySelectorAll("[data-name]")) { item.classList.toggle( "active", item.getAttribute("data-name") === ctx.section ); if (item.getAttribute("data-name") === ctx.section) { item.parentNode.scrollLeft = item.getBoundingClientRect().left - item.parentNode.getBoundingClientRect().left; } } ctx.hostNode = this._hostNode.querySelector(".tag-content-holder"); if (ctx.section === "edit") { if (!this._ctx.canEditAnything) { this._view = new EmptyView(); this._view.showError( "You don't have privileges to edit tags." ); } else { this._view = new TagEditView(ctx); events.proxyEvent(this._view, this, "submit"); } } else if (ctx.section === "metric") { const metricExists = this._ctx.tag.metric; if (!metricExists && !this._ctx.canCreateMetric) { this._view = new EmptyView(); this._view.showError( "You don\"t have privileges to create metrics."); } else { this._view = new TagMetricView(ctx); events.proxyEvent(this._view, this, "submit", "metricUpdate"); events.proxyEvent(this._view, this, "delete", "metricDelete"); } } else if (ctx.section === "merge") { if (!this._ctx.canMerge) { this._view = new EmptyView(); this._view.showError( "You don't have privileges to merge tags." ); } else { this._view = new TagMergeView(ctx); events.proxyEvent(this._view, this, "submit", "merge"); } } else if (ctx.section === "delete") { if (!this._ctx.canDelete) { this._view = new EmptyView(); this._view.showError( "You don't have privileges to delete tags." ); } else { this._view = new TagDeleteView(ctx); events.proxyEvent(this._view, this, "submit", "delete"); } } else { this._view = new TagSummaryView(ctx); } events.proxyEvent(this._view, this, "change"); views.syncScrollPosition(); } clearMessages() { this._view.clearMessages(); } enableForm() { this._view.enableForm(); } disableForm() { this._view.disableForm(); } showSuccess(message) { this._view.showSuccess(message); } showError(message) { this._view.showError(message); } _evtChange(e) { this._ctx.tag = e.detail.tag; this._install(this._ctx); } } module.exports = TagView;