// SPDX-FileCopyrightText: 2024 John Livingston // // SPDX-License-Identifier: AGPL-3.0-only import type { RegisterClientOptions } from '@peertube/peertube-types/client' import type { ChannelEmojisConfiguration } from 'shared/lib/types' import { LivechatElement } from '../../lib/elements/livechat' import { registerClientOptionsContext } from '../../lib/contexts/peertube' import { ChannelDetailsService } from '../services/channel-details' import { channelDetailsServiceContext } from '../contexts/channel' import { ptTr } from '../../lib/directives/translation' import { Task } from '@lit/task' import { customElement, property } from 'lit/decorators.js' import { provide } from '@lit/context' import { html } from 'lit' /** * 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 private _channelEmojisConfiguration?: ChannelEmojisConfiguration @provide({ context: channelDetailsServiceContext }) private _channelDetailsService?: ChannelDetailsService protected override render = (): unknown => { return this._asyncTaskRender.render({ pending: () => {}, complete: () => html`

${ptTr(LOC_LIVECHAT_CONFIGURATION_CHANNEL_EMOJIS_TITLE)}: ${this._channelEmojisConfiguration?.channel.displayName} ${this._channelEmojisConfiguration?.channel.name} FIXME: help url OK?

`, 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) this._channelEmojisConfiguration = await this._channelDetailsService.fetchEmojisConfiguration(this.channelId) }, args: () => [] }) private readonly _saveEmojis = (ev?: Event): void => { ev?.preventDefault() // TODO this.registerClientOptions?.peertubeHelpers.notifier.error('TODO') } }