2024-05-23 15:17:28 +00:00
|
|
|
// SPDX-FileCopyrightText: 2024 Mehdi Benadel <https://mehdibenadel.com>
|
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2024-05-23 12:41:11 +00:00
|
|
|
import type { RegisterClientOptions } from '@peertube/peertube-types/client'
|
2024-05-23 15:27:49 +00:00
|
|
|
import { html } from 'lit'
|
2024-05-23 12:41:11 +00:00
|
|
|
import { customElement, property, state } from 'lit/decorators.js'
|
2024-05-23 14:56:11 +00:00
|
|
|
import { ptTr } from '../../lib/directives/translation'
|
2024-05-23 12:41:11 +00:00
|
|
|
import { Task } from '@lit/task';
|
|
|
|
import type { ChannelLiveChatInfos } from 'shared/lib/types'
|
|
|
|
import { ChannelDetailsService } from '../services/channel-details'
|
|
|
|
import { provide } from '@lit/context'
|
2024-05-23 14:56:11 +00:00
|
|
|
import { channelDetailsServiceContext } from '../contexts/channel'
|
|
|
|
import { registerClientOptionsContext } from '../../lib/contexts/peertube'
|
2024-05-23 15:09:58 +00:00
|
|
|
import { LivechatElement } from '../../lib/elements/livechat'
|
2024-05-23 12:41:11 +00:00
|
|
|
|
2024-05-23 13:52:12 +00:00
|
|
|
@customElement('livechat-channel-home')
|
2024-05-23 15:09:58 +00:00
|
|
|
export class ChannelHomeElement extends LivechatElement {
|
2024-05-23 12:41:11 +00:00
|
|
|
|
|
|
|
@provide({ context: registerClientOptionsContext })
|
|
|
|
@property({ attribute: false })
|
|
|
|
public registerClientOptions: RegisterClientOptions | undefined
|
|
|
|
|
|
|
|
@state()
|
|
|
|
public _channels: ChannelLiveChatInfos[] | undefined
|
|
|
|
|
|
|
|
@provide({ context: channelDetailsServiceContext })
|
|
|
|
private _channelDetailsService: ChannelDetailsService | undefined
|
|
|
|
|
|
|
|
@state()
|
|
|
|
public _formStatus: boolean | any = undefined
|
|
|
|
|
|
|
|
private _asyncTaskRender = new Task(this, {
|
|
|
|
|
|
|
|
task: async ([registerClientOptions], {signal}) => {
|
|
|
|
// Getting the current username in localStorage. Don't know any cleaner way to do.
|
|
|
|
const username = window.localStorage.getItem('username')
|
|
|
|
if (!username) {
|
|
|
|
throw new Error('Can\'t get the current username.')
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.registerClientOptions) {
|
|
|
|
this._channelDetailsService = new ChannelDetailsService(this.registerClientOptions)
|
|
|
|
this._channels = await this._channelDetailsService.fetchUserChannels(username)
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
args: () => [this.registerClientOptions]
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
render = () => {
|
|
|
|
return this._asyncTaskRender.render({
|
|
|
|
complete: () => html`
|
|
|
|
<div class="margin-content peertube-plugin-livechat-configuration peertube-plugin-livechat-configuration-home">
|
|
|
|
<h1>
|
|
|
|
${ptTr(LOC_LIVECHAT_CONFIGURATION_TITLE)}
|
2024-05-23 13:52:12 +00:00
|
|
|
<livechat-help-button .page="documentation/user/streamers/channel">
|
|
|
|
</livechat-help-button>
|
2024-05-23 12:41:11 +00:00
|
|
|
</h1>
|
|
|
|
<p>${ptTr(LOC_LIVECHAT_CONFIGURATION_DESC)}</p>
|
|
|
|
<p>${ptTr(LOC_LIVECHAT_CONFIGURATION_PLEASE_SELECT)}</p>
|
|
|
|
<ul class="peertube-plugin-livechat-configuration-home-channels">
|
|
|
|
${this._channels?.map((channel) => html`
|
|
|
|
<li>
|
|
|
|
<a href="${channel.livechatConfigurationUri}">
|
|
|
|
${channel.avatar ?
|
|
|
|
html`<img class="avatar channel" src="${channel.avatar.path}">`
|
|
|
|
:
|
|
|
|
html`<div class="avatar channel initial gray"></div>`
|
|
|
|
}
|
|
|
|
</a>
|
|
|
|
<div class="peertube-plugin-livechat-configuration-home-info">
|
|
|
|
<a href="${channel.livechatConfigurationUri}">
|
|
|
|
<div>${channel.displayName}</div>
|
|
|
|
<div>${channel.name}</div>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
`)}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
`
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|