2023-08-08 15:15:05 +00:00
|
|
|
import type { RegisterClientOptions } from '@peertube/peertube-types/client'
|
|
|
|
// Must use require for mustache, import seems buggy.
|
|
|
|
const Mustache = require('mustache')
|
|
|
|
|
2023-08-08 16:26:40 +00:00
|
|
|
/**
|
2023-09-06 13:23:39 +00:00
|
|
|
* Renders the livechat configuration setup home page.
|
2023-08-08 16:26:40 +00:00
|
|
|
* @param registerClientOptions Peertube client options
|
|
|
|
* @returns The page content
|
|
|
|
*/
|
2023-09-06 13:23:39 +00:00
|
|
|
async function renderConfigurationHome (registerClientOptions: RegisterClientOptions): Promise<string> {
|
2023-08-08 15:15:05 +00:00
|
|
|
const { peertubeHelpers } = registerClientOptions
|
|
|
|
|
|
|
|
try {
|
|
|
|
// 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.')
|
|
|
|
}
|
|
|
|
|
2023-09-20 12:59:01 +00:00
|
|
|
// FIXME: if more than 100 channels, loop (or add a pagination)
|
2023-08-08 15:15:05 +00:00
|
|
|
const channels = await (await fetch(
|
2023-08-09 12:24:52 +00:00
|
|
|
'/api/v1/accounts/' + encodeURIComponent(username) + '/video-channels?start=0&count=100&sort=name',
|
2023-08-08 15:15:05 +00:00
|
|
|
{
|
|
|
|
method: 'GET',
|
|
|
|
headers: peertubeHelpers.getAuthHeader()
|
|
|
|
}
|
|
|
|
)).json()
|
|
|
|
if (!channels || !('data' in channels) || !Array.isArray(channels.data)) {
|
|
|
|
throw new Error('Can\'t get the channel list.')
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const channel of channels.data) {
|
2023-09-06 13:23:39 +00:00
|
|
|
channel.livechatConfigurationUri = '/p/livechat/configuration/channel?channelId=' + encodeURIComponent(channel.id)
|
2023-08-08 15:15:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const view = {
|
2023-09-06 13:23:39 +00:00
|
|
|
title: await peertubeHelpers.translate(LOC_LIVECHAT_CONFIGURATION_TITLE),
|
|
|
|
description: await peertubeHelpers.translate(LOC_LIVECHAT_CONFIGURATION_DESC),
|
|
|
|
please_select: await peertubeHelpers.translate(LOC_LIVECHAT_CONFIGURATION_PLEASE_SELECT),
|
2023-08-08 15:15:05 +00:00
|
|
|
channels: channels.data
|
|
|
|
}
|
|
|
|
|
2023-09-22 11:56:48 +00:00
|
|
|
return Mustache.render(MUSTACHE_CONFIGURATION_HOME, view) as string
|
2023-08-08 15:15:05 +00:00
|
|
|
} catch (err: any) {
|
|
|
|
peertubeHelpers.notifier.error(err.toString())
|
|
|
|
return ''
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export {
|
2023-09-06 13:23:39 +00:00
|
|
|
renderConfigurationHome
|
2023-08-08 15:15:05 +00:00
|
|
|
}
|