diff --git a/docs/index.html b/docs/index.html index f2ec33b..b486bca 100644 --- a/docs/index.html +++ b/docs/index.html @@ -37,9 +37,13 @@ document.querySelector('.error').style.display = 'inline-block'; }; + let lightbox = new Lightbox; + lightbox.install(document.querySelector('.lightbox'), 'lightbox'); + var main = new Main(); main.install(); main.start(); + document.querySelector('.loading-wave').style.display = 'none'; diff --git a/docs/logic/lightbox.js b/docs/logic/lightbox.js index 5cba5af..02e0ac4 100644 --- a/docs/logic/lightbox.js +++ b/docs/logic/lightbox.js @@ -1,19 +1,26 @@ function Lightbox() { this.container = null; - this.item = null; + this.img = null; - this.install = function() + this.install = function(container, prefix) { - this.container = document.getElementById("lightbox"); - this.container.innerHTML += ``; - this.container.innerHTML += ``; - this.item = document.getElementById("lightbox-item"); + this.container = container; + + let back = document.createElement('div'); + back.className = prefix + '-back'; + this.addEvent(back, 'click', function(){ lightbox.close(); }); + this.container.appendChild(back); + + this.img = document.createElement('img'); + this.img.className = prefix + '-img'; + this.addEvent(this.img, 'click', function(){ lightbox.close(); }); + this.container.appendChild(this.img); } this.load = function(file) { - this.item.innerHTML = ``; + this.img.src = file; this.container.style.display = 'block'; } @@ -24,4 +31,21 @@ function Lightbox() this.container.style.display = 'none'; } } + + this.handle = function(element, file) + { + this.addEvent(element, 'click', function(){ lightbox.load(file); }); + } + + this.addEvent = function(element, evnt, funct) + { + if (element.attachEvent) + { + return element.attachEvent('on'+evnt, funct); + } + else + { + return element.addEventListener(evnt, funct, false); + } + } } \ No newline at end of file diff --git a/docs/logic/main.js b/docs/logic/main.js index bd5cb0b..3e7a324 100644 --- a/docs/logic/main.js +++ b/docs/logic/main.js @@ -4,7 +4,6 @@ function Main() this.view = null; this.add = null; this.write = null; - this.lightbox = null; this.queryCur = ''; this.queryPrev = ''; @@ -22,8 +21,6 @@ function Main() document.querySelector('.container'), document.querySelector('main'), document.querySelector('.page-overlay')); - this.lightbox = new Lightbox; - this.lightbox.install(document.querySelector('.lightbox'), 'lightbox'); if (window.showAdd !== undefined && window.showAdd) { @@ -45,7 +42,7 @@ function Main() this.load = function(target) { - this.lightbox.close(); + lightbox.close(); document.activeElement.blur(); if (this.queryCur !== 'add') diff --git a/docs/logic/view.js b/docs/logic/view.js index 4ec0335..524c7b5 100644 --- a/docs/logic/view.js +++ b/docs/logic/view.js @@ -249,7 +249,7 @@ function View() && this.isImage(value.FILE)) { entry += `
`; - entry += ``; + entry += ``; entry += `
`; } @@ -382,7 +382,7 @@ function View() // If user is clicking given element, or element's background... // as opposed to an element's child content, then do lightbox. // This stops lightbox from happening when clicking on tags, file etc - main.lightbox.load(`content/media/${file}`); + lightbox.load(`content/media/${file}`); } }