2018-12-08 18:34:06 -05:00
|
|
|
|
|
|
|
class TriLayout {
|
|
|
|
|
|
|
|
constructor(elem) {
|
|
|
|
this.elem = elem;
|
|
|
|
|
|
|
|
this.lastLayoutType = 'none';
|
|
|
|
this.onDestroy = null;
|
2019-04-13 12:36:27 -04:00
|
|
|
this.scrollCache = {
|
|
|
|
'content': 0,
|
|
|
|
'info': 0,
|
|
|
|
};
|
|
|
|
this.lastTabShown = 'content';
|
2018-12-08 18:34:06 -05:00
|
|
|
|
2019-04-13 12:36:27 -04:00
|
|
|
// Bind any listeners
|
|
|
|
this.mobileTabClick = this.mobileTabClick.bind(this);
|
2018-12-08 18:34:06 -05:00
|
|
|
|
2019-04-13 12:36:27 -04:00
|
|
|
// Watch layout changes
|
2018-12-08 18:34:06 -05:00
|
|
|
this.updateLayout();
|
|
|
|
window.addEventListener('resize', event => {
|
|
|
|
this.updateLayout();
|
2019-04-13 12:36:27 -04:00
|
|
|
}, {passive: true});
|
2018-12-08 18:34:06 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
updateLayout() {
|
2018-12-09 08:42:35 -05:00
|
|
|
let newLayout = 'tablet';
|
|
|
|
if (window.innerWidth <= 1000) newLayout = 'mobile';
|
|
|
|
if (window.innerWidth >= 1400) newLayout = 'desktop';
|
2018-12-08 18:34:06 -05:00
|
|
|
if (newLayout === this.lastLayoutType) return;
|
|
|
|
|
|
|
|
if (this.onDestroy) {
|
|
|
|
this.onDestroy();
|
|
|
|
this.onDestroy = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (newLayout === 'desktop') {
|
|
|
|
this.setupDesktop();
|
2018-12-09 08:42:35 -05:00
|
|
|
} else if (newLayout === 'mobile') {
|
2018-12-08 18:34:06 -05:00
|
|
|
this.setupMobile();
|
|
|
|
}
|
|
|
|
|
|
|
|
this.lastLayoutType = newLayout;
|
|
|
|
}
|
|
|
|
|
|
|
|
setupMobile() {
|
2019-04-13 12:36:27 -04:00
|
|
|
const layoutTabs = document.querySelectorAll('[tri-layout-mobile-tab]');
|
|
|
|
for (let tab of layoutTabs) {
|
|
|
|
tab.addEventListener('click', this.mobileTabClick);
|
|
|
|
}
|
2018-12-08 18:34:06 -05:00
|
|
|
|
|
|
|
this.onDestroy = () => {
|
2019-04-13 12:36:27 -04:00
|
|
|
for (let tab of layoutTabs) {
|
|
|
|
tab.removeEventListener('click', this.mobileTabClick);
|
|
|
|
}
|
2018-12-08 18:34:06 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
setupDesktop() {
|
2018-12-09 08:42:35 -05:00
|
|
|
//
|
2018-12-08 18:34:06 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2019-04-13 12:36:27 -04:00
|
|
|
* Action to run when the mobile info toggle bar is clicked/tapped
|
2018-12-08 18:34:06 -05:00
|
|
|
* @param event
|
|
|
|
*/
|
2019-04-13 12:36:27 -04:00
|
|
|
mobileTabClick(event) {
|
|
|
|
const tab = event.target.getAttribute('tri-layout-mobile-tab');
|
2019-05-25 10:37:49 -04:00
|
|
|
this.showTab(tab);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show the content tab.
|
|
|
|
* Used by the page-display component.
|
|
|
|
*/
|
|
|
|
showContent() {
|
2019-06-16 07:46:23 -04:00
|
|
|
this.showTab('content', false);
|
2019-05-25 10:37:49 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show the given tab
|
|
|
|
* @param tabName
|
|
|
|
*/
|
2019-06-16 07:46:23 -04:00
|
|
|
showTab(tabName, scroll = true) {
|
2019-04-13 12:36:27 -04:00
|
|
|
this.scrollCache[this.lastTabShown] = document.documentElement.scrollTop;
|
|
|
|
|
|
|
|
// Set tab status
|
2019-05-25 10:37:49 -04:00
|
|
|
const tabs = document.querySelectorAll('.tri-layout-mobile-tab');
|
|
|
|
for (let tab of tabs) {
|
|
|
|
const isActive = (tab.getAttribute('tri-layout-mobile-tab') === tabName);
|
|
|
|
tab.classList.toggle('active', isActive);
|
2018-12-08 18:34:06 -05:00
|
|
|
}
|
2019-04-13 12:36:27 -04:00
|
|
|
|
|
|
|
// Toggle section
|
2019-05-25 10:37:49 -04:00
|
|
|
const showInfo = (tabName === 'info');
|
2019-04-13 12:36:27 -04:00
|
|
|
this.elem.classList.toggle('show-info', showInfo);
|
|
|
|
|
|
|
|
// Set the scroll position from cache
|
2019-06-16 07:46:23 -04:00
|
|
|
if (scroll) {
|
|
|
|
const pageHeader = document.querySelector('header');
|
|
|
|
const defaultScrollTop = pageHeader.getBoundingClientRect().bottom;
|
2019-05-25 10:37:49 -04:00
|
|
|
document.documentElement.scrollTop = this.scrollCache[tabName] || defaultScrollTop;
|
2019-06-16 07:46:23 -04:00
|
|
|
setTimeout(() => {
|
|
|
|
document.documentElement.scrollTop = this.scrollCache[tabName] || defaultScrollTop;
|
|
|
|
}, 50);
|
|
|
|
}
|
2019-04-13 12:36:27 -04:00
|
|
|
|
2019-05-25 10:37:49 -04:00
|
|
|
this.lastTabShown = tabName;
|
2018-12-08 18:34:06 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
export default TriLayout;
|