peertube-plugin-livechat/client/common/configuration/elements/channel-emojis.ts

86 lines
3.1 KiB
TypeScript
Raw Normal View History

2024-05-28 15:56:24 +00:00
// SPDX-FileCopyrightText: 2024 John Livingston <https://www.john-livingston.fr/>
//
// SPDX-License-Identifier: AGPL-3.0-only
import type { RegisterClientOptions } from '@peertube/peertube-types/client'
2024-06-04 14:39:25 +00:00
import type { ChannelEmojisConfiguration } from 'shared/lib/types'
2024-05-28 15:56:24 +00:00
import { LivechatElement } from '../../lib/elements/livechat'
import { registerClientOptionsContext } from '../../lib/contexts/peertube'
import { ChannelDetailsService } from '../services/channel-details'
import { channelDetailsServiceContext } from '../contexts/channel'
2024-06-04 14:39:25 +00:00
import { ptTr } from '../../lib/directives/translation'
2024-05-28 15:56:24 +00:00
import { Task } from '@lit/task'
import { customElement, property } from 'lit/decorators.js'
import { provide } from '@lit/context'
2024-06-04 14:39:25 +00:00
import { html } from 'lit'
2024-05-28 15:56:24 +00:00
/**
* Channel emojis configuration page.
*/
@customElement('livechat-channel-emojis')
export class ChannelEmojisElement extends LivechatElement {
@provide({ context: registerClientOptionsContext })
@property({ attribute: false })
public registerClientOptions?: RegisterClientOptions
@property({ attribute: false })
public channelId?: number
2024-06-04 14:39:25 +00:00
private _channelEmojisConfiguration?: ChannelEmojisConfiguration
2024-05-28 15:56:24 +00:00
@provide({ context: channelDetailsServiceContext })
private _channelDetailsService?: ChannelDetailsService
2024-06-04 14:39:25 +00:00
protected override render = (): unknown => {
2024-05-28 15:56:24 +00:00
return this._asyncTaskRender.render({
pending: () => {},
2024-06-04 14:39:25 +00:00
complete: () => html`
<div
class="margin-content peertube-plugin-livechat-configuration peertube-plugin-livechat-configuration-channel"
>
<h1>
${ptTr(LOC_LIVECHAT_CONFIGURATION_CHANNEL_EMOJIS_TITLE)}:
<span class="peertube-plugin-livechat-configuration-channel-info">
<span>${this._channelEmojisConfiguration?.channel.displayName}</span>
<span>${this._channelEmojisConfiguration?.channel.name}</span>
</span>
<livechat-help-button .page=${'documentation/user/streamers/emojis'}>
</livechat-help-button>
FIXME: help url OK?
</h1>
<form role="form" @submit=${this._saveEmojis}>
<div class="form-group mt-5">
<button type="submit" class="peertube-button-link orange-button">
${ptTr(LOC_SAVE)}
</button>
</div>
</form>
</div>
`,
2024-05-28 15:56:24 +00:00
error: (err: any) => {
this.registerClientOptions?.peertubeHelpers.notifier.error(err.toString())
}
})
}
private readonly _asyncTaskRender = new Task(this, {
task: async () => {
if (!this.registerClientOptions) {
throw new Error('Missing client options')
}
if (!this.channelId) {
throw new Error('Missing channelId')
}
this._channelDetailsService = new ChannelDetailsService(this.registerClientOptions)
2024-06-04 14:39:25 +00:00
this._channelEmojisConfiguration = await this._channelDetailsService.fetchEmojisConfiguration(this.channelId)
2024-05-28 15:56:24 +00:00
},
args: () => []
})
2024-06-04 14:39:25 +00:00
private readonly _saveEmojis = (ev?: Event): void => {
ev?.preventDefault()
// TODO
this.registerClientOptions?.peertubeHelpers.notifier.error('TODO')
}
2024-05-28 15:56:24 +00:00
}