2019-07-17 09:56:20 +02:00
|
|
|
export var CardPlugin = CardPlugin || {}
|
|
|
|
|
|
|
|
export class CardPluginBase {
|
|
|
|
apply(context) {
|
2019-08-14 17:46:12 +02:00
|
|
|
this.context = context
|
2019-07-17 09:56:20 +02:00
|
|
|
if (this.verify(context)) {
|
|
|
|
this.append(context)
|
2019-07-18 12:26:39 +02:00
|
|
|
console.log('Plugin ' + this.name + ' was verified successfully.')
|
2019-07-17 09:56:20 +02:00
|
|
|
return true
|
2019-07-18 12:26:39 +02:00
|
|
|
} else console.error('Could not verify module ' + this.name + '.')
|
2019-07-17 09:56:20 +02:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
get name() {
|
|
|
|
return this.constructor.name
|
|
|
|
}
|
|
|
|
|
|
|
|
verify(context) {
|
|
|
|
let funcs = this._getVerificationFunctions(context)
|
|
|
|
for (let func of funcs) {
|
|
|
|
if (!func()) return false
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
_verifyElementsExist(context, ...selectors) {
|
|
|
|
let missing = []
|
|
|
|
|
|
|
|
for (let selector of selectors) {
|
|
|
|
let requiredElement = context.querySelector(selector)
|
|
|
|
if (requiredElement == null) {
|
|
|
|
missing.push(selector)
|
|
|
|
}
|
|
|
|
}
|
2019-07-18 12:26:39 +02:00
|
|
|
const valid = missing.length == 0
|
|
|
|
if (!valid) console.error('Elements were missing: ', missing.join(', '))
|
2019-07-17 09:56:20 +02:00
|
|
|
return valid
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Appends the Plugin to the context.
|
|
|
|
*
|
|
|
|
* @memberof CardPlugin
|
|
|
|
*/
|
|
|
|
append(context) {
|
2019-07-18 12:26:39 +02:00
|
|
|
console.error(
|
|
|
|
'Call of abstract method CardPlugin.prototype.append(context). Plugins need to overwrite the append method!'
|
|
|
|
)
|
2019-07-17 09:56:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
_getVerificationFunctions(context) {
|
2019-07-30 16:56:29 +02:00
|
|
|
return [this._verifyContext.bind(this, context), this._verifyRequirements.bind(this, context)]
|
2019-07-17 09:56:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
_verifyContext(context) {
|
|
|
|
if (!(context instanceof HTMLElement)) {
|
2019-07-18 12:26:39 +02:00
|
|
|
console.error('Context is not of type HTML Element.', context)
|
2019-07-17 09:56:20 +02:00
|
|
|
return false
|
|
|
|
} else return true
|
|
|
|
}
|
|
|
|
|
|
|
|
_verifyRequirements(context) {
|
|
|
|
let requirements = this._collectAllRequirements()
|
|
|
|
let missing = []
|
|
|
|
|
2022-10-04 10:51:35 +02:00
|
|
|
requirements.forEach((module) => {
|
2019-07-17 09:56:20 +02:00
|
|
|
if (context.modules.indexOf(module.name) == -1) {
|
|
|
|
missing.push(module.name)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2019-07-18 12:26:39 +02:00
|
|
|
const valid = missing.length == 0
|
|
|
|
if (!valid)
|
|
|
|
console.error(
|
|
|
|
"Could not apply module '" +
|
|
|
|
this.name +
|
|
|
|
"'. Following modules are required but were missing: " +
|
|
|
|
missing.join(',')
|
|
|
|
)
|
|
|
|
else console.log('All requirements were met! Well done!')
|
2019-07-17 09:56:20 +02:00
|
|
|
return valid
|
|
|
|
}
|
|
|
|
|
|
|
|
_collectAllRequirements() {
|
|
|
|
let requirements = []
|
|
|
|
let klass = this.__proto__
|
|
|
|
while (klass) {
|
|
|
|
if (klass.require != null) {
|
|
|
|
requirements = requirements.concat(klass.require)
|
|
|
|
}
|
|
|
|
klass = klass.__proto__
|
|
|
|
}
|
|
|
|
return requirements
|
|
|
|
}
|
2019-08-14 17:46:12 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Called when the card is removed.
|
|
|
|
* Can be used to cleanup the plugin.
|
|
|
|
*
|
|
|
|
* @memberof CardPluginBase
|
|
|
|
*/
|
|
|
|
remove() {}
|
2019-07-17 09:56:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
CardPlugin.LightBox = class LightBox extends CardPluginBase {
|
|
|
|
constructor(className, style = {}) {
|
|
|
|
super()
|
|
|
|
this.className = className
|
|
|
|
this.style = style
|
|
|
|
}
|
|
|
|
|
|
|
|
append(context) {
|
2019-07-18 12:26:39 +02:00
|
|
|
let wrapper = document.createElement('div')
|
2019-07-17 09:56:20 +02:00
|
|
|
wrapper.className = this.className
|
|
|
|
|
2019-07-18 12:26:39 +02:00
|
|
|
Object.assign(
|
|
|
|
wrapper.style,
|
|
|
|
{
|
|
|
|
zIndex: 1000,
|
|
|
|
// backgroundColor: "black",
|
|
|
|
top: 0,
|
|
|
|
left: 0,
|
|
|
|
width: '100%',
|
2022-10-04 10:51:35 +02:00
|
|
|
height: '100%',
|
2019-07-18 12:26:39 +02:00
|
|
|
},
|
|
|
|
this.style,
|
|
|
|
{
|
|
|
|
display: 'none',
|
2022-10-04 10:51:35 +02:00
|
|
|
position: 'absolute',
|
2019-07-18 12:26:39 +02:00
|
|
|
}
|
|
|
|
)
|
2019-07-17 09:56:20 +02:00
|
|
|
|
|
|
|
context.appendChild(wrapper)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The Enlargeable Overlay module allows the user to click on the thumbnail image,
|
|
|
|
* and the images gets enlarged inside the card.
|
|
|
|
*
|
|
|
|
* @class EnlargeableThumbnail
|
|
|
|
* @extends {CardPlugin}
|
|
|
|
*/
|
|
|
|
CardPlugin.EnlargeableThumbnail = class EnlargeableThumbnail extends CardPluginBase {
|
2019-07-18 12:26:39 +02:00
|
|
|
constructor(
|
|
|
|
wrapperSelector,
|
|
|
|
overlaySelector = null,
|
2019-07-30 16:56:29 +02:00
|
|
|
{ zoomAnimationDuration = 0.4, fadeAnimationDuration = 0.4, interactionType = 'tap' } = {}
|
2019-07-18 12:26:39 +02:00
|
|
|
) {
|
2019-07-17 09:56:20 +02:00
|
|
|
super()
|
|
|
|
this.wrapperSelector = wrapperSelector
|
|
|
|
this.overlaySelector = overlaySelector
|
|
|
|
|
|
|
|
this.zoomAnimationDuration = zoomAnimationDuration
|
|
|
|
this.fadeAnimationDuration = fadeAnimationDuration
|
|
|
|
this.interactionType = interactionType
|
|
|
|
}
|
|
|
|
get require() {
|
2019-07-18 12:26:39 +02:00
|
|
|
return [CardPlugin.LightBox]
|
2019-07-17 09:56:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
_getVerificationFunctions(context) {
|
|
|
|
let arr = super._getVerificationFunctions(context)
|
2019-07-30 16:56:29 +02:00
|
|
|
let funcs = [this._verifyElementsExist.bind(this, context, this.wrapperSelector, this.overlaySelector)]
|
2019-07-17 09:56:20 +02:00
|
|
|
return arr.concat(funcs)
|
|
|
|
}
|
|
|
|
|
|
|
|
append(context) {
|
|
|
|
let source = this._retrieveSource(context)
|
|
|
|
this.setupEnlargeableThumbnail(context, source)
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the preview image.
|
|
|
|
*
|
|
|
|
* It depends on the fact, that the thumbnail image is in the same directory
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @param {*} context
|
|
|
|
* @returns
|
|
|
|
* @memberof EnlargeableThumbnail
|
|
|
|
*/
|
|
|
|
_retrieveSource(context) {
|
2019-07-18 12:26:39 +02:00
|
|
|
let img = context.querySelector(this.wrapperSelector + ' img')
|
|
|
|
let src = img.getAttribute('src')
|
|
|
|
let parts = src.split('/')
|
2019-07-17 09:56:20 +02:00
|
|
|
parts.pop()
|
|
|
|
parts.push(parts[parts.length - 1])
|
2019-07-18 12:26:39 +02:00
|
|
|
let imagePath = parts.join('/') + '.jpg'
|
2019-07-17 09:56:20 +02:00
|
|
|
return imagePath
|
|
|
|
}
|
|
|
|
|
|
|
|
setupEnlargeableThumbnail(context, src) {
|
|
|
|
let wrapper = context.querySelector(this.wrapperSelector)
|
|
|
|
let overlay = context.querySelector(this.overlaySelector)
|
|
|
|
|
2019-07-18 12:26:39 +02:00
|
|
|
let icon = document.createElement('div')
|
|
|
|
icon.className = 'button corner-button bottom-right icon zoom'
|
2019-07-17 09:56:20 +02:00
|
|
|
wrapper.appendChild(icon)
|
|
|
|
|
|
|
|
Object.assign(wrapper.style, {
|
2022-10-04 10:51:35 +02:00
|
|
|
cursor: 'pointer',
|
2019-07-17 09:56:20 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
InteractionMapper.on(this.interactionType, wrapper, () => {
|
|
|
|
this.openThumbnailDetail(context, src)
|
|
|
|
})
|
|
|
|
|
|
|
|
InteractionMapper.on(this.interactionType, overlay, () => {
|
|
|
|
this.closeThumnailDetail(context)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
openThumbnailDetail(context, src) {
|
2019-07-18 12:26:39 +02:00
|
|
|
let overlay = context.querySelector('.img-overlay')
|
|
|
|
overlay.innerHTML = ''
|
2019-07-17 09:56:20 +02:00
|
|
|
let source = context.querySelector(this.wrapperSelector)
|
|
|
|
let sourceStyle = window.getComputedStyle(source)
|
|
|
|
let imageWrapper = source.cloneNode(true)
|
2019-07-18 12:26:39 +02:00
|
|
|
let image = imageWrapper.querySelector('img')
|
2019-07-17 09:56:20 +02:00
|
|
|
|
|
|
|
Object.assign(imageWrapper.style, {
|
2019-07-18 12:26:39 +02:00
|
|
|
maxWidth: 'none',
|
2022-10-04 10:51:35 +02:00
|
|
|
maxHeight: 'none',
|
2019-07-17 09:56:20 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
Object.assign(image.style, {
|
2019-07-18 12:26:39 +02:00
|
|
|
width: '100%',
|
|
|
|
height: '100%',
|
2022-10-04 10:51:35 +02:00
|
|
|
objectFit: 'cover',
|
2019-07-17 09:56:20 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
this._replaceIcon(imageWrapper)
|
|
|
|
|
|
|
|
image.onload = () => {
|
2019-07-18 12:26:39 +02:00
|
|
|
let header = context.querySelector('header')
|
2019-07-17 09:56:20 +02:00
|
|
|
let headerStlye = window.getComputedStyle(header)
|
|
|
|
|
|
|
|
/**
|
|
|
|
* First the maxFillRatio is considered.
|
|
|
|
* It describes how much the image is allowed to exceed the context element.
|
|
|
|
*/
|
|
|
|
const maxFillRatio = 1.5
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The minor side should not exceed the height of the context window.
|
|
|
|
*/
|
2019-07-18 12:26:39 +02:00
|
|
|
const maxMinorSize =
|
2019-07-30 16:56:29 +02:00
|
|
|
context.offsetHeight - 2 * parseInt(headerStlye.paddingTop) - 2 * parseInt(headerStlye.marginTop)
|
2019-07-17 09:56:20 +02:00
|
|
|
|
|
|
|
const max = {
|
|
|
|
width: context.offsetWidth * maxFillRatio,
|
2022-10-04 10:51:35 +02:00
|
|
|
height: context.offsetHeight * maxFillRatio,
|
2019-07-17 09:56:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
let majorSide
|
|
|
|
let minorSide
|
2019-07-18 12:26:39 +02:00
|
|
|
const _width = { name: 'width', axis: 'x' }
|
|
|
|
const _height = { name: 'height', axis: 'y' }
|
2019-07-17 09:56:20 +02:00
|
|
|
if (image.naturalHeight > image.naturalWidth) {
|
|
|
|
majorSide = _height
|
|
|
|
minorSide = _width
|
|
|
|
} else {
|
|
|
|
majorSide = _width
|
|
|
|
minorSide = _height
|
|
|
|
}
|
|
|
|
|
|
|
|
function capitalize(string) {
|
|
|
|
return string.charAt(0).toUpperCase() + string.slice(1)
|
|
|
|
}
|
|
|
|
function getImageSize(side) {
|
2019-07-18 12:26:39 +02:00
|
|
|
return image['natural' + capitalize(side.name)]
|
2019-07-17 09:56:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const majorImageSize = getImageSize(majorSide)
|
|
|
|
// const minorImageSize = getImageSize(minorSide)
|
|
|
|
|
|
|
|
let ratio = getImageSize(minorSide) / getImageSize(majorSide)
|
2019-07-30 16:56:29 +02:00
|
|
|
let size = majorImageSize > max[majorSide.name] ? max[majorSide.name] : majorImageSize
|
2019-07-17 09:56:20 +02:00
|
|
|
|
|
|
|
if (size * ratio > maxMinorSize) {
|
|
|
|
size = maxMinorSize / ratio
|
|
|
|
}
|
|
|
|
|
|
|
|
let targetDimensions = {
|
|
|
|
width: 0,
|
2022-10-04 10:51:35 +02:00
|
|
|
height: 0,
|
2019-07-17 09:56:20 +02:00
|
|
|
}
|
|
|
|
|
2019-07-30 16:56:29 +02:00
|
|
|
let position = Points.fromPageToNode(context, Points.fromNodeToPage(source, { x: 0, y: 0 }))
|
2019-07-17 09:56:20 +02:00
|
|
|
|
|
|
|
let targetOffset = {
|
|
|
|
x: 0,
|
2022-10-04 10:51:35 +02:00
|
|
|
y: 0,
|
2019-07-17 09:56:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
targetDimensions[majorSide.name] = size
|
|
|
|
targetDimensions[minorSide.name] = size * ratio
|
|
|
|
|
2019-07-18 12:26:39 +02:00
|
|
|
targetOffset[majorSide.axis] =
|
2019-07-30 16:56:29 +02:00
|
|
|
(context['offset' + capitalize(majorSide.name)] - targetDimensions[majorSide.name]) / 2
|
2019-07-18 12:26:39 +02:00
|
|
|
targetOffset[minorSide.axis] =
|
2019-07-30 16:56:29 +02:00
|
|
|
(context['offset' + capitalize(minorSide.name)] - targetDimensions[minorSide.name]) / 2
|
2019-07-17 09:56:20 +02:00
|
|
|
|
|
|
|
overlay.appendChild(imageWrapper)
|
|
|
|
|
|
|
|
TweenMax.set(imageWrapper, {
|
|
|
|
left: 0,
|
|
|
|
top: 0,
|
|
|
|
x: position.x,
|
|
|
|
y: position.y,
|
2019-07-18 12:26:39 +02:00
|
|
|
position: 'absolute',
|
2019-07-17 09:56:20 +02:00
|
|
|
width: parseInt(sourceStyle.width),
|
2022-10-04 10:51:35 +02:00
|
|
|
height: parseInt(sourceStyle.height),
|
2019-07-17 09:56:20 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
TweenMax.set(overlay, {
|
2019-07-18 12:26:39 +02:00
|
|
|
display: 'flex',
|
2022-10-04 10:51:35 +02:00
|
|
|
autoAlpha: 0,
|
2019-07-17 09:56:20 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
TweenMax.to(imageWrapper, this.zoomAnimationDuration, {
|
|
|
|
x: targetOffset.x,
|
|
|
|
y: targetOffset.y,
|
|
|
|
width: targetDimensions.width,
|
2022-10-04 10:51:35 +02:00
|
|
|
height: targetDimensions.height,
|
2019-07-17 09:56:20 +02:00
|
|
|
})
|
|
|
|
TweenMax.to(overlay, this.fadeAnimationTime, {
|
2022-10-04 10:51:35 +02:00
|
|
|
autoAlpha: 1,
|
2019-07-17 09:56:20 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
image.src = src
|
|
|
|
}
|
|
|
|
|
|
|
|
_replaceIcon(clone) {
|
2019-07-18 12:26:39 +02:00
|
|
|
let zoomIcon = clone.querySelector('.icon.zoom')
|
|
|
|
zoomIcon.classList.remove('zoom')
|
|
|
|
zoomIcon.classList.add('close')
|
2019-07-17 09:56:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
getBorderHeight(style) {
|
2019-07-30 16:56:29 +02:00
|
|
|
const borderWidth = parseInt(style.borderTopWidth) + parseInt(style.borderBottomWidth)
|
|
|
|
const padding = parseInt(style.paddingTop) + parseInt(style.paddingBottom)
|
2019-07-17 09:56:20 +02:00
|
|
|
return parseInt(style.width) + borderWidth + padding
|
|
|
|
}
|
|
|
|
|
|
|
|
getBorderWidth(style) {
|
2019-07-30 16:56:29 +02:00
|
|
|
const borderWidth = parseInt(style.borderLeftWidth) + parseInt(style.borderRightWidth)
|
|
|
|
const padding = parseInt(style.paddingLeft) + parseInt(style.paddingRight)
|
2019-07-17 09:56:20 +02:00
|
|
|
return parseInt(style.width) + borderWidth + padding
|
|
|
|
}
|
|
|
|
|
|
|
|
closeThumnailDetail(context) {
|
2019-07-18 12:26:39 +02:00
|
|
|
let overlay = context.querySelector('.img-overlay')
|
2019-07-17 09:56:20 +02:00
|
|
|
|
|
|
|
let timeline = new TimelineLite()
|
|
|
|
|
2019-07-18 12:26:39 +02:00
|
|
|
timeline
|
|
|
|
.to(overlay, this.fadeAnimationDuration, {
|
2022-10-04 10:51:35 +02:00
|
|
|
autoAlpha: 0,
|
2019-07-18 12:26:39 +02:00
|
|
|
})
|
|
|
|
.set(overlay, {
|
2022-10-04 10:51:35 +02:00
|
|
|
display: 'none',
|
2019-07-18 12:26:39 +02:00
|
|
|
})
|
2019-07-17 09:56:20 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
CardPlugin.Ui = class UiPlugin extends CardPluginBase {
|
|
|
|
constructor(className, parent = null) {
|
|
|
|
super()
|
|
|
|
this.parent = parent
|
|
|
|
this.className = className
|
|
|
|
}
|
|
|
|
|
|
|
|
_getVerificationFunctions(context) {
|
|
|
|
let arr = super._getVerificationFunctions(context)
|
2019-07-18 12:26:39 +02:00
|
|
|
let func = [this._doesParentExist.bind(this, context, this.parent)]
|
2019-07-17 09:56:20 +02:00
|
|
|
return arr.concat(func)
|
|
|
|
}
|
|
|
|
|
|
|
|
_doesParentExist(context, parent) {
|
|
|
|
if (parent == null) return true
|
2019-07-18 12:26:39 +02:00
|
|
|
let valid = context.querySelector(parent) != null
|
2019-07-30 16:56:29 +02:00
|
|
|
if (!valid) console.error('Could not find parent on context.', context, parent)
|
2019-07-17 09:56:20 +02:00
|
|
|
return valid
|
|
|
|
}
|
|
|
|
|
|
|
|
append(context) {
|
2019-07-30 16:56:29 +02:00
|
|
|
parent = this.parent == null ? context : context.querySelector(this.parent).appendChild(container)
|
2019-07-18 12:26:39 +02:00
|
|
|
let container = document.createElement('div')
|
2019-07-17 09:56:20 +02:00
|
|
|
container.className = this.className
|
|
|
|
parent.appendChild(container)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
CardPlugin.Speech = class SpeechPlugin extends CardPluginBase {
|
2019-07-18 12:26:39 +02:00
|
|
|
constructor(parentSelector, className, interactionType = 'tap') {
|
2019-07-17 09:56:20 +02:00
|
|
|
super()
|
|
|
|
this.className = className
|
|
|
|
this.parentSelector = parentSelector
|
|
|
|
this.interactionType = interactionType
|
|
|
|
|
2019-08-14 17:46:12 +02:00
|
|
|
// We directly overwriting the function with a version that has a binded
|
|
|
|
// reference to itself. Doing so provides an easy and reliable way to remove
|
|
|
|
// the event listener using this function. - SO
|
|
|
|
this._domWasChanged = this._domWasChanged.bind(this)
|
2019-07-17 09:56:20 +02:00
|
|
|
|
2019-08-14 17:46:12 +02:00
|
|
|
/*
|
2019-08-13 14:31:03 +02:00
|
|
|
Speech doesn't stop when page is navigated.
|
|
|
|
Therefore we do it manually here.
|
|
|
|
*/
|
2019-08-14 17:46:12 +02:00
|
|
|
window.addEventListener('beforeunload', () => {
|
|
|
|
window.speechSynthesis.cancel()
|
|
|
|
})
|
2019-07-17 09:56:20 +02:00
|
|
|
|
2019-08-14 17:46:12 +02:00
|
|
|
// Binding the function beforehand ensures, that the end function is always the same.
|
|
|
|
this._end = this._end.bind(this)
|
2019-07-17 09:56:20 +02:00
|
|
|
|
2019-08-14 17:46:12 +02:00
|
|
|
this._setupUtterance()
|
2022-10-04 10:51:35 +02:00
|
|
|
this.utterance.addEventListener('end', (event) => {
|
2019-08-14 17:46:12 +02:00
|
|
|
this._end()
|
|
|
|
})
|
|
|
|
}
|
2019-07-17 09:56:20 +02:00
|
|
|
|
2019-08-14 17:46:12 +02:00
|
|
|
get require() {
|
|
|
|
return [CardPlugin.Ui]
|
|
|
|
}
|
2019-07-17 09:56:20 +02:00
|
|
|
|
2019-08-14 17:46:12 +02:00
|
|
|
subcardChanged(closed) {
|
|
|
|
if (this.cardActive) {
|
|
|
|
this._updateText(closed)
|
|
|
|
}
|
2019-07-17 09:56:20 +02:00
|
|
|
}
|
|
|
|
|
2019-08-14 17:46:12 +02:00
|
|
|
get cardActive() {
|
|
|
|
return this.activeUtterance == this.utterance
|
|
|
|
}
|
2019-08-13 14:31:03 +02:00
|
|
|
|
2019-08-14 17:46:12 +02:00
|
|
|
_updateText(ignoreSubcard = false) {
|
|
|
|
let node = this.context
|
|
|
|
let subcard = node.querySelector('.mainview > .subcard')
|
2019-08-13 14:31:03 +02:00
|
|
|
|
2019-08-14 17:46:12 +02:00
|
|
|
if (ignoreSubcard) {
|
|
|
|
if (subcard != null) {
|
|
|
|
let clone = node.cloneNode(true)
|
|
|
|
let clonedSubcard = clone.querySelector('.mainview > .subcard')
|
|
|
|
clonedSubcard.parentNode.removeChild(clonedSubcard)
|
|
|
|
node = clone
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (subcard) {
|
|
|
|
let clone = subcard.cloneNode(true)
|
2022-10-04 10:51:35 +02:00
|
|
|
clone.querySelectorAll('figure').forEach((figure) => {
|
2019-08-14 17:46:12 +02:00
|
|
|
figure.parentNode.removeChild(figure)
|
|
|
|
})
|
|
|
|
|
|
|
|
node = clone
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let id = this.context.getAttribute('data-id')
|
|
|
|
let src = this.context.getAttribute('data-source')
|
|
|
|
let subcardSource = null
|
2019-08-13 14:31:03 +02:00
|
|
|
if (subcard != null) {
|
2019-08-14 17:46:12 +02:00
|
|
|
subcardSource = subcard.getAttribute('data-source')
|
2019-08-13 14:31:03 +02:00
|
|
|
}
|
2019-07-17 09:56:20 +02:00
|
|
|
|
2019-08-14 17:46:12 +02:00
|
|
|
if (!window.speechSynthesis.speaking) {
|
|
|
|
this._start(node)
|
|
|
|
Logging.log(`Started speech on card: id:${id} - source: ${src} - subcard: ${subcardSource}`)
|
|
|
|
} else if (this.cardActive && this._sameText(node)) {
|
|
|
|
Logging.log(`Stopped speech on card: id:${id} - source: ${src} - subcard: ${subcardSource}`)
|
|
|
|
this._stop()
|
|
|
|
} else {
|
|
|
|
Logging.log(`Updated Text on card: id:${id} - source: ${src} - subcard: ${subcardSource}`)
|
|
|
|
this._stop()
|
|
|
|
.then(() => {
|
|
|
|
this._start(node)
|
|
|
|
})
|
|
|
|
.catch(console.error)
|
2019-08-13 14:31:03 +02:00
|
|
|
}
|
2019-07-17 09:56:20 +02:00
|
|
|
}
|
|
|
|
|
2019-08-14 17:46:12 +02:00
|
|
|
_sameText(node) {
|
|
|
|
return this.utterance.text == this._cleanupText(node)
|
2019-07-17 09:56:20 +02:00
|
|
|
}
|
|
|
|
|
2019-08-14 17:46:12 +02:00
|
|
|
_setupUtterance() {
|
|
|
|
this.utterance = new SpeechSynthesisUtterance()
|
|
|
|
this.utterance.lang = 'de-DE'
|
|
|
|
}
|
2019-07-17 09:56:20 +02:00
|
|
|
|
2019-08-14 17:46:12 +02:00
|
|
|
get require() {
|
|
|
|
return [CardPlugin.Ui]
|
|
|
|
}
|
2019-08-13 14:31:03 +02:00
|
|
|
|
2019-08-14 17:46:12 +02:00
|
|
|
remove() {
|
|
|
|
this.button = null
|
2019-11-20 15:59:10 +01:00
|
|
|
this._stopThisSpeechIfPlaying()
|
2019-08-14 17:46:12 +02:00
|
|
|
this.context.removeEventListener('DOMNodeRemoved', this._domWasChanged)
|
|
|
|
super.remove()
|
|
|
|
}
|
2019-08-13 14:31:03 +02:00
|
|
|
|
2019-08-14 17:46:12 +02:00
|
|
|
append(context) {
|
|
|
|
let container = context.querySelector(this.parentSelector)
|
|
|
|
this.button = document.createElement('div')
|
|
|
|
this.button.className = 'icon button ' + this.className
|
|
|
|
container.appendChild(this.button)
|
2019-08-13 14:31:03 +02:00
|
|
|
|
2019-08-14 17:46:12 +02:00
|
|
|
InteractionMapper.on(this.interactionType, this.button, () => {
|
|
|
|
this.speak()
|
|
|
|
})
|
2019-08-13 14:31:03 +02:00
|
|
|
|
2019-08-14 17:46:12 +02:00
|
|
|
context.addEventListener('DOMNodeRemoved', this._domWasChanged)
|
|
|
|
}
|
2019-08-13 14:31:03 +02:00
|
|
|
|
2019-11-20 15:59:10 +01:00
|
|
|
/**
|
|
|
|
* Don't remember why this was required - SO 20-11-2019
|
|
|
|
*/
|
2019-08-14 17:46:12 +02:00
|
|
|
_domWasChanged(event) {
|
2019-11-20 15:59:10 +01:00
|
|
|
if (event.target == this.context) this._stopThisSpeechIfPlaying()
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Stops the module if it is set in the context.
|
|
|
|
*/
|
|
|
|
_stopThisSpeechIfPlaying() {
|
|
|
|
if (this.context == null || this.context['lastSpeechNode'] == window.speechSynthesis['speechPluginNode']) {
|
2019-07-17 09:56:20 +02:00
|
|
|
this._stop()
|
|
|
|
}
|
2019-08-14 17:46:12 +02:00
|
|
|
}
|
2019-07-17 09:56:20 +02:00
|
|
|
|
2019-08-14 17:46:12 +02:00
|
|
|
_isSameNode(node) {
|
|
|
|
return this.currentText == node.textContent
|
|
|
|
}
|
2019-08-13 14:31:03 +02:00
|
|
|
|
2019-08-14 17:46:12 +02:00
|
|
|
speak() {
|
|
|
|
/**
|
2019-08-13 14:31:03 +02:00
|
|
|
* This is a little bit ugly, but imho the most elegant of all dirty solutions.
|
|
|
|
*
|
|
|
|
5ht * Within the plugins we have no knowledge of other cards and such. But must differentiate the
|
|
|
|
* clicks by their corresponding owner. The SpeechUtterance just takes a text and has no knowledge
|
|
|
|
* about the node that is currently read to the user.
|
|
|
|
*
|
|
|
|
* This means, that we can identify same text, but not differentiate same text on different nodes.
|
|
|
|
* To account for that, we add the node to the speechSynthesis object (#benefitsOfJavaScript) and
|
|
|
|
* have access to the node, by - let's say - expanding the functionality of the SpeechSynthesis object.
|
|
|
|
*
|
|
|
|
* SO -17.07.19
|
|
|
|
*/
|
|
|
|
|
2019-08-14 17:46:12 +02:00
|
|
|
this._updateText()
|
|
|
|
}
|
2019-08-13 14:31:03 +02:00
|
|
|
|
2019-08-14 17:46:12 +02:00
|
|
|
async _stop() {
|
2022-10-04 10:51:35 +02:00
|
|
|
return new Promise((resolve) => {
|
2019-08-14 17:46:12 +02:00
|
|
|
if (this.activeUtterance) {
|
|
|
|
this.activeUtterance.addEventListener('end', resolve, {
|
2022-10-04 10:51:35 +02:00
|
|
|
once: true,
|
2019-08-14 17:46:12 +02:00
|
|
|
})
|
|
|
|
}
|
2019-07-17 09:56:20 +02:00
|
|
|
|
2019-08-14 17:46:12 +02:00
|
|
|
window.speechSynthesis.cancel()
|
|
|
|
})
|
|
|
|
}
|
2019-07-17 09:56:20 +02:00
|
|
|
|
2019-08-14 17:46:12 +02:00
|
|
|
get activeUtterance() {
|
|
|
|
return window.speechSynthesis['speechPluginUtterance']
|
|
|
|
}
|
2019-07-17 09:56:20 +02:00
|
|
|
|
2019-08-14 17:46:12 +02:00
|
|
|
_end() {
|
|
|
|
window.speechSynthesis['speechPluginNode'] = null
|
|
|
|
window.speechSynthesis['speechPluginUtterance'] = null
|
|
|
|
this._deactivateButton()
|
|
|
|
this.context.classList.remove('speech-plugin-is-reading')
|
|
|
|
}
|
2019-07-17 09:56:20 +02:00
|
|
|
|
2019-08-14 17:46:12 +02:00
|
|
|
_start(node) {
|
|
|
|
window.speechSynthesis.cancel()
|
2019-07-17 09:56:20 +02:00
|
|
|
|
2019-08-14 17:46:12 +02:00
|
|
|
window.speechSynthesis['speechPluginUtterance'] = this.utterance
|
|
|
|
window.speechSynthesis['speechPluginNode'] = node
|
|
|
|
this.context['lastSpeechNode'] = node
|
2019-08-13 14:31:03 +02:00
|
|
|
|
2019-08-14 17:46:12 +02:00
|
|
|
let cleanText = this._cleanupText(node)
|
|
|
|
this.utterance.text = cleanText
|
|
|
|
window.speechSynthesis.speak(this.utterance)
|
|
|
|
this._activateButton()
|
2019-08-13 14:31:03 +02:00
|
|
|
|
2019-08-14 17:46:12 +02:00
|
|
|
this.context.classList.add('speech-plugin-is-reading')
|
|
|
|
}
|
2019-08-13 14:31:03 +02:00
|
|
|
|
2019-11-20 15:59:10 +01:00
|
|
|
closed() {}
|
|
|
|
|
2019-08-14 17:46:12 +02:00
|
|
|
_cleanupText(node) {
|
|
|
|
let text = node.textContent
|
|
|
|
text = this._removeShy(text)
|
|
|
|
return text
|
|
|
|
}
|
2019-08-13 14:31:03 +02:00
|
|
|
|
2019-08-14 17:46:12 +02:00
|
|
|
_removeShy(text) {
|
|
|
|
return text.replace(/\u00AD/g, '')
|
|
|
|
}
|
2019-08-13 14:31:03 +02:00
|
|
|
|
2019-08-14 17:46:12 +02:00
|
|
|
_activateButton() {
|
|
|
|
if (this.button) this.button.classList.add('active')
|
|
|
|
}
|
|
|
|
_deactivateButton() {
|
|
|
|
if (this.button) this.button.classList.remove('active')
|
|
|
|
}
|
2019-08-13 14:31:03 +02:00
|
|
|
}
|