2020-12-29 17:08:10 -08:00
|
|
|
import { IgniteElement } from "../ignite-html/ignite-element.js";
|
|
|
|
import { IgniteCallback } from "../ignite-html/ignite-html.js";
|
|
|
|
import { IgniteTemplate, slot, div, html } from "../ignite-html/ignite-template.js";
|
|
|
|
|
2021-08-11 10:43:16 -07:00
|
|
|
/**
|
|
|
|
* Makes this IgniteTemplate a tab that will become active or inactive based on the state of the tab.
|
|
|
|
* @param {String} name The name of the tab.
|
|
|
|
* @param {String} group The tab group to put this tab under, by default this is null.
|
|
|
|
* @param {Boolean} active Whether or not this tab is active by default.
|
|
|
|
* @returns {IgniteTemplate} This ignite template.
|
|
|
|
*/
|
2021-08-24 15:27:14 -07:00
|
|
|
function tab(name, group = null, active = false) {
|
2020-12-29 17:08:10 -08:00
|
|
|
//Set the starting class based on whether or not the tab is active.
|
|
|
|
if (active) {
|
|
|
|
this.class("tab-active");
|
|
|
|
} else {
|
|
|
|
this.class("tab-inactive");
|
|
|
|
}
|
|
|
|
|
|
|
|
//What we do is create an IgniteCallback that will get called when
|
|
|
|
//the tabchange event is raised. Upon disconnecting the callback we remove
|
|
|
|
//the event listener.
|
2021-08-11 10:43:16 -07:00
|
|
|
var callback = new IgniteCallback(event => {
|
2021-05-04 14:24:40 -07:00
|
|
|
if (this.element) {
|
2021-08-11 10:43:16 -07:00
|
|
|
if (event.name == name && event.group == group) {
|
2021-05-04 14:24:40 -07:00
|
|
|
this.element.classList.remove("tab-inactive");
|
2020-12-29 17:08:10 -08:00
|
|
|
|
2021-05-04 14:24:40 -07:00
|
|
|
if (!this.element.classList.contains("tab-active")) {
|
|
|
|
this.element.classList.add("tab-active");
|
|
|
|
}
|
2021-08-11 10:43:16 -07:00
|
|
|
} else if (event.group == group) {
|
2021-05-04 14:24:40 -07:00
|
|
|
this.element.classList.remove("tab-active");
|
2020-12-29 17:08:10 -08:00
|
|
|
|
2021-05-04 14:24:40 -07:00
|
|
|
if (!this.element.classList.contains("tab-inactive")) {
|
|
|
|
this.element.classList.add("tab-inactive");
|
|
|
|
}
|
2020-12-29 17:08:10 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}, () => {
|
|
|
|
window.removeEventListener("tabchange", callback.callback);
|
|
|
|
});
|
|
|
|
|
|
|
|
//Register our callback to the tabchange event.
|
|
|
|
window.addEventListener("tabchange", callback.callback);
|
|
|
|
|
|
|
|
//Add this callback to our template so that upon deconstruction our callback is destroyed correctly.
|
|
|
|
this._callbacks.push(callback);
|
|
|
|
|
|
|
|
return this;
|
2021-08-24 15:27:14 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
IgniteTemplate.prototype.tab = tab;
|
2020-12-29 17:08:10 -08:00
|
|
|
|
|
|
|
class TabLink extends IgniteElement {
|
|
|
|
constructor() {
|
|
|
|
super();
|
|
|
|
|
|
|
|
this.tabChangeListener = e => this.update(e);
|
|
|
|
window.addEventListener("tabchange", this.tabChangeListener);
|
|
|
|
}
|
|
|
|
|
|
|
|
get properties() {
|
|
|
|
return {
|
|
|
|
active: false,
|
2021-08-11 10:43:16 -07:00
|
|
|
name: null,
|
|
|
|
group: null,
|
|
|
|
secondary: null
|
2020-12-29 17:08:10 -08:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return this.template
|
|
|
|
.onClick((event) => this.onClick(event))
|
|
|
|
.class(this.active, value => value ? "active" : null)
|
|
|
|
.child(new slot(this).class(this.active, value => value ? "active" : null));
|
|
|
|
}
|
|
|
|
|
|
|
|
update(event) {
|
2021-08-11 10:43:16 -07:00
|
|
|
//If the name and group match, set this tab link to active.
|
|
|
|
if (this.name == event.name && this.group == event.group) {
|
2020-12-29 17:08:10 -08:00
|
|
|
this.active = true;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-08-11 10:43:16 -07:00
|
|
|
//See if this event matched any of the secondary tabs.
|
|
|
|
for(var i = 0; i < this.secondary.length; i++) {
|
|
|
|
if (this.secondary[i] == event.name && this.group == event.group) {
|
2020-12-29 17:08:10 -08:00
|
|
|
this.active = true;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-11 10:43:16 -07:00
|
|
|
//Otherwise set this tab to inactive if it's active and the group matches.
|
|
|
|
if (event.group == this.group && this.active) {
|
|
|
|
this.active = false;
|
|
|
|
}
|
2020-12-29 17:08:10 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
onClick(event) {
|
|
|
|
event.preventDefault();
|
|
|
|
|
|
|
|
var changeEvent = new Event("tabchange");
|
2021-08-11 10:43:16 -07:00
|
|
|
changeEvent.name = this.name;
|
|
|
|
changeEvent.group = this.group;
|
2020-12-29 17:08:10 -08:00
|
|
|
|
|
|
|
window.dispatchEvent(changeEvent);
|
|
|
|
}
|
|
|
|
|
|
|
|
cleanup() {
|
|
|
|
window.removeEventListener("tabchange", this.tabChangeListener);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class TabLinkTemplate extends IgniteTemplate {
|
|
|
|
/**
|
|
|
|
* Initializes a new tab link template.
|
2021-08-11 10:43:16 -07:00
|
|
|
* @param {String} name The name of the tab this link is for and will set active to.
|
|
|
|
* @param {String} group The name of the group this link belongs to, this is optional.
|
|
|
|
* @param {String|String[]} secondary Optional tabs that also set this link to active if active.
|
2020-12-29 17:08:10 -08:00
|
|
|
* @param {...any} elements Elements to render within the link.
|
|
|
|
*/
|
2021-08-11 10:43:16 -07:00
|
|
|
constructor(name, group, secondary, ...elements) {
|
2020-12-29 17:08:10 -08:00
|
|
|
super("tab-link", elements);
|
|
|
|
|
2021-08-11 10:43:16 -07:00
|
|
|
//If the secondary tabs is null, set it to an empty array.
|
|
|
|
if (!secondary) {
|
|
|
|
secondary = [];
|
2020-12-29 17:08:10 -08:00
|
|
|
}
|
|
|
|
|
2021-08-11 10:43:16 -07:00
|
|
|
//If the secondary tabs is not an array then wrap it in one.
|
|
|
|
if (!Array.isArray(secondary)) {
|
|
|
|
secondary = [secondary];
|
2020-12-29 17:08:10 -08:00
|
|
|
}
|
|
|
|
|
2021-08-11 10:43:16 -07:00
|
|
|
this.property("name", name);
|
|
|
|
this.property("group", group);
|
|
|
|
this.property("secondary", secondary);
|
2020-12-29 17:08:10 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
customElements.define("tab-link", TabLink);
|
|
|
|
|
|
|
|
export {
|
|
|
|
TabLinkTemplate as TabLink
|
|
|
|
}
|