From 078b4716cdd4dbf1b15c1a864ccab999ed3d0e8e Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Mon, 11 Jan 2021 10:46:02 +0100 Subject: Fix theme npm link --- .../+admin/plugins/plugin-search/plugin-search.component.ts | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'client/src/app/+admin/plugins/plugin-search/plugin-search.component.ts') diff --git a/client/src/app/+admin/plugins/plugin-search/plugin-search.component.ts b/client/src/app/+admin/plugins/plugin-search/plugin-search.component.ts index 1a6b4eba3..4c571dee4 100644 --- a/client/src/app/+admin/plugins/plugin-search/plugin-search.component.ts +++ b/client/src/app/+admin/plugins/plugin-search/plugin-search.component.ts @@ -39,13 +39,13 @@ export class PluginSearchComponent implements OnInit { private searchSubject = new Subject() constructor ( - private pluginService: PluginApiService, + private pluginApiService: PluginApiService, private notifier: Notifier, private confirmService: ConfirmService, private router: Router, private route: ActivatedRoute ) { - this.pluginTypeOptions = this.pluginService.getPluginTypeOptions() + this.pluginTypeOptions = this.pluginApiService.getPluginTypeOptions() } ngOnInit () { @@ -83,7 +83,7 @@ export class PluginSearchComponent implements OnInit { loadMorePlugins () { this.isSearching = true - this.pluginService.searchAvailablePlugins(this.pluginType, this.pagination, this.sort, this.search) + this.pluginApiService.searchAvailablePlugins(this.pluginType, this.pagination, this.sort, this.search) .subscribe( res => { this.isSearching = false @@ -115,6 +115,10 @@ export class PluginSearchComponent implements OnInit { return !!this.installing[plugin.npmName] } + getPluginOrThemeHref (name: string) { + return this.pluginApiService.getPluginOrThemeHref(this.pluginType, name) + } + async install (plugin: PeerTubePluginIndex) { if (this.installing[plugin.npmName]) return @@ -126,7 +130,7 @@ export class PluginSearchComponent implements OnInit { this.installing[plugin.npmName] = true - this.pluginService.install(plugin.npmName) + this.pluginApiService.install(plugin.npmName) .subscribe( () => { this.installing[plugin.npmName] = false -- cgit v1.2.3