2024-06-12 15:08:48 +00:00
|
|
|
// SPDX-FileCopyrightText: 2024 John Livingston <https://www.john-livingston.fr/>
|
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
import type { ChannelConfigurationElement } from '../channel-configuration'
|
|
|
|
import type { DynamicFormHeader, DynamicFormSchema } from '../../../lib/elements/dynamic-table-form'
|
|
|
|
import { ptTr } from '../../../lib/directives/translation'
|
|
|
|
import { html, TemplateResult } from 'lit'
|
|
|
|
import { classMap } from 'lit/directives/class-map.js'
|
|
|
|
|
|
|
|
export function tplChannelConfiguration (el: ChannelConfigurationElement): TemplateResult {
|
|
|
|
const tableHeaderList: {[key: string]: DynamicFormHeader} = {
|
|
|
|
forbiddenWords: {
|
|
|
|
entries: {
|
|
|
|
colName: ptTr(LOC_LIVECHAT_CONFIGURATION_CHANNEL_FORBIDDEN_WORDS_LABEL),
|
|
|
|
description: ptTr(LOC_LIVECHAT_CONFIGURATION_CHANNEL_FORBIDDEN_WORDS_DESC2)
|
|
|
|
},
|
|
|
|
regexp: {
|
|
|
|
colName: ptTr(LOC_LIVECHAT_CONFIGURATION_CHANNEL_FORBIDDEN_WORDS_REGEXP_LABEL),
|
|
|
|
description: ptTr(LOC_LIVECHAT_CONFIGURATION_CHANNEL_FORBIDDEN_WORDS_REGEXP_DESC)
|
|
|
|
},
|
|
|
|
applyToModerators: {
|
|
|
|
colName: ptTr(LOC_LIVECHAT_CONFIGURATION_CHANNEL_FORBIDDEN_WORDS_APPLYTOMODERATORS_LABEL),
|
|
|
|
description: ptTr(LOC_LIVECHAT_CONFIGURATION_CHANNEL_FORBIDDEN_WORDS_APPLYTOMODERATORS_DESC)
|
|
|
|
},
|
|
|
|
label: {
|
|
|
|
colName: ptTr(LOC_LIVECHAT_CONFIGURATION_CHANNEL_FORBIDDEN_WORDS_LABEL_LABEL),
|
|
|
|
description: ptTr(LOC_LIVECHAT_CONFIGURATION_CHANNEL_FORBIDDEN_WORDS_LABEL_DESC)
|
|
|
|
},
|
|
|
|
reason: {
|
|
|
|
colName: ptTr(LOC_LIVECHAT_CONFIGURATION_CHANNEL_FORBIDDEN_WORDS_REASON_LABEL),
|
|
|
|
description: ptTr(LOC_LIVECHAT_CONFIGURATION_CHANNEL_FORBIDDEN_WORDS_REASON_DESC)
|
|
|
|
},
|
|
|
|
comments: {
|
|
|
|
colName: ptTr(LOC_LIVECHAT_CONFIGURATION_CHANNEL_FORBIDDEN_WORDS_COMMENTS_LABEL),
|
|
|
|
description: ptTr(LOC_LIVECHAT_CONFIGURATION_CHANNEL_FORBIDDEN_WORDS_COMMENTS_DESC)
|
|
|
|
}
|
|
|
|
},
|
|
|
|
quotes: {
|
|
|
|
messages: {
|
|
|
|
colName: ptTr(LOC_LIVECHAT_CONFIGURATION_CHANNEL_QUOTE_LABEL2),
|
|
|
|
description: ptTr(LOC_LIVECHAT_CONFIGURATION_CHANNEL_QUOTE_DESC2)
|
|
|
|
},
|
|
|
|
delay: {
|
|
|
|
colName: ptTr(LOC_LIVECHAT_CONFIGURATION_CHANNEL_QUOTE_DELAY_LABEL),
|
|
|
|
description: ptTr(LOC_LIVECHAT_CONFIGURATION_CHANNEL_QUOTE_DELAY_DESC)
|
|
|
|
}
|
|
|
|
},
|
|
|
|
commands: {
|
|
|
|
command: {
|
|
|
|
colName: ptTr(LOC_LIVECHAT_CONFIGURATION_CHANNEL_COMMAND_CMD_LABEL),
|
|
|
|
description: ptTr(LOC_LIVECHAT_CONFIGURATION_CHANNEL_COMMAND_CMD_DESC)
|
|
|
|
},
|
|
|
|
message: {
|
|
|
|
colName: ptTr(LOC_LIVECHAT_CONFIGURATION_CHANNEL_COMMAND_MESSAGE_LABEL),
|
|
|
|
description: ptTr(LOC_LIVECHAT_CONFIGURATION_CHANNEL_COMMAND_MESSAGE_DESC)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
const tableSchema: {[key: string]: DynamicFormSchema} = {
|
|
|
|
forbiddenWords: {
|
|
|
|
entries: {
|
|
|
|
inputType: 'tags',
|
|
|
|
default: [],
|
2024-06-13 08:48:13 +00:00
|
|
|
separator: '\n'
|
2024-06-12 15:08:48 +00:00
|
|
|
},
|
|
|
|
regexp: {
|
|
|
|
inputType: 'checkbox',
|
|
|
|
default: false
|
|
|
|
},
|
|
|
|
applyToModerators: {
|
|
|
|
inputType: 'checkbox',
|
|
|
|
default: false
|
|
|
|
},
|
|
|
|
label: {
|
|
|
|
inputType: 'text',
|
|
|
|
default: ''
|
|
|
|
},
|
|
|
|
reason: {
|
|
|
|
inputType: 'text',
|
2024-06-12 17:13:35 +00:00
|
|
|
default: ''
|
2024-06-12 15:08:48 +00:00
|
|
|
},
|
|
|
|
comments: {
|
|
|
|
inputType: 'textarea',
|
|
|
|
default: ''
|
|
|
|
}
|
|
|
|
},
|
|
|
|
quotes: {
|
|
|
|
messages: {
|
2024-06-13 08:48:13 +00:00
|
|
|
inputType: 'textarea',
|
2024-06-12 15:08:48 +00:00
|
|
|
default: [],
|
2024-06-13 08:48:13 +00:00
|
|
|
separator: '\n'
|
2024-06-12 15:08:48 +00:00
|
|
|
},
|
|
|
|
delay: {
|
|
|
|
inputType: 'number',
|
|
|
|
default: 10
|
|
|
|
}
|
|
|
|
},
|
|
|
|
commands: {
|
|
|
|
command: {
|
|
|
|
inputType: 'text',
|
|
|
|
default: ''
|
|
|
|
},
|
|
|
|
message: {
|
|
|
|
inputType: 'text',
|
|
|
|
default: ''
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return html`
|
|
|
|
<div class="margin-content peertube-plugin-livechat-configuration
|
|
|
|
peertube-plugin-livechat-configuration-channel">
|
|
|
|
<h1>
|
|
|
|
<span class="peertube-plugin-livechat-configuration-channel-info">
|
|
|
|
<span>${el.channelConfiguration?.channel.displayName}</span>
|
|
|
|
<span>${el.channelConfiguration?.channel.name}</span>
|
|
|
|
</span>
|
|
|
|
</h1>
|
|
|
|
|
|
|
|
<livechat-channel-tabs .active=${'configuration'} .channelId=${el.channelId}></livechat-channel-tabs>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
${ptTr(LOC_LIVECHAT_CONFIGURATION_CHANNEL_DESC)}
|
|
|
|
<livechat-help-button .page=${'documentation/user/streamers/channel'}>
|
|
|
|
</livechat-help-button>
|
|
|
|
</p>
|
|
|
|
|
2024-06-13 10:48:58 +00:00
|
|
|
<form livechat-configuration-channel-options role="form" @submit=${el.saveConfig} @change=${el.resetValidation}>
|
2024-06-20 14:46:14 +00:00
|
|
|
|
2024-06-21 16:18:11 +00:00
|
|
|
<livechat-configuration-section-header
|
|
|
|
.label=${ptTr(LOC_LIVECHAT_CONFIGURATION_CHANNEL_TERMS_LABEL)}
|
|
|
|
.description=${ptTr(LOC_LIVECHAT_CONFIGURATION_CHANNEL_TERMS_DESC, true)}
|
|
|
|
.helpPage=${'documentation/user/streamers/channel'}>
|
|
|
|
</livechat-configuration-section-header>
|
|
|
|
<div class="form-group">
|
|
|
|
<textarea
|
|
|
|
name="terms"
|
|
|
|
id="peertube-livechat-terms"
|
|
|
|
.value=${el.channelConfiguration?.configuration.terms ?? ''}
|
|
|
|
maxlength=${el.termsMaxLength()}
|
|
|
|
class=${classMap(
|
|
|
|
Object.assign(
|
|
|
|
{ 'form-control': true },
|
|
|
|
el.getInputValidationClass('terms')
|
|
|
|
)
|
|
|
|
)}
|
|
|
|
@change=${(event: Event) => {
|
|
|
|
if (event?.target && el.channelConfiguration) {
|
|
|
|
let value: string | undefined = (event.target as HTMLTextAreaElement).value
|
|
|
|
if (value === '') { value = undefined }
|
|
|
|
el.channelConfiguration.configuration.terms = value
|
|
|
|
}
|
|
|
|
el.requestUpdate('channelConfiguration')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
></textarea>
|
|
|
|
${el.renderFeedback('peertube-livechat-terms-feedback', 'terms')}
|
|
|
|
</div>
|
|
|
|
|
2024-06-20 14:46:14 +00:00
|
|
|
<livechat-configuration-section-header
|
|
|
|
.label=${ptTr(LOC_LIVECHAT_CONFIGURATION_CHANNEL_MUTE_ANONYMOUS_LABEL)}
|
|
|
|
.description=${ptTr(LOC_LIVECHAT_CONFIGURATION_CHANNEL_MUTE_ANONYMOUS_DESC, true)}
|
|
|
|
.helpPage=${'documentation/user/streamers/moderation'}>
|
|
|
|
</livechat-configuration-section-header>
|
|
|
|
<div class="form-group">
|
|
|
|
<label>
|
|
|
|
<input
|
|
|
|
type="checkbox"
|
|
|
|
name="bot"
|
|
|
|
id="peertube-livechat-mute-anonymous"
|
|
|
|
@input=${(event: InputEvent) => {
|
|
|
|
if (event?.target && el.channelConfiguration) {
|
|
|
|
el.channelConfiguration.configuration.mute.anonymous =
|
|
|
|
(event.target as HTMLInputElement).checked
|
|
|
|
}
|
|
|
|
el.requestUpdate('channelConfiguration')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
value="1"
|
|
|
|
?checked=${el.channelConfiguration?.configuration.mute.anonymous}
|
|
|
|
/>
|
|
|
|
${ptTr(LOC_LIVECHAT_CONFIGURATION_CHANNEL_MUTE_ANONYMOUS_LABEL)}
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
|
2024-06-12 15:08:48 +00:00
|
|
|
<livechat-configuration-section-header
|
2024-06-12 16:51:04 +00:00
|
|
|
.label=${ptTr(LOC_LIVECHAT_CONFIGURATION_CHANNEL_SLOW_MODE_LABEL)}
|
2024-06-13 08:57:34 +00:00
|
|
|
.description=${ptTr(LOC_LIVECHAT_CONFIGURATION_CHANNEL_SLOW_MODE_DESC, true)}
|
2024-06-12 15:08:48 +00:00
|
|
|
.helpPage=${'documentation/user/streamers/slow_mode'}>
|
|
|
|
</livechat-configuration-section-header>
|
|
|
|
<div class="form-group">
|
|
|
|
<label>
|
|
|
|
${ptTr(LOC_LIVECHAT_CONFIGURATION_CHANNEL_SLOW_MODE_LABEL)}
|
|
|
|
<input
|
|
|
|
type="number"
|
|
|
|
name="slowmode_duration"
|
|
|
|
class=${classMap(
|
|
|
|
Object.assign(
|
|
|
|
{ 'form-control': true },
|
|
|
|
el.getInputValidationClass('slowMode.duration')
|
|
|
|
)
|
|
|
|
)}
|
|
|
|
min="0"
|
|
|
|
max="1000"
|
|
|
|
id="peertube-livechat-slowmode-duration"
|
|
|
|
aria-describedby="peertube-livechat-slowmode-duration-feedback"
|
|
|
|
@input=${(event: InputEvent) => {
|
|
|
|
if (event?.target && el.channelConfiguration) {
|
|
|
|
el.channelConfiguration.configuration.slowMode.duration =
|
|
|
|
Number((event.target as HTMLInputElement).value)
|
|
|
|
}
|
|
|
|
el.requestUpdate('channelConfiguration')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
value="${el.channelConfiguration?.configuration.slowMode.duration ?? ''}"
|
|
|
|
/>
|
|
|
|
</label>
|
|
|
|
${el.renderFeedback('peertube-livechat-slowmode-duration-feedback', 'slowMode.duration')}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<livechat-configuration-section-header
|
2024-06-12 16:51:04 +00:00
|
|
|
.label=${ptTr(LOC_LIVECHAT_CONFIGURATION_CHANNEL_BOT_OPTIONS_TITLE)}
|
2024-06-12 15:08:48 +00:00
|
|
|
.description=${''}
|
|
|
|
.helpPage=${'documentation/user/streamers/channel'}>
|
|
|
|
</livechat-configuration-section-header>
|
|
|
|
<div class="form-group">
|
|
|
|
<label>
|
|
|
|
<input
|
|
|
|
type="checkbox"
|
|
|
|
name="bot"
|
|
|
|
id="peertube-livechat-bot"
|
|
|
|
@input=${(event: InputEvent) => {
|
|
|
|
if (event?.target && el.channelConfiguration) {
|
|
|
|
el.channelConfiguration.configuration.bot.enabled =
|
|
|
|
(event.target as HTMLInputElement).checked
|
|
|
|
}
|
|
|
|
el.requestUpdate('channelConfiguration')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
value="1"
|
|
|
|
?checked=${el.channelConfiguration?.configuration.bot.enabled}
|
|
|
|
/>
|
|
|
|
${ptTr(LOC_LIVECHAT_CONFIGURATION_CHANNEL_ENABLE_BOT_LABEL)}
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
${!el.channelConfiguration?.configuration.bot.enabled
|
|
|
|
? ''
|
|
|
|
: html`<div class="form-group">
|
|
|
|
<label for="peertube-livechat-bot-nickname">
|
|
|
|
${ptTr(LOC_LIVECHAT_CONFIGURATION_CHANNEL_BOT_NICKNAME)}
|
|
|
|
</label>
|
|
|
|
<input
|
|
|
|
type="text"
|
|
|
|
name="bot_nickname"
|
|
|
|
class=${classMap(
|
|
|
|
Object.assign(
|
|
|
|
{ 'form-control': true },
|
|
|
|
el.getInputValidationClass('bot.nickname')
|
|
|
|
)
|
|
|
|
)}
|
|
|
|
id="peertube-livechat-bot-nickname"
|
|
|
|
aria-describedby="peertube-livechat-bot-nickname-feedback"
|
|
|
|
@input=${(event: InputEvent) => {
|
|
|
|
if (event?.target && el.channelConfiguration) {
|
|
|
|
el.channelConfiguration.configuration.bot.nickname =
|
|
|
|
(event.target as HTMLInputElement).value
|
|
|
|
}
|
|
|
|
el.requestUpdate('channelConfiguration')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
value="${el.channelConfiguration?.configuration.bot.nickname ?? ''}"
|
|
|
|
/>
|
|
|
|
${el.renderFeedback('peertube-livechat-bot-nickname-feedback', 'bot.nickname')}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<livechat-configuration-section-header
|
2024-06-12 16:51:04 +00:00
|
|
|
.label=${ptTr(LOC_LIVECHAT_CONFIGURATION_CHANNEL_FORBIDDEN_WORDS_LABEL)}
|
2024-06-12 15:08:48 +00:00
|
|
|
.description=${ptTr(LOC_LIVECHAT_CONFIGURATION_CHANNEL_FORBIDDEN_WORDS_DESC)}
|
|
|
|
.helpPage=${'documentation/user/streamers/bot/forbidden_words'}>
|
|
|
|
</livechat-configuration-section-header>
|
|
|
|
<livechat-dynamic-table-form
|
|
|
|
.header=${tableHeaderList.forbiddenWords}
|
|
|
|
.schema=${tableSchema.forbiddenWords}
|
|
|
|
.validation=${el.validationError?.properties}
|
|
|
|
.validationPrefix=${'bot.forbiddenWords'}
|
|
|
|
.rows=${el.channelConfiguration?.configuration.bot.forbiddenWords}
|
|
|
|
@update=${(e: CustomEvent) => {
|
2024-06-13 10:48:58 +00:00
|
|
|
el.resetValidation(e)
|
2024-06-12 15:08:48 +00:00
|
|
|
if (el.channelConfiguration) {
|
|
|
|
el.channelConfiguration.configuration.bot.forbiddenWords = e.detail
|
|
|
|
el.requestUpdate('channelConfiguration')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.formName=${'forbidden-words'}
|
|
|
|
></livechat-dynamic-table-form>
|
|
|
|
|
|
|
|
<livechat-configuration-section-header
|
2024-06-12 16:51:04 +00:00
|
|
|
.label=${ptTr(LOC_LIVECHAT_CONFIGURATION_CHANNEL_QUOTE_LABEL)}
|
2024-06-12 15:08:48 +00:00
|
|
|
.description=${ptTr(LOC_LIVECHAT_CONFIGURATION_CHANNEL_QUOTE_DESC)}
|
|
|
|
.helpPage=${'documentation/user/streamers/bot/quotes'}>
|
|
|
|
</livechat-configuration-section-header>
|
|
|
|
<livechat-dynamic-table-form
|
|
|
|
.header=${tableHeaderList.quotes}
|
|
|
|
.schema=${tableSchema.quotes}
|
|
|
|
.validation=${el.validationError?.properties}
|
|
|
|
.validationPrefix=${'bot.quotes'}
|
|
|
|
.rows=${el.channelConfiguration?.configuration.bot.quotes}
|
|
|
|
@update=${(e: CustomEvent) => {
|
2024-06-13 10:48:58 +00:00
|
|
|
el.resetValidation(e)
|
2024-06-12 15:08:48 +00:00
|
|
|
if (el.channelConfiguration) {
|
|
|
|
el.channelConfiguration.configuration.bot.quotes = e.detail
|
|
|
|
el.requestUpdate('channelConfiguration')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.formName=${'quote'}
|
|
|
|
></livechat-dynamic-table-form>
|
|
|
|
|
|
|
|
<livechat-configuration-section-header
|
2024-06-12 16:51:04 +00:00
|
|
|
.label=${ptTr(LOC_LIVECHAT_CONFIGURATION_CHANNEL_COMMAND_LABEL)}
|
2024-06-12 15:08:48 +00:00
|
|
|
.description=${ptTr(LOC_LIVECHAT_CONFIGURATION_CHANNEL_COMMAND_DESC)}
|
|
|
|
.helpPage=${'documentation/user/streamers/bot/commands'}>
|
|
|
|
</livechat-configuration-section-header>
|
|
|
|
<livechat-dynamic-table-form
|
|
|
|
.header=${tableHeaderList.commands}
|
|
|
|
.schema=${tableSchema.commands}
|
|
|
|
.validation=${el.validationError?.properties}
|
|
|
|
.validationPrefix=${'bot.commands'}
|
|
|
|
.rows=${el.channelConfiguration?.configuration.bot.commands}
|
|
|
|
@update=${(e: CustomEvent) => {
|
2024-06-13 10:48:58 +00:00
|
|
|
el.resetValidation(e)
|
2024-06-12 15:08:48 +00:00
|
|
|
if (el.channelConfiguration) {
|
|
|
|
el.channelConfiguration.configuration.bot.commands = e.detail
|
|
|
|
el.requestUpdate('channelConfiguration')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.formName=${'command'}
|
|
|
|
></livechat-dynamic-table-form>
|
|
|
|
`}
|
|
|
|
|
|
|
|
<div class="form-group mt-5">
|
|
|
|
<button type="reset" @click=${el.reset} ?disabled=${el.actionDisabled}>
|
|
|
|
${ptTr(LOC_CANCEL)}
|
|
|
|
</button>
|
|
|
|
<button type="submit" ?disabled=${el.actionDisabled}>
|
|
|
|
${ptTr(LOC_SAVE)}
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>`
|
|
|
|
}
|