expose peertubeHelpers to TranslationDirective

This commit is contained in:
Mehdi Benadel
2024-05-24 14:25:08 +02:00
parent d95312aa11
commit 67abb5279f
5 changed files with 66 additions and 10 deletions

View File

@ -6,6 +6,7 @@
import type { RegisterClientOptions } from '@peertube/peertube-types/client'
import { html, render } from 'lit'
import './elements' // Import all needed elements.
import { registerClientOptionsSubject$ } from '../lib/contexts/peertube'
/**
* Registers stuff related to the user's configuration pages.
@ -17,6 +18,8 @@ async function registerConfiguration (clientOptions: RegisterClientOptions): Pro
const settings = await peertubeHelpers.getSettings()
if (settings['disable-channel-configuration']) { return }
registerClientOptionsSubject$.next(clientOptions)
registerClientRoute({
route: 'livechat/configuration',
onMount: async ({ rootEl }) => {

View File

@ -4,6 +4,10 @@
import type { RegisterClientOptions } from '@peertube/peertube-types/client/types'
import { createContext } from '@lit/context'
import { BehaviorSubject } from 'rxjs'
export const registerClientOptionsContext =
createContext<RegisterClientOptions | undefined>(Symbol('register-client-options'))
export const registerClientOptionsSubject$ =
new BehaviorSubject<RegisterClientOptions | undefined>(undefined)

View File

@ -2,30 +2,45 @@
//
// SPDX-License-Identifier: AGPL-3.0-only
import { /* PartInfo, */ directive } from 'lit/directive.js'
import { PartInfo, directive } from 'lit/directive.js'
import { AsyncDirective } from 'lit/async-directive.js'
import { RegisterClientHelpers } from '@peertube/peertube-types/client'
import { unsafeHTML } from 'lit/directives/unsafe-html.js'
import { html } from 'lit'
import { registerClientOptionsSubject$ } from '../contexts/peertube'
import { Subscription, filter, map } from 'rxjs'
export class TranslationDirective extends AsyncDirective {
private readonly _peertubeHelpers?: RegisterClientHelpers
private _peertubeHelpers?: RegisterClientHelpers
private _translatedValue: string = ''
private _localizationId: string = ''
private _allowUnsafeHTML = false
// constructor (partInfo: PartInfo) {
// super(partInfo)
private _subscriptionHandle: Subscription = new Subscription()
// _peertubeOptionsPromise.then((options) => this._peertubeHelpers = options.peertubeHelpers)
// }
constructor (partInfo: PartInfo) {
super(partInfo)
// update = (part: ElementPart) => {
// if (part) console.log(`Element : ${part?.element?.getAttributeNames?.().join(' ')}`);
// return this.render(this._localizationId);
// }
this.reconnected()
}
protected override disconnected = (): void => {
this._subscriptionHandle.unsubscribe()
}
protected override reconnected = (): void => {
this._subscriptionHandle.unsubscribe()
this._subscriptionHandle = registerClientOptionsSubject$
.pipe(filter(Boolean))
.pipe(map(registerClientOptions => registerClientOptions.peertubeHelpers))
.subscribe((registerClientHelpers: RegisterClientHelpers) => {
this._peertubeHelpers = registerClientHelpers
console.log(`we got PeertubeHelpers ! ${JSON.stringify(registerClientHelpers)}`)
this._asyncUpdateTranslation().then(() => {}, () => {})
})
}
public override render = (locId: string, allowHTML: boolean = false): unknown => {
this._localizationId = locId // TODO Check current component for context (to infer the prefix)
@ -36,18 +51,22 @@ export class TranslationDirective extends AsyncDirective {
this._translatedValue = locId
}
console.log('rendering')
this._asyncUpdateTranslation().then(() => {}, () => {})
return this._internalRender()
}
private readonly _internalRender = (): unknown => {
console.log(`internalRender ${this._translatedValue}`)
return this._allowUnsafeHTML ? html`${unsafeHTML(this._translatedValue)}` : this._translatedValue
}
private readonly _asyncUpdateTranslation = async (): Promise<true> => {
const newValue = await this._peertubeHelpers?.translate(this._localizationId) ?? ''
console.log(`asyncUpdateTranslation ${newValue}`)
if (newValue !== '' && newValue !== this._translatedValue) {
this._translatedValue = newValue
this.setValue(this._internalRender())