mirror of
https://github.com/JeremyLikness/vanillajs-deck
synced 2024-11-14 17:44:56 +00:00
28 lines
650 B
JavaScript
28 lines
650 B
JavaScript
|
export class Slide {
|
||
|
|
||
|
constructor(text) {
|
||
|
this._text = text;
|
||
|
this._html = document.createElement('div');
|
||
|
this._html.innerHTML = text;
|
||
|
this._title = this._html.querySelectorAll("title")[0].innerText;
|
||
|
const hasNext = this._html.querySelectorAll("nextslide");
|
||
|
if (hasNext.length > 0) {
|
||
|
this._nextSlideName = hasNext[0].innerText;
|
||
|
}
|
||
|
else {
|
||
|
this._nextSlideName = null;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
get title() {
|
||
|
return this._title;
|
||
|
}
|
||
|
|
||
|
get html() {
|
||
|
return this._html;
|
||
|
}
|
||
|
|
||
|
get nextSlide() {
|
||
|
return this._nextSlideName;
|
||
|
}
|
||
|
}
|