2021-01-25 12:15:33 +01:00
|
|
|
/*
|
|
|
|
* Lightbox window
|
|
|
|
*/
|
2021-02-24 10:40:59 +01:00
|
|
|
|
|
|
|
import Events from './_events';
|
2021-01-30 22:00:13 +01:00
|
|
|
|
2021-02-24 10:43:39 +01:00
|
|
|
const W = window;
|
2021-01-30 22:00:13 +01:00
|
|
|
const axios = require('axios');
|
2021-01-25 12:15:33 +01:00
|
|
|
|
2021-08-04 00:55:06 +02:00
|
|
|
class MetaWindow {
|
2021-02-24 10:38:08 +01:00
|
|
|
state = {
|
2021-08-11 18:57:45 +02:00
|
|
|
content: '',
|
|
|
|
type: ['empty'],
|
|
|
|
shown: false,
|
|
|
|
loading: false,
|
|
|
|
error: false,
|
|
|
|
embed: false,
|
|
|
|
collections: [],
|
|
|
|
current: null,
|
|
|
|
target: null,
|
2021-02-24 10:38:08 +01:00
|
|
|
};
|
|
|
|
|
2021-08-10 01:19:48 +02:00
|
|
|
init() {
|
2021-08-11 18:57:45 +02:00
|
|
|
const ui = this;
|
|
|
|
console.log(`MetaWindow: [links] init`);
|
2021-08-04 00:57:03 +02:00
|
|
|
|
2021-08-11 18:57:45 +02:00
|
|
|
// collect new collections
|
|
|
|
document.querySelectorAll('[data-toggle="lightbox"],[data-gallery="${gallery}"]').forEach((el) => {
|
|
|
|
const gallery = el.getAttribute('data-gallery');
|
|
|
|
if (gallery) {
|
|
|
|
ui.state.collections[gallery] = [];
|
|
|
|
document
|
|
|
|
.querySelectorAll(
|
|
|
|
`[data-toggle="lightbox"][data-gallery="${gallery}"]`,
|
|
|
|
)
|
|
|
|
.forEach((el) => {
|
|
|
|
ui.state.collections[gallery].push(el);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// click handler
|
|
|
|
el.addEventListener('click', (e) => {
|
|
|
|
e.preventDefault();
|
|
|
|
console.log(`MetaWindow: [link] click`);
|
2021-08-04 00:57:03 +02:00
|
|
|
|
2021-08-11 18:57:45 +02:00
|
|
|
const el = e.currentTarget;
|
|
|
|
const link =
|
2021-08-04 00:57:03 +02:00
|
|
|
el.getAttribute('href') || el.getAttribute('data-href');
|
2021-08-11 18:57:45 +02:00
|
|
|
const embed = el.getAttribute('data-embed');
|
|
|
|
ui.state.current = el;
|
|
|
|
|
|
|
|
if (embed) {
|
|
|
|
ui.embed(link);
|
|
|
|
} else {
|
|
|
|
ui.load(link);
|
|
|
|
}
|
|
|
|
|
|
|
|
const title = el.getAttribute('data-title');
|
|
|
|
if (title) {
|
|
|
|
ui.setCaption(title);
|
|
|
|
}
|
2021-08-04 00:55:06 +02:00
|
|
|
});
|
2021-08-11 18:57:45 +02:00
|
|
|
});
|
2021-08-04 00:55:06 +02:00
|
|
|
}
|
2021-02-24 10:38:08 +01:00
|
|
|
|
2021-08-10 01:19:48 +02:00
|
|
|
constructor(state = {
|
2021-08-11 18:57:45 +02:00
|
|
|
shown: false,
|
2021-08-10 01:19:48 +02:00
|
|
|
}, action) {
|
2021-08-11 18:57:45 +02:00
|
|
|
const ui = this;
|
|
|
|
|
|
|
|
ui.name = ui.constructor.name;
|
|
|
|
console.log(`${ui.name}: init`);
|
|
|
|
ui.axios = axios;
|
|
|
|
|
|
|
|
ui.setState(state);
|
|
|
|
switch (action) {
|
|
|
|
case 'show':
|
|
|
|
ui.hide();
|
|
|
|
break;
|
|
|
|
case 'hide':
|
|
|
|
ui.hide();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
W.dispatchEvent(new Event(`{ui.name}.init`));
|
2021-02-24 10:38:08 +01:00
|
|
|
}
|
|
|
|
|
2021-08-04 00:55:06 +02:00
|
|
|
show = () => {
|
2021-08-11 18:57:45 +02:00
|
|
|
const ui = this;
|
|
|
|
console.log(`${ui.name}: show`);
|
2021-02-24 10:38:08 +01:00
|
|
|
|
2021-08-11 18:57:45 +02:00
|
|
|
ui.setState({
|
|
|
|
shown: true,
|
|
|
|
});
|
|
|
|
W.dispatchEvent(new Event(`{ui.name}.show`));
|
2021-08-04 00:55:06 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
hide = () => {
|
2021-08-11 18:57:45 +02:00
|
|
|
const ui = this;
|
2021-08-04 00:55:06 +02:00
|
|
|
|
2021-08-11 18:57:45 +02:00
|
|
|
console.log(`${ui.name}: hide`);
|
|
|
|
ui.setState({
|
|
|
|
shown: false,
|
|
|
|
});
|
|
|
|
W.dispatchEvent(new Event(`{ui.name}.hide`));
|
2021-02-24 10:38:08 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
next = () => {
|
2021-08-11 18:57:45 +02:00
|
|
|
const ui = this;
|
|
|
|
const el = ui.state.current;
|
|
|
|
const gallery = el.getAttribute('data-gallery');
|
2021-02-24 10:38:08 +01:00
|
|
|
|
2021-08-11 18:57:45 +02:00
|
|
|
let i = ui._currIndex();
|
|
|
|
if (i < ui.state.collections[gallery].length - 1) {
|
|
|
|
i++;
|
|
|
|
} else {
|
|
|
|
i = 0;
|
|
|
|
}
|
2021-02-24 10:38:08 +01:00
|
|
|
|
2021-08-11 18:57:45 +02:00
|
|
|
ui.state.collections[gallery][i].click();
|
2021-02-24 10:40:59 +01:00
|
|
|
|
2021-08-11 18:57:45 +02:00
|
|
|
console.log(`${ui.name}: next`);
|
|
|
|
W.dispatchEvent(new Event(`{ui.name}.next`));
|
2021-02-24 10:38:08 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
prev = () => {
|
2021-08-11 18:57:45 +02:00
|
|
|
const ui = this;
|
|
|
|
const el = ui.state.current;
|
|
|
|
const gallery = el.getAttribute('data-gallery');
|
2021-02-24 10:38:08 +01:00
|
|
|
|
2021-08-11 18:57:45 +02:00
|
|
|
let i = ui._currIndex();
|
|
|
|
if (i > 0) {
|
|
|
|
i--;
|
|
|
|
} else {
|
|
|
|
i = ui.state.collections[gallery].length - 1;
|
|
|
|
}
|
2021-02-24 10:38:08 +01:00
|
|
|
|
2021-08-11 18:57:45 +02:00
|
|
|
ui.state.collections[gallery][i].click();
|
2021-02-24 10:40:59 +01:00
|
|
|
|
2021-08-11 18:57:45 +02:00
|
|
|
console.log(`${ui.name}: prev`);
|
|
|
|
W.dispatchEvent(new Event(`{ui.name}.prev`));
|
2021-02-24 10:38:08 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
reset = () => {
|
2021-08-11 18:57:45 +02:00
|
|
|
const ui = this;
|
2021-02-24 10:38:08 +01:00
|
|
|
|
2021-08-11 18:57:45 +02:00
|
|
|
ui.setState({
|
|
|
|
content: '',
|
|
|
|
type: ['empty'],
|
|
|
|
shown: false,
|
|
|
|
loading: false,
|
|
|
|
error: false,
|
|
|
|
embed: false,
|
|
|
|
//collections: [],
|
|
|
|
//current: null,
|
|
|
|
//target: null,
|
|
|
|
});
|
2021-02-24 10:38:08 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
load = (link) => {
|
2021-08-11 18:57:45 +02:00
|
|
|
const ui = this;
|
|
|
|
const axios = ui.axios;
|
|
|
|
|
|
|
|
ui.reset();
|
|
|
|
ui.setState({
|
|
|
|
loading: true,
|
|
|
|
});
|
|
|
|
ui.show();
|
|
|
|
|
|
|
|
axios
|
|
|
|
.get(link, {
|
|
|
|
responseType: 'arraybuffer',
|
|
|
|
})
|
|
|
|
.then((resp) => {
|
|
|
|
// handle success
|
|
|
|
console.log(
|
|
|
|
`${ui.name}: response content-type: ${resp.headers['content-type']}`,
|
|
|
|
);
|
|
|
|
const json = false;
|
|
|
|
|
|
|
|
switch (resp.headers['content-type']) {
|
|
|
|
case 'image/jpeg':
|
|
|
|
case 'image/png':
|
|
|
|
case 'image/svg+xml':
|
|
|
|
case 'image/bmp':
|
|
|
|
case 'image/gif':
|
|
|
|
case 'image/tiff':
|
|
|
|
case 'image/webp':
|
|
|
|
// irregular types:
|
|
|
|
case 'image/jpg':
|
|
|
|
case 'image/svg':
|
|
|
|
//json = JSON.parse(ui._abToString(resp.data));
|
|
|
|
ui.setContent(
|
|
|
|
`<img src="data:${resp.headers['content-type']};base64,${ui._imageEncode(resp.data)}" />`,
|
2021-08-18 19:00:31 +02:00
|
|
|
`meta-${ui.name}__image`,
|
2021-08-11 18:57:45 +02:00
|
|
|
);
|
|
|
|
break;
|
|
|
|
case 'application/json':
|
|
|
|
case 'application/ld+json':
|
|
|
|
// irregular types:
|
|
|
|
case 'application/json; charset=UTF-8':
|
2021-08-18 19:00:31 +02:00
|
|
|
ui.setContent(`${json['Content']}`, [
|
|
|
|
`meta-${ui.name}__text`,
|
|
|
|
`meta-${ui.name}__html`,
|
|
|
|
`meta-${ui.name}__json`,
|
|
|
|
]);
|
2021-08-11 18:57:45 +02:00
|
|
|
|
|
|
|
break;
|
|
|
|
case 'text/html':
|
|
|
|
case 'application/xhtml+xml':
|
|
|
|
case 'text/plain':
|
|
|
|
// irregular types:
|
|
|
|
case 'text/html; charset=UTF-8':
|
|
|
|
case 'application/xhtml+xml; charset=UTF-8':
|
|
|
|
case 'text/plain; charset=UTF-8':
|
|
|
|
ui.setContent(
|
2021-08-18 19:00:31 +02:00
|
|
|
ui._abToString(resp.data),[
|
|
|
|
`meta-${ui.name}__text`,
|
|
|
|
`meta-${ui.name}__html`,
|
|
|
|
`meta-${ui.name}__pajax`,
|
|
|
|
]);
|
2021-08-11 18:57:45 +02:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
console.warn(
|
|
|
|
`${ui.name}: Unknown response content-type!`,
|
|
|
|
);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
W.dispatchEvent(new Event(`{ui.name}.loaded`));
|
|
|
|
})
|
|
|
|
.catch((error) => {
|
|
|
|
console.error(error);
|
|
|
|
|
|
|
|
let msg = '';
|
|
|
|
|
|
|
|
if (error.response) {
|
|
|
|
switch (error.response.status) {
|
|
|
|
case 404:
|
|
|
|
msg = 'Not Found.';
|
|
|
|
break;
|
|
|
|
case 500:
|
|
|
|
msg = 'Server issue, please try again latter.';
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
msg = 'Something went wrong.';
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else if (error.request) {
|
|
|
|
msg = 'No response received';
|
|
|
|
} else {
|
|
|
|
console.warn('Error', error.message);
|
|
|
|
}
|
|
|
|
|
|
|
|
ui.setState({
|
|
|
|
error: msg,
|
|
|
|
});
|
|
|
|
|
|
|
|
W.dispatchEvent(new Event(`{ui.name}.error`));
|
|
|
|
})
|
|
|
|
.then(() => {
|
|
|
|
ui.setState({
|
|
|
|
loading: false,
|
|
|
|
});
|
2021-07-19 18:39:21 +02:00
|
|
|
});
|
2021-02-24 10:38:08 +01:00
|
|
|
};
|
|
|
|
|
2021-08-04 00:55:06 +02:00
|
|
|
_currIndex = () => {
|
2021-08-11 18:57:45 +02:00
|
|
|
const ui = this;
|
|
|
|
const el = ui.state.current;
|
|
|
|
const gallery = el.getAttribute('data-gallery');
|
2021-08-04 00:55:06 +02:00
|
|
|
|
2021-08-11 18:57:45 +02:00
|
|
|
return ui.state.collections[gallery].indexOf(el);
|
2021-08-04 00:55:06 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
embed = (link) => {
|
2021-08-11 18:57:45 +02:00
|
|
|
const ui = this;
|
|
|
|
console.log(`${ui.name}: embed`);
|
2021-08-04 00:55:06 +02:00
|
|
|
|
2021-08-11 18:57:45 +02:00
|
|
|
ui.reset();
|
|
|
|
ui.setState({
|
|
|
|
embed: link,
|
|
|
|
loading: false,
|
|
|
|
type: [`meta-${ui.name}__embed`, `meta-${ui.name}__video`],
|
|
|
|
});
|
2021-08-10 01:46:42 +02:00
|
|
|
|
2021-08-11 18:57:45 +02:00
|
|
|
ui.show();
|
2021-08-04 00:55:06 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
setCaption = (title) => {
|
2021-08-11 18:57:45 +02:00
|
|
|
const ui = this;
|
|
|
|
console.log(`${ui.name}: setCaption`);
|
2021-08-04 00:55:06 +02:00
|
|
|
|
2021-08-11 18:57:45 +02:00
|
|
|
ui.state.caption = title;
|
2021-08-04 00:55:06 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
getCaption = () => {
|
2021-08-11 18:57:45 +02:00
|
|
|
const ui = this;
|
|
|
|
return ui.state.caption;
|
2021-08-04 00:55:06 +02:00
|
|
|
}
|
|
|
|
|
2021-02-24 10:38:08 +01:00
|
|
|
_abToString = (arrayBuffer) => {
|
2021-08-11 18:57:45 +02:00
|
|
|
return String.fromCharCode.apply(null, new Uint8Array(arrayBuffer));
|
2021-02-24 10:38:08 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
_imageEncode = (arrayBuffer) => {
|
2021-08-11 18:57:45 +02:00
|
|
|
const u8 = new Uint8Array(arrayBuffer);
|
|
|
|
const b64encoded = btoa(
|
|
|
|
[].reduce.call(
|
|
|
|
new Uint8Array(arrayBuffer),
|
|
|
|
(p, c) => {
|
|
|
|
return p + String.fromCharCode(c);
|
|
|
|
},
|
|
|
|
'',
|
|
|
|
),
|
|
|
|
);
|
|
|
|
|
|
|
|
return b64encoded;
|
2021-02-24 10:38:08 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
setContent = (html, type) => {
|
2021-08-11 18:57:45 +02:00
|
|
|
const ui = this;
|
|
|
|
console.log(`${ui.name}: setContent`);
|
|
|
|
|
2021-08-18 19:00:31 +02:00
|
|
|
let typeArr = type ? type : [`meta-${ui.name}__html`, `meta-${ui.name}__text`];
|
2021-08-11 18:57:45 +02:00
|
|
|
if (!Array.isArray(typeArr)) {
|
|
|
|
typeArr = type.split(' ');
|
|
|
|
}
|
|
|
|
|
|
|
|
ui.setState({
|
|
|
|
content: html,
|
|
|
|
type: typeArr,
|
|
|
|
});
|
2021-02-24 10:38:08 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
getHtml = () => {
|
2021-08-11 18:57:45 +02:00
|
|
|
const ui = this;
|
2021-08-10 02:08:01 +02:00
|
|
|
|
2021-08-11 18:57:45 +02:00
|
|
|
if (ui.state.embed) {
|
|
|
|
const youtubeEmbed = require('youtube-embed');
|
|
|
|
const embedLink = youtubeEmbed(ui.state.embed);
|
|
|
|
ui.state.content = `<iframe width="600" height="380" src="${embedLink}" frameborder="0"></iframe>`;
|
|
|
|
}
|
2021-08-10 02:08:01 +02:00
|
|
|
|
2021-08-11 18:57:45 +02:00
|
|
|
return ui.state.content;
|
2021-02-24 10:38:08 +01:00
|
|
|
};
|
|
|
|
|
2021-08-10 01:19:48 +02:00
|
|
|
setState(state) {
|
2021-08-11 18:57:45 +02:00
|
|
|
const ui = this;
|
|
|
|
ui.state = Object.assign({}, ui.state, state);
|
|
|
|
ui.render();
|
2021-04-02 11:20:48 +02:00
|
|
|
}
|
|
|
|
|
2021-02-24 10:38:08 +01:00
|
|
|
render() {
|
2021-08-11 18:57:45 +02:00
|
|
|
const ui = this;
|
|
|
|
const name = ui.name;
|
|
|
|
|
|
|
|
const navs = null;
|
|
|
|
const el = ui.state.current;
|
|
|
|
|
|
|
|
ui.state.target.innerHTML = '';
|
|
|
|
const meta = document.createElement('div');
|
|
|
|
meta.classList.add(`meta-${name}`);
|
|
|
|
meta.classList.add(...ui.state.type);
|
|
|
|
ui.state.target.append(meta);
|
|
|
|
|
|
|
|
const metaOverlay = document.createElement('div');
|
|
|
|
metaOverlay.classList.add(`meta-${name}-overlay`);
|
|
|
|
if (ui.state.shown) {
|
|
|
|
metaOverlay.classList.add(`meta-${name}-overlay__open`);
|
|
|
|
}
|
|
|
|
if (ui.state.loading) {
|
|
|
|
metaOverlay.classList.add(`meta-${name}-overlay__loading`);
|
|
|
|
}
|
|
|
|
if (ui.state.error) {
|
|
|
|
metaOverlay.classList.add(`meta-${name}-overlay__error`);
|
|
|
|
}
|
|
|
|
meta.append(metaOverlay);
|
|
|
|
|
|
|
|
const metaContent = document.createElement('div');
|
|
|
|
metaContent.classList.add('meta-content');
|
|
|
|
metaOverlay.append(metaContent);
|
|
|
|
|
|
|
|
const btnClose = document.createElement('button');
|
|
|
|
btnClose.classList.add('meta-nav', 'meta-close', 'a');
|
|
|
|
btnClose.innerHTML =
|
2021-08-04 00:55:06 +02:00
|
|
|
'<i class="icon fa fas fa-times"></i>' +
|
|
|
|
' <span class="visually-hidden">Close</span>';
|
2021-08-11 18:57:45 +02:00
|
|
|
btnClose.addEventListener('click', (e) => {
|
|
|
|
e.preventDefault();
|
|
|
|
ui.hide();
|
|
|
|
});
|
|
|
|
metaContent.append(btnClose);
|
2021-04-02 11:47:45 +02:00
|
|
|
|
2021-08-11 18:57:45 +02:00
|
|
|
if (el) {
|
|
|
|
const gallery = el.getAttribute('data-gallery');
|
|
|
|
if (gallery && ui.state.collections[gallery].length > 1) {
|
|
|
|
const navs = document.createElement('nav');
|
|
|
|
navs.classList.add('meta-navs');
|
2021-08-04 00:55:06 +02:00
|
|
|
|
2021-08-11 18:57:45 +02:00
|
|
|
const prevBtn = document.createElement('button');
|
|
|
|
prevBtn.classList.add('meta-nav', 'meta-nav-arrow', 'meta-nav-arrow__prev', 'a');
|
|
|
|
prevBtn.innerHTML = '<i class="icon fa fas fa-chevron-left"></i>' +
|
2021-08-04 00:55:06 +02:00
|
|
|
' <span class="visually-hidden">Previous</span>';
|
2021-08-11 18:57:45 +02:00
|
|
|
prevBtn.addEventListener('click', (e) => {
|
|
|
|
e.preventDefault();
|
|
|
|
ui.prev();
|
|
|
|
});
|
|
|
|
navs.append(prevBtn);
|
2021-08-04 00:55:06 +02:00
|
|
|
|
2021-08-11 18:57:45 +02:00
|
|
|
const nextBtn = document.createElement('button');
|
|
|
|
nextBtn.classList.add('meta-nav', 'meta-nav-arrow', 'meta-nav-arrow__next', 'a');
|
|
|
|
nextBtn.innerHTML = '<i class="icon fa fas fa-chevron-right"></i>' +
|
|
|
|
' <span class="visually-hidden">Next</span>';
|
|
|
|
nextBtn.addEventListener('click', (e) => {
|
|
|
|
e.preventDefault();
|
|
|
|
ui.next();
|
|
|
|
});
|
|
|
|
navs.append(nextBtn);
|
2021-08-11 18:18:28 +02:00
|
|
|
|
2021-08-11 18:57:45 +02:00
|
|
|
metaContent.append(navs);
|
2021-02-24 10:38:08 +01:00
|
|
|
}
|
2021-08-11 18:57:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const content = document.createElement('section');
|
|
|
|
content.classList.add('meta-wrap', 'typography');
|
|
|
|
content.innerHTML = ui.getHtml();
|
|
|
|
metaContent.append(content);
|
|
|
|
|
|
|
|
if (ui.state.error) {
|
|
|
|
const error = document.createElement('div');
|
|
|
|
error.classList.add('meta-error');
|
|
|
|
error.innerHTML = ui.state.error;
|
|
|
|
metaContent.append(error);
|
|
|
|
} else if (ui.state.caption) {
|
|
|
|
const caption = document.createElement('div');
|
|
|
|
caption.classList.add('meta-caption');
|
|
|
|
caption.innerHTML = ui.getCaption();
|
|
|
|
metaContent.append(caption);
|
|
|
|
}
|
|
|
|
|
|
|
|
return ui;
|
2021-02-24 10:38:08 +01:00
|
|
|
}
|
2021-01-25 12:15:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
export default MetaWindow;
|