diff options
author | Chocobozzz <me@florianbigard.com> | 2019-07-11 14:40:19 +0200 |
---|---|---|
committer | Chocobozzz <chocobozzz@cpy.re> | 2019-07-24 10:58:16 +0200 |
commit | dba85a1e9e9f603ba52e1ea42deaf3fdd799b1d8 (patch) | |
tree | 7695023d90b78f972abafc718346c50264587ff5 /client | |
parent | d00dc28dd73ad9dd419d5a5ac6ac747cefbc6e8b (diff) | |
download | PeerTube-dba85a1e9e9f603ba52e1ea42deaf3fdd799b1d8.tar.gz PeerTube-dba85a1e9e9f603ba52e1ea42deaf3fdd799b1d8.tar.zst PeerTube-dba85a1e9e9f603ba52e1ea42deaf3fdd799b1d8.zip |
WIP plugins: add plugin settings/uninstall in client
Diffstat (limited to 'client')
11 files changed, 334 insertions, 15 deletions
diff --git a/client/src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html b/client/src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html index 6bb8bcd75..d4501490f 100644 --- a/client/src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html +++ b/client/src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html | |||
@@ -7,7 +7,31 @@ | |||
7 | </div> | 7 | </div> |
8 | 8 | ||
9 | <div class="plugins" myInfiniteScroller (nearOfBottom)="onNearOfBottom()" [autoInit]="true"> | 9 | <div class="plugins" myInfiniteScroller (nearOfBottom)="onNearOfBottom()" [autoInit]="true"> |
10 | <div class="section plugin" *ngFor="let plugin of plugins"> | 10 | <div class="card plugin" *ngFor="let plugin of plugins"> |
11 | {{ plugin.name }} | 11 | <div class="card-body"> |
12 | <div class="first-row"> | ||
13 | <a class="plugin-name" [routerLink]="getShowRouterLink(plugin)" title="Show plugin settings">{{ plugin.name }}</a> | ||
14 | |||
15 | <span class="plugin-version">{{ plugin.version }}</span> | ||
16 | </div> | ||
17 | |||
18 | <div class="second-row"> | ||
19 | <div class="description">{{ plugin.description }}</div> | ||
20 | |||
21 | <div class="buttons"> | ||
22 | <a class="action-button action-button-edit grey-button" target="_blank" rel="noopener noreferrer" | ||
23 | [href]="plugin.homepage" i18n-title title="Go to the plugin homepage" | ||
24 | > | ||
25 | <my-global-icon iconName="go"></my-global-icon> | ||
26 | <span i18n class="button-label">Homepage</span> | ||
27 | </a> | ||
28 | |||
29 | |||
30 | <my-edit-button [routerLink]="getShowRouterLink(plugin)" label="Settings" i18n-label></my-edit-button> | ||
31 | |||
32 | <my-delete-button (click)="uninstall(plugin)" label="Uninstall" i18n-label></my-delete-button> | ||
33 | </div> | ||
34 | </div> | ||
35 | </div> | ||
12 | </div> | 36 | </div> |
13 | </div> | 37 | </div> |
diff --git a/client/src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.scss b/client/src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.scss index 9e98fcd34..f250404ed 100644 --- a/client/src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.scss +++ b/client/src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.scss | |||
@@ -1,8 +1,37 @@ | |||
1 | @import '_variables'; | 1 | @import '_variables'; |
2 | @import '_mixins'; | 2 | @import '_mixins'; |
3 | 3 | ||
4 | .toggle-plugin-type { | 4 | .first-row { |
5 | margin-bottom: 10px; | ||
6 | |||
7 | .plugin-name { | ||
8 | font-size: 16px; | ||
9 | margin-right: 10px; | ||
10 | font-weight: $font-semibold; | ||
11 | } | ||
12 | |||
13 | .plugin-version { | ||
14 | opacity: 0.6; | ||
15 | } | ||
16 | } | ||
17 | |||
18 | .second-row { | ||
5 | display: flex; | 19 | display: flex; |
6 | justify-content: center; | 20 | align-items: center; |
7 | margin-bottom: 30px; | 21 | justify-content: space-between; |
22 | |||
23 | .description { | ||
24 | opacity: 0.8 | ||
25 | } | ||
26 | |||
27 | .buttons { | ||
28 | > *:not(:last-child) { | ||
29 | margin-right: 10px; | ||
30 | } | ||
31 | } | ||
32 | } | ||
33 | |||
34 | .action-button { | ||
35 | @include peertube-button-link; | ||
36 | @include button-with-icon(21px, 0, -2px); | ||
8 | } | 37 | } |
diff --git a/client/src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts b/client/src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts index 9745bc36b..26a9a616e 100644 --- a/client/src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts +++ b/client/src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts | |||
@@ -3,13 +3,17 @@ import { PluginType } from '@shared/models/plugins/plugin.type' | |||
3 | import { I18n } from '@ngx-translate/i18n-polyfill' | 3 | import { I18n } from '@ngx-translate/i18n-polyfill' |
4 | import { PluginApiService } from '@app/+admin/plugins/shared/plugin-api.service' | 4 | import { PluginApiService } from '@app/+admin/plugins/shared/plugin-api.service' |
5 | import { ComponentPagination, hasMoreItems } from '@app/shared/rest/component-pagination.model' | 5 | import { ComponentPagination, hasMoreItems } from '@app/shared/rest/component-pagination.model' |
6 | import { Notifier } from '@app/core' | 6 | import { ConfirmService, Notifier } from '@app/core' |
7 | import { PeerTubePlugin } from '@shared/models/plugins/peertube-plugin.model' | 7 | import { PeerTubePlugin } from '@shared/models/plugins/peertube-plugin.model' |
8 | import { ActivatedRoute, Router } from '@angular/router' | ||
8 | 9 | ||
9 | @Component({ | 10 | @Component({ |
10 | selector: 'my-plugin-list-installed', | 11 | selector: 'my-plugin-list-installed', |
11 | templateUrl: './plugin-list-installed.component.html', | 12 | templateUrl: './plugin-list-installed.component.html', |
12 | styleUrls: [ './plugin-list-installed.component.scss' ] | 13 | styleUrls: [ |
14 | '../shared/toggle-plugin-type.scss', | ||
15 | './plugin-list-installed.component.scss' | ||
16 | ] | ||
13 | }) | 17 | }) |
14 | export class PluginListInstalledComponent implements OnInit { | 18 | export class PluginListInstalledComponent implements OnInit { |
15 | pluginTypeOptions: { label: string, value: PluginType }[] = [] | 19 | pluginTypeOptions: { label: string, value: PluginType }[] = [] |
@@ -26,12 +30,18 @@ export class PluginListInstalledComponent implements OnInit { | |||
26 | constructor ( | 30 | constructor ( |
27 | private i18n: I18n, | 31 | private i18n: I18n, |
28 | private pluginService: PluginApiService, | 32 | private pluginService: PluginApiService, |
29 | private notifier: Notifier | 33 | private notifier: Notifier, |
34 | private confirmService: ConfirmService, | ||
35 | private router: Router, | ||
36 | private route: ActivatedRoute | ||
30 | ) { | 37 | ) { |
31 | this.pluginTypeOptions = this.pluginService.getPluginTypeOptions() | 38 | this.pluginTypeOptions = this.pluginService.getPluginTypeOptions() |
32 | } | 39 | } |
33 | 40 | ||
34 | ngOnInit () { | 41 | ngOnInit () { |
42 | const query = this.route.snapshot.queryParams | ||
43 | if (query['pluginType']) this.pluginType = parseInt(query['pluginType'], 10) | ||
44 | |||
35 | this.reloadPlugins() | 45 | this.reloadPlugins() |
36 | } | 46 | } |
37 | 47 | ||
@@ -39,6 +49,8 @@ export class PluginListInstalledComponent implements OnInit { | |||
39 | this.pagination.currentPage = 1 | 49 | this.pagination.currentPage = 1 |
40 | this.plugins = [] | 50 | this.plugins = [] |
41 | 51 | ||
52 | this.router.navigate([], { queryParams: { pluginType: this.pluginType }}) | ||
53 | |||
42 | this.loadMorePlugins() | 54 | this.loadMorePlugins() |
43 | } | 55 | } |
44 | 56 | ||
@@ -69,4 +81,28 @@ export class PluginListInstalledComponent implements OnInit { | |||
69 | 81 | ||
70 | return this.i18n('You don\'t have themes installed yet.') | 82 | return this.i18n('You don\'t have themes installed yet.') |
71 | } | 83 | } |
84 | |||
85 | async uninstall (plugin: PeerTubePlugin) { | ||
86 | const res = await this.confirmService.confirm( | ||
87 | this.i18n('Do you really want to uninstall {{pluginName}}?', { pluginName: plugin.name }), | ||
88 | this.i18n('Uninstall') | ||
89 | ) | ||
90 | if (res === false) return | ||
91 | |||
92 | this.pluginService.uninstall(plugin.name, plugin.type) | ||
93 | .subscribe( | ||
94 | () => { | ||
95 | this.notifier.success(this.i18n('{{pluginName}} uninstalled.', { pluginName: plugin.name })) | ||
96 | |||
97 | this.plugins = this.plugins.filter(p => p.name !== plugin.name) | ||
98 | this.pagination.totalItems-- | ||
99 | }, | ||
100 | |||
101 | err => this.notifier.error(err.message) | ||
102 | ) | ||
103 | } | ||
104 | |||
105 | getShowRouterLink (plugin: PeerTubePlugin) { | ||
106 | return [ '/admin', 'plugins', 'show', this.pluginService.nameToNpmName(plugin.name, plugin.type) ] | ||
107 | } | ||
72 | } | 108 | } |
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 db1f91f3d..787be2c8c 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 | |||
@@ -13,7 +13,10 @@ import { PluginApiService } from '@app/+admin/plugins/shared/plugin-api.service' | |||
13 | @Component({ | 13 | @Component({ |
14 | selector: 'my-plugin-search', | 14 | selector: 'my-plugin-search', |
15 | templateUrl: './plugin-search.component.html', | 15 | templateUrl: './plugin-search.component.html', |
16 | styleUrls: [ './plugin-search.component.scss' ] | 16 | styleUrls: [ |
17 | '../shared/toggle-plugin-type.scss', | ||
18 | './plugin-search.component.scss' | ||
19 | ] | ||
17 | }) | 20 | }) |
18 | export class PluginSearchComponent implements OnInit { | 21 | export class PluginSearchComponent implements OnInit { |
19 | pluginTypeOptions: { label: string, value: PluginType }[] = [] | 22 | pluginTypeOptions: { label: string, value: PluginType }[] = [] |
diff --git a/client/src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html b/client/src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html index e69de29bb..aae08b94d 100644 --- a/client/src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html +++ b/client/src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html | |||
@@ -0,0 +1,26 @@ | |||
1 | <ng-container *ngIf="plugin"> | ||
2 | |||
3 | <h2> | ||
4 | <ng-container>{{ pluginTypeLabel }}</ng-container> | ||
5 | {{ plugin.name }} | ||
6 | </h2> | ||
7 | |||
8 | <form *ngIf="hasRegisteredSettings()" role="form" (ngSubmit)="formValidated()" [formGroup]="form"> | ||
9 | <div class="form-group" *ngFor="let setting of registeredSettings"> | ||
10 | <label [attr.for]="setting.name">{{ setting.label }}</label> | ||
11 | |||
12 | <input *ngIf="setting.type === 'input'" type="text" [id]="setting.name" [formControlName]="setting.name" /> | ||
13 | |||
14 | <div *ngIf="formErrors[setting.name]" class="form-error"> | ||
15 | {{ formErrors[setting.name] }} | ||
16 | </div> | ||
17 | </div> | ||
18 | |||
19 | <input type="submit" i18n value="Update plugin settings" [disabled]="!form.valid"> | ||
20 | </form> | ||
21 | |||
22 | <div *ngIf="!hasRegisteredSettings()" i18n class="no-settings"> | ||
23 | This {{ pluginTypeLabel }} does not have settings. | ||
24 | </div> | ||
25 | |||
26 | </ng-container> | ||
diff --git a/client/src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.scss b/client/src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.scss index 5e6774739..42fc1b634 100644 --- a/client/src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.scss +++ b/client/src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.scss | |||
@@ -1,2 +1,22 @@ | |||
1 | @import '_variables'; | 1 | @import '_variables'; |
2 | @import '_mixins'; | 2 | @import '_mixins'; |
3 | |||
4 | h2 { | ||
5 | margin-bottom: 20px; | ||
6 | } | ||
7 | |||
8 | input:not([type=submit]) { | ||
9 | @include peertube-input-text(340px); | ||
10 | display: block; | ||
11 | } | ||
12 | |||
13 | .peertube-select-container { | ||
14 | @include peertube-select-container(340px); | ||
15 | } | ||
16 | |||
17 | input[type=submit], button { | ||
18 | @include peertube-button; | ||
19 | @include orange-button; | ||
20 | |||
21 | margin-top: 10px; | ||
22 | } | ||
diff --git a/client/src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.ts b/client/src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.ts index f65599532..8750bfd38 100644 --- a/client/src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.ts +++ b/client/src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.ts | |||
@@ -1,14 +1,110 @@ | |||
1 | import { Component, OnInit } from '@angular/core' | 1 | import { Component, OnDestroy, OnInit } from '@angular/core' |
2 | import { PeerTubePlugin } from '@shared/models/plugins/peertube-plugin.model' | ||
3 | import { I18n } from '@ngx-translate/i18n-polyfill' | ||
4 | import { PluginApiService } from '@app/+admin/plugins/shared/plugin-api.service' | ||
5 | import { Notifier } from '@app/core' | ||
6 | import { ActivatedRoute } from '@angular/router' | ||
7 | import { Subscription } from 'rxjs' | ||
8 | import { map, switchMap } from 'rxjs/operators' | ||
9 | import { RegisterSettingOptions } from '@shared/models/plugins/register-setting.model' | ||
10 | import { BuildFormArgument, BuildFormDefaultValues, FormReactive, FormValidatorService } from '@app/shared' | ||
2 | 11 | ||
3 | @Component({ | 12 | @Component({ |
4 | selector: 'my-plugin-show-installed', | 13 | selector: 'my-plugin-show-installed', |
5 | templateUrl: './plugin-show-installed.component.html', | 14 | templateUrl: './plugin-show-installed.component.html', |
6 | styleUrls: [ './plugin-show-installed.component.scss' ] | 15 | styleUrls: [ './plugin-show-installed.component.scss' ] |
7 | }) | 16 | }) |
8 | export class PluginShowInstalledComponent implements OnInit { | 17 | export class PluginShowInstalledComponent extends FormReactive implements OnInit, OnDestroy{ |
18 | plugin: PeerTubePlugin | ||
19 | registeredSettings: RegisterSettingOptions[] = [] | ||
20 | pluginTypeLabel: string | ||
21 | |||
22 | private sub: Subscription | ||
23 | |||
24 | constructor ( | ||
25 | protected formValidatorService: FormValidatorService, | ||
26 | private i18n: I18n, | ||
27 | private pluginService: PluginApiService, | ||
28 | private notifier: Notifier, | ||
29 | private route: ActivatedRoute | ||
30 | ) { | ||
31 | super() | ||
32 | } | ||
9 | 33 | ||
10 | ngOnInit () { | 34 | ngOnInit () { |
35 | this.sub = this.route.params.subscribe( | ||
36 | routeParams => { | ||
37 | const npmName = routeParams['npmName'] | ||
38 | |||
39 | this.loadPlugin(npmName) | ||
40 | } | ||
41 | ) | ||
42 | } | ||
43 | |||
44 | ngOnDestroy () { | ||
45 | if (this.sub) this.sub.unsubscribe() | ||
46 | } | ||
47 | |||
48 | formValidated () { | ||
49 | const settings = this.form.value | ||
50 | |||
51 | this.pluginService.updatePluginSettings(this.plugin.name, this.plugin.type, settings) | ||
52 | .subscribe( | ||
53 | () => { | ||
54 | this.notifier.success(this.i18n('Settings updated.')) | ||
55 | }, | ||
56 | |||
57 | err => this.notifier.error(err.message) | ||
58 | ) | ||
59 | } | ||
60 | |||
61 | hasRegisteredSettings () { | ||
62 | return Array.isArray(this.registeredSettings) && this.registeredSettings.length !== 0 | ||
63 | } | ||
64 | |||
65 | private loadPlugin (npmName: string) { | ||
66 | this.pluginService.getPlugin(npmName) | ||
67 | .pipe(switchMap(plugin => { | ||
68 | return this.pluginService.getPluginRegisteredSettings(plugin.name, plugin.type) | ||
69 | .pipe(map(data => ({ plugin, registeredSettings: data.settings }))) | ||
70 | })) | ||
71 | .subscribe( | ||
72 | ({ plugin, registeredSettings }) => { | ||
73 | this.plugin = plugin | ||
74 | this.registeredSettings = registeredSettings | ||
75 | |||
76 | this.pluginTypeLabel = this.pluginService.getPluginTypeLabel(this.plugin.type) | ||
77 | |||
78 | this.buildSettingsForm() | ||
79 | }, | ||
80 | |||
81 | err => this.notifier.error(err.message) | ||
82 | ) | ||
83 | } | ||
84 | |||
85 | private buildSettingsForm () { | ||
86 | const defaultValues: BuildFormDefaultValues = {} | ||
87 | const buildOptions: BuildFormArgument = {} | ||
88 | const settingsValues: any = {} | ||
89 | |||
90 | for (const setting of this.registeredSettings) { | ||
91 | buildOptions[ setting.name ] = null | ||
92 | settingsValues[ setting.name ] = this.getSetting(setting.name) | ||
93 | } | ||
94 | |||
95 | this.buildForm(buildOptions) | ||
96 | |||
97 | this.form.patchValue(settingsValues) | ||
98 | } | ||
99 | |||
100 | private getSetting (name: string) { | ||
101 | const settings = this.plugin.settings | ||
102 | |||
103 | if (settings && settings[name]) return settings[name] | ||
104 | |||
105 | const registered = this.registeredSettings.find(r => r.name === name) | ||
11 | 106 | ||
107 | return registered.default | ||
12 | } | 108 | } |
13 | 109 | ||
14 | } | 110 | } |
diff --git a/client/src/app/+admin/plugins/plugins.routes.ts b/client/src/app/+admin/plugins/plugins.routes.ts index 58b5534fb..02e8fd324 100644 --- a/client/src/app/+admin/plugins/plugins.routes.ts +++ b/client/src/app/+admin/plugins/plugins.routes.ts | |||
@@ -40,7 +40,7 @@ export const PluginsRoutes: Routes = [ | |||
40 | } | 40 | } |
41 | }, | 41 | }, |
42 | { | 42 | { |
43 | path: 'show/:name', | 43 | path: 'show/:npmName', |
44 | component: PluginShowInstalledComponent, | 44 | component: PluginShowInstalledComponent, |
45 | data: { | 45 | data: { |
46 | meta: { | 46 | meta: { |
diff --git a/client/src/app/+admin/plugins/shared/plugin-api.service.ts b/client/src/app/+admin/plugins/shared/plugin-api.service.ts index bfc2b918f..1d33cd179 100644 --- a/client/src/app/+admin/plugins/shared/plugin-api.service.ts +++ b/client/src/app/+admin/plugins/shared/plugin-api.service.ts | |||
@@ -8,6 +8,9 @@ import { PluginType } from '@shared/models/plugins/plugin.type' | |||
8 | import { ComponentPagination } from '@app/shared/rest/component-pagination.model' | 8 | import { ComponentPagination } from '@app/shared/rest/component-pagination.model' |
9 | import { ResultList } from '@shared/models' | 9 | import { ResultList } from '@shared/models' |
10 | import { PeerTubePlugin } from '@shared/models/plugins/peertube-plugin.model' | 10 | import { PeerTubePlugin } from '@shared/models/plugins/peertube-plugin.model' |
11 | import { ManagePlugin } from '@shared/models/plugins/manage-plugin.model' | ||
12 | import { InstallPlugin } from '@shared/models/plugins/install-plugin.model' | ||
13 | import { RegisterSettingOptions } from '@shared/models/plugins/register-setting.model' | ||
11 | 14 | ||
12 | @Injectable() | 15 | @Injectable() |
13 | export class PluginApiService { | 16 | export class PluginApiService { |
@@ -23,16 +26,24 @@ export class PluginApiService { | |||
23 | getPluginTypeOptions () { | 26 | getPluginTypeOptions () { |
24 | return [ | 27 | return [ |
25 | { | 28 | { |
26 | label: this.i18n('Plugin'), | 29 | label: this.i18n('Plugins'), |
27 | value: PluginType.PLUGIN | 30 | value: PluginType.PLUGIN |
28 | }, | 31 | }, |
29 | { | 32 | { |
30 | label: this.i18n('Theme'), | 33 | label: this.i18n('Themes'), |
31 | value: PluginType.THEME | 34 | value: PluginType.THEME |
32 | } | 35 | } |
33 | ] | 36 | ] |
34 | } | 37 | } |
35 | 38 | ||
39 | getPluginTypeLabel (type: PluginType) { | ||
40 | if (type === PluginType.PLUGIN) { | ||
41 | return this.i18n('plugin') | ||
42 | } | ||
43 | |||
44 | return this.i18n('theme') | ||
45 | } | ||
46 | |||
36 | getPlugins ( | 47 | getPlugins ( |
37 | type: PluginType, | 48 | type: PluginType, |
38 | componentPagination: ComponentPagination, | 49 | componentPagination: ComponentPagination, |
@@ -47,4 +58,57 @@ export class PluginApiService { | |||
47 | return this.authHttp.get<ResultList<PeerTubePlugin>>(PluginApiService.BASE_APPLICATION_URL, { params }) | 58 | return this.authHttp.get<ResultList<PeerTubePlugin>>(PluginApiService.BASE_APPLICATION_URL, { params }) |
48 | .pipe(catchError(res => this.restExtractor.handleError(res))) | 59 | .pipe(catchError(res => this.restExtractor.handleError(res))) |
49 | } | 60 | } |
61 | |||
62 | getPlugin (npmName: string) { | ||
63 | const path = PluginApiService.BASE_APPLICATION_URL + '/' + npmName | ||
64 | |||
65 | return this.authHttp.get<PeerTubePlugin>(path) | ||
66 | .pipe(catchError(res => this.restExtractor.handleError(res))) | ||
67 | } | ||
68 | |||
69 | getPluginRegisteredSettings (pluginName: string, pluginType: PluginType) { | ||
70 | const path = PluginApiService.BASE_APPLICATION_URL + '/' + this.nameToNpmName(pluginName, pluginType) + '/registered-settings' | ||
71 | |||
72 | return this.authHttp.get<{ settings: RegisterSettingOptions[] }>(path) | ||
73 | .pipe(catchError(res => this.restExtractor.handleError(res))) | ||
74 | } | ||
75 | |||
76 | updatePluginSettings (pluginName: string, pluginType: PluginType, settings: any) { | ||
77 | const path = PluginApiService.BASE_APPLICATION_URL + '/' + this.nameToNpmName(pluginName, pluginType) + '/settings' | ||
78 | |||
79 | return this.authHttp.put(path, { settings }) | ||
80 | .pipe(catchError(res => this.restExtractor.handleError(res))) | ||
81 | } | ||
82 | |||
83 | uninstall (pluginName: string, pluginType: PluginType) { | ||
84 | const body: ManagePlugin = { | ||
85 | npmName: this.nameToNpmName(pluginName, pluginType) | ||
86 | } | ||
87 | |||
88 | return this.authHttp.post(PluginApiService.BASE_APPLICATION_URL + '/uninstall', body) | ||
89 | .pipe(catchError(res => this.restExtractor.handleError(res))) | ||
90 | } | ||
91 | |||
92 | install (npmName: string) { | ||
93 | const body: InstallPlugin = { | ||
94 | npmName | ||
95 | } | ||
96 | |||
97 | return this.authHttp.post(PluginApiService.BASE_APPLICATION_URL + '/install', body) | ||
98 | .pipe(catchError(res => this.restExtractor.handleError(res))) | ||
99 | } | ||
100 | |||
101 | nameToNpmName (name: string, type: PluginType) { | ||
102 | const prefix = type === PluginType.PLUGIN | ||
103 | ? 'peertube-plugin-' | ||
104 | : 'peertube-theme-' | ||
105 | |||
106 | return prefix + name | ||
107 | } | ||
108 | |||
109 | pluginTypeFromNpmName (npmName: string) { | ||
110 | return npmName.startsWith('peertube-plugin-') | ||
111 | ? PluginType.PLUGIN | ||
112 | : PluginType.THEME | ||
113 | } | ||
50 | } | 114 | } |
diff --git a/client/src/app/+admin/plugins/shared/toggle-plugin-type.scss b/client/src/app/+admin/plugins/shared/toggle-plugin-type.scss new file mode 100644 index 000000000..ea2eda28c --- /dev/null +++ b/client/src/app/+admin/plugins/shared/toggle-plugin-type.scss | |||
@@ -0,0 +1,21 @@ | |||
1 | @import '_variables'; | ||
2 | @import '_mixins'; | ||
3 | |||
4 | .toggle-plugin-type { | ||
5 | display: flex; | ||
6 | justify-content: center; | ||
7 | margin-bottom: 30px; | ||
8 | |||
9 | p-selectButton { | ||
10 | /deep/ { | ||
11 | .ui-button-text { | ||
12 | font-size: 15px; | ||
13 | } | ||
14 | |||
15 | .ui-button.ui-state-active { | ||
16 | background-color: var(--mainColor); | ||
17 | border-color: var(--mainColor); | ||
18 | } | ||
19 | } | ||
20 | } | ||
21 | } | ||
diff --git a/client/src/sass/include/_bootstrap.scss b/client/src/sass/include/_bootstrap.scss index 0a9c9a903..b1a23be6b 100644 --- a/client/src/sass/include/_bootstrap.scss +++ b/client/src/sass/include/_bootstrap.scss | |||
@@ -20,7 +20,7 @@ | |||
20 | //@import '~bootstrap/scss/custom-forms'; | 20 | //@import '~bootstrap/scss/custom-forms'; |
21 | @import '~bootstrap/scss/nav'; | 21 | @import '~bootstrap/scss/nav'; |
22 | //@import '~bootstrap/scss/navbar'; | 22 | //@import '~bootstrap/scss/navbar'; |
23 | //@import '~bootstrap/scss/card'; | 23 | @import '~bootstrap/scss/card'; |
24 | //@import '~bootstrap/scss/breadcrumb'; | 24 | //@import '~bootstrap/scss/breadcrumb'; |
25 | //@import '~bootstrap/scss/pagination'; | 25 | //@import '~bootstrap/scss/pagination'; |
26 | @import '~bootstrap/scss/badge'; | 26 | @import '~bootstrap/scss/badge'; |