2024-05-23 09:42:14 +00:00
|
|
|
// SPDX-FileCopyrightText: 2024 John Livingston <https://www.john-livingston.fr/>
|
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2023-08-08 15:15:05 +00:00
|
|
|
import type { RegisterClientOptions } from '@peertube/peertube-types/client'
|
2024-05-23 12:41:11 +00:00
|
|
|
import './elements/channel-home'
|
|
|
|
import './elements/channel-configuration'
|
2024-05-13 14:40:36 +00:00
|
|
|
import { html, render } from 'lit'
|
2023-08-08 15:15:05 +00:00
|
|
|
|
2023-08-08 16:26:40 +00:00
|
|
|
/**
|
2023-09-06 13:23:39 +00:00
|
|
|
* Registers stuff related to the user's configuration pages.
|
2023-08-08 16:26:40 +00:00
|
|
|
* @param clientOptions Peertube client options
|
|
|
|
*/
|
2023-09-06 13:23:39 +00:00
|
|
|
async function registerConfiguration (clientOptions: RegisterClientOptions): Promise<void> {
|
2023-08-08 15:15:05 +00:00
|
|
|
const { peertubeHelpers, registerClientRoute, registerHook } = clientOptions
|
|
|
|
|
2023-09-06 13:56:55 +00:00
|
|
|
const settings = await peertubeHelpers.getSettings()
|
2023-09-18 16:53:07 +00:00
|
|
|
if (settings['disable-channel-configuration']) { return }
|
2023-09-06 13:56:55 +00:00
|
|
|
|
2023-08-08 15:15:05 +00:00
|
|
|
registerClientRoute({
|
2023-09-06 13:23:39 +00:00
|
|
|
route: 'livechat/configuration',
|
2023-08-08 15:15:05 +00:00
|
|
|
onMount: async ({ rootEl }) => {
|
2024-05-23 12:41:11 +00:00
|
|
|
render(html`<channel-home .registerClientOptions=${clientOptions}></channel-home>`, rootEl)
|
2023-08-08 15:15:05 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2023-08-08 16:26:40 +00:00
|
|
|
registerClientRoute({
|
2023-09-06 13:23:39 +00:00
|
|
|
route: 'livechat/configuration/channel',
|
2023-08-08 16:26:40 +00:00
|
|
|
onMount: async ({ rootEl }) => {
|
|
|
|
const urlParams = new URLSearchParams(window.location.search)
|
|
|
|
const channelId = urlParams.get('channelId') ?? ''
|
2024-05-23 00:26:38 +00:00
|
|
|
render(html`<channel-configuration .registerClientOptions=${clientOptions}
|
|
|
|
.channelId=${channelId}></channel-configuration>`, rootEl)
|
2023-08-08 16:26:40 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2023-08-08 15:15:05 +00:00
|
|
|
registerHook({
|
|
|
|
target: 'filter:left-menu.links.create.result',
|
|
|
|
handler: async (links: any) => {
|
2023-09-06 13:23:39 +00:00
|
|
|
// Adding the links to livechat/configuration for logged users.
|
2023-08-08 15:15:05 +00:00
|
|
|
if (!peertubeHelpers.isLoggedIn()) { return links }
|
|
|
|
|
|
|
|
if (!Array.isArray(links)) { return links }
|
|
|
|
let myLibraryLinks
|
|
|
|
// Searching the 'in-my-library' entry.
|
|
|
|
for (const link of links) {
|
|
|
|
if (typeof link !== 'object') { continue }
|
|
|
|
if (!('key' in link)) { continue }
|
|
|
|
if (link.key !== 'in-my-library') { continue }
|
|
|
|
myLibraryLinks = link
|
|
|
|
break
|
|
|
|
}
|
|
|
|
if (!myLibraryLinks) { return links }
|
|
|
|
if (!Array.isArray(myLibraryLinks.links)) { return links }
|
|
|
|
|
2023-09-06 13:23:39 +00:00
|
|
|
const label = await peertubeHelpers.translate(LOC_MENU_CONFIGURATION_LABEL)
|
2023-08-08 15:15:05 +00:00
|
|
|
myLibraryLinks.links.push({
|
|
|
|
label,
|
|
|
|
shortLabel: label,
|
2023-09-06 13:23:39 +00:00
|
|
|
path: '/p/livechat/configuration',
|
2023-08-08 15:15:05 +00:00
|
|
|
icon: 'live'
|
|
|
|
})
|
|
|
|
return links
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
export {
|
2023-09-06 13:23:39 +00:00
|
|
|
registerConfiguration
|
2023-08-08 15:15:05 +00:00
|
|
|
}
|