meshviewer/lib/sidebar.js

59 lines
1.3 KiB
JavaScript
Raw Normal View History

2016-05-27 21:59:01 +00:00
define(function () {
'use strict';
2016-05-27 21:59:01 +00:00
2015-03-25 14:33:36 +00:00
return function (el) {
var self = this;
2015-03-25 14:33:36 +00:00
2017-02-08 22:32:17 +00:00
// Needed to avoid render blocking
var gridBreakpoints = {
lg: [992, 446],
xl: [1200, 560]
};
var sidebar = document.createElement('div');
sidebar.classList.add('sidebar');
el.appendChild(sidebar);
2015-03-25 14:33:36 +00:00
var button = document.createElement('button');
sidebar.appendChild(button);
2015-03-25 14:33:36 +00:00
button.classList.add('sidebarhandle', 'shadow');
button.onclick = function onclick() {
sidebar.classList.toggle('hidden');
};
2015-03-25 14:33:36 +00:00
var container = document.createElement('div');
container.classList.add('container');
sidebar.appendChild(container);
2015-04-04 16:01:57 +00:00
self.getWidth = function getWidth() {
2017-02-09 23:56:23 +00:00
if (gridBreakpoints.lg[0] > window.innerWidth) {
return 0;
2017-02-09 23:56:23 +00:00
} else if (gridBreakpoints.xl[0] > window.innerWidth) {
2017-02-08 22:32:17 +00:00
return gridBreakpoints.lg[1];
}
2017-02-08 22:32:17 +00:00
return gridBreakpoints.xl[1];
};
2015-03-25 14:33:36 +00:00
self.add = function add(d) {
d.render(container);
};
2015-03-25 14:33:36 +00:00
self.ensureVisible = function ensureVisible() {
sidebar.classList.remove('hidden');
};
self.hide = function hide() {
container.classList.add('hidden');
};
2015-07-06 20:27:16 +00:00
self.reveal = function reveal() {
container.classList.remove('hidden');
};
2015-07-06 20:27:16 +00:00
self.container = sidebar;
2015-03-25 14:33:36 +00:00
return self;
};
});