Add ability to update icons content

This commit is contained in:
Chocobozzz 2019-12-05 17:26:58 +01:00
parent 3d9a63d3d8
commit c2023a9f02
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
4 changed files with 40 additions and 12 deletions

View File

@ -16,13 +16,10 @@ export class HooksService {
private pluginService: PluginService private pluginService: PluginService
) { } ) { }
wrapObject<T, U extends ClientFilterHookName> (result: T, hookName: U) {
return this.pluginService.runHook(hookName, result)
}
wrapObsFun wrapObsFun
<P, R, H1 extends ClientFilterHookName, H2 extends ClientFilterHookName> <P, R, H1 extends ClientFilterHookName, H2 extends ClientFilterHookName>
(fun: ObservableFunction<P, R>, params: P, scope: PluginClientScope, hookParamName: H1, hookResultName: H2) { (fun: ObservableFunction<P, R>, params: P, scope: PluginClientScope, hookParamName: H1, hookResultName: H2)
{
return from(this.pluginService.ensurePluginsAreLoaded(scope)) return from(this.pluginService.ensurePluginsAreLoaded(scope))
.pipe( .pipe(
mergeMap(() => this.wrapObject(params, hookParamName)), mergeMap(() => this.wrapObject(params, hookParamName)),
@ -31,10 +28,16 @@ export class HooksService {
) )
} }
async wrapFun<U, T, V extends ClientFilterHookName> (fun: RawFunction<U, T>, params: U, hookName: V) { async wrapFun
const result = fun(params) <P, R, H1 extends ClientFilterHookName, H2 extends ClientFilterHookName>
(fun: RawFunction<P, R>, params: P, scope: PluginClientScope, hookParamName: H1, hookResultName: H2)
{
await this.pluginService.ensurePluginsAreLoaded(scope)
return this.pluginService.runHook(hookName, result, params) const newParams = await this.wrapObject(params, hookParamName)
const result = fun(newParams)
return this.pluginService.runHook(hookResultName, result, params)
} }
runAction<T, U extends ClientActionHookName> (hookName: U, scope: PluginClientScope, params?: T) { runAction<T, U extends ClientActionHookName> (hookName: U, scope: PluginClientScope, params?: T) {
@ -42,4 +45,8 @@ export class HooksService {
.then(() => this.pluginService.runHook(hookName, undefined, params)) .then(() => this.pluginService.runHook(hookName, undefined, params))
.catch((err: any) => console.error('Fatal hook error.', { err })) .catch((err: any) => console.error('Fatal hook error.', { err }))
} }
private wrapObject<T, U extends ClientFilterHookName> (result: T, hookName: U) {
return this.pluginService.runHook(hookName, result)
}
} }

View File

@ -1,4 +1,5 @@
import { ChangeDetectionStrategy, Component, ElementRef, Input, OnInit } from '@angular/core' import { ChangeDetectionStrategy, Component, ElementRef, Input, OnInit } from '@angular/core'
import { HooksService } from '@app/core/plugins/hooks.service'
const icons = { const icons = {
'add': require('!!raw-loader?!../../../assets/images/global/add.svg'), 'add': require('!!raw-loader?!../../../assets/images/global/add.svg'),
@ -60,11 +61,24 @@ export type GlobalIconName = keyof typeof icons
export class GlobalIconComponent implements OnInit { export class GlobalIconComponent implements OnInit {
@Input() iconName: GlobalIconName @Input() iconName: GlobalIconName
constructor (private el: ElementRef) {} constructor (
private el: ElementRef,
private hooks: HooksService
) { }
ngOnInit () { async ngOnInit () {
const nativeElement = this.el.nativeElement const nativeElement = this.el.nativeElement
nativeElement.innerHTML = icons[this.iconName] nativeElement.innerHTML = await this.hooks.wrapFun(
this.getSVGContent.bind(this),
{ name: this.iconName },
'common',
'filter:internal.common.svg-icons.get-content.params',
'filter:internal.common.svg-icons.get-content.result'
)
}
private getSVGContent (options: { name: string }) {
return icons[options.name]
} }
} }

View File

@ -418,6 +418,8 @@ export class VideoWatchComponent implements OnInit, OnDestroy {
const { playerMode, playerOptions } = await this.hooks.wrapFun( const { playerMode, playerOptions } = await this.hooks.wrapFun(
this.buildPlayerManagerOptions.bind(this), this.buildPlayerManagerOptions.bind(this),
params, params,
'video-watch',
'filter:internal.video-watch.player.build-options.params',
'filter:internal.video-watch.player.build-options.result' 'filter:internal.video-watch.player.build-options.result'
) )

View File

@ -45,7 +45,12 @@ export const clientFilterHookObject = {
'filter:api.signup.registration.create.params': true, 'filter:api.signup.registration.create.params': true,
// Filter the options to create our player // Filter the options to create our player
'filter:internal.video-watch.player.build-options.result': true 'filter:internal.video-watch.player.build-options.params': true,
'filter:internal.video-watch.player.build-options.result': true,
// Filter our SVG icons content
'filter:internal.common.svg-icons.get-content.params': true,
'filter:internal.common.svg-icons.get-content.result': true
} }
export type ClientFilterHookName = keyof typeof clientFilterHookObject export type ClientFilterHookName = keyof typeof clientFilterHookObject