PeerTube/client/src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts
Chocobozzz 3a4992633e
Migrate server to ESM
Sorry for the very big commit that may lead to git log issues and merge
conflicts, but it's a major step forward:

 * Server can be faster at startup because imports() are async and we can
   easily lazy import big modules
 * Angular doesn't seem to support ES import (with .js extension), so we
   had to correctly organize peertube into a monorepo:
    * Use yarn workspace feature
    * Use typescript reference projects for dependencies
    * Shared projects have been moved into "packages", each one is now a
      node module (with a dedicated package.json/tsconfig.json)
    * server/tools have been moved into apps/ and is now a dedicated app
      bundled and published on NPM so users don't have to build peertube
      cli tools manually
    * server/tests have been moved into packages/ so we don't compile
      them every time we want to run the server
 * Use isolatedModule option:
   * Had to move from const enum to const
     (https://www.typescriptlang.org/docs/handbook/enums.html#objects-vs-enums)
   * Had to explictely specify "type" imports when used in decorators
 * Prefer tsx (that uses esbuild under the hood) instead of ts-node to
   load typescript files (tests with mocha or scripts):
     * To reduce test complexity as esbuild doesn't support decorator
       metadata, we only test server files that do not import server
       models
     * We still build tests files into js files for a faster CI
 * Remove unmaintained peertube CLI import script
 * Removed some barrels to speed up execution (less imports)
2023-08-11 15:02:33 +02:00

199 lines
5.4 KiB
TypeScript

import { Subject } from 'rxjs'
import { Component, OnInit } from '@angular/core'
import { ActivatedRoute, Router } from '@angular/router'
import { PluginApiService } from '@app/+admin/plugins/shared/plugin-api.service'
import { ComponentPagination, ConfirmService, hasMoreItems, Notifier } from '@app/core'
import { PluginService } from '@app/core/plugins/plugin.service'
import { compareSemVer } from '@peertube/peertube-core-utils'
import { PeerTubePlugin, PluginType, PluginType_Type } from '@peertube/peertube-models'
@Component({
selector: 'my-plugin-list-installed',
templateUrl: './plugin-list-installed.component.html',
styleUrls: [ './plugin-list-installed.component.scss' ]
})
export class PluginListInstalledComponent implements OnInit {
pluginType: PluginType_Type
pagination: ComponentPagination = {
currentPage: 1,
itemsPerPage: 10,
totalItems: null
}
sort = 'name'
plugins: PeerTubePlugin[] = []
updating: { [name: string]: boolean } = {}
uninstalling: { [name: string]: boolean } = {}
onDataSubject = new Subject<any[]>()
constructor (
private pluginService: PluginService,
private pluginApiService: PluginApiService,
private notifier: Notifier,
private confirmService: ConfirmService,
private router: Router,
private route: ActivatedRoute
) {
}
ngOnInit () {
if (!this.route.snapshot.queryParams['pluginType']) {
const queryParams = { pluginType: PluginType.PLUGIN }
this.router.navigate([], { queryParams, replaceUrl: true })
}
this.route.queryParams.subscribe(query => {
if (!query['pluginType']) return
this.pluginType = parseInt(query['pluginType'], 10) as PluginType_Type
this.reloadPlugins()
})
}
reloadPlugins () {
this.pagination.currentPage = 1
this.plugins = []
this.loadMorePlugins()
}
loadMorePlugins () {
this.pluginApiService.getPlugins(this.pluginType, this.pagination, this.sort)
.subscribe({
next: res => {
this.plugins = this.plugins.concat(res.data)
this.pagination.totalItems = res.total
this.onDataSubject.next(res.data)
},
error: err => this.notifier.error(err.message)
})
}
onNearOfBottom () {
if (!hasMoreItems(this.pagination)) return
this.pagination.currentPage += 1
this.loadMorePlugins()
}
getNoResultMessage () {
if (this.pluginType === PluginType.PLUGIN) {
return $localize`You don't have plugins installed yet.`
}
return $localize`You don't have themes installed yet.`
}
isUpdateAvailable (plugin: PeerTubePlugin) {
return plugin.latestVersion && compareSemVer(plugin.latestVersion, plugin.version) > 0
}
getUpdateLabel (plugin: PeerTubePlugin) {
return $localize`Update to ${plugin.latestVersion}`
}
isUpdating (plugin: PeerTubePlugin) {
return !!this.updating[this.getPluginKey(plugin)]
}
isUninstalling (plugin: PeerTubePlugin) {
return !!this.uninstalling[this.getPluginKey(plugin)]
}
isTheme (plugin: PeerTubePlugin) {
return plugin.type === PluginType.THEME
}
async uninstall (plugin: PeerTubePlugin) {
const pluginKey = this.getPluginKey(plugin)
if (this.uninstalling[pluginKey]) return
const res = await this.confirmService.confirm(
$localize`Do you really want to uninstall ${plugin.name}?`,
$localize`Uninstall`
)
if (res === false) return
this.uninstalling[pluginKey] = true
this.pluginApiService.uninstall(plugin.name, plugin.type)
.subscribe({
next: () => {
this.notifier.success($localize`${plugin.name} uninstalled.`)
this.plugins = this.plugins.filter(p => p.name !== plugin.name)
this.pagination.totalItems--
this.uninstalling[pluginKey] = false
},
error: err => {
this.notifier.error(err.message)
this.uninstalling[pluginKey] = false
}
})
}
async update (plugin: PeerTubePlugin) {
const pluginKey = this.getPluginKey(plugin)
if (this.updating[pluginKey]) return
if (this.isMajorUpgrade(plugin)) {
const res = await this.confirmService.confirm(
$localize`This is a major plugin upgrade. Please go on the plugin homepage to check potential release notes.`,
$localize`Upgrade`,
$localize`Proceed upgrade`
)
if (res === false) return
}
this.updating[pluginKey] = true
this.pluginApiService.update(plugin.name, plugin.type)
.pipe()
.subscribe({
next: res => {
this.updating[pluginKey] = false
this.notifier.success($localize`${plugin.name} updated.`)
Object.assign(plugin, res)
},
error: err => {
this.notifier.error(err.message)
this.updating[pluginKey] = false
}
})
}
getShowRouterLink (plugin: PeerTubePlugin) {
return [ '/admin', 'plugins', 'show', this.pluginService.nameToNpmName(plugin.name, plugin.type) ]
}
getPluginOrThemeHref (name: string) {
return this.pluginApiService.getPluginOrThemeHref(this.pluginType, name)
}
private getPluginKey (plugin: PeerTubePlugin) {
return plugin.name + plugin.type
}
private isMajorUpgrade (plugin: PeerTubePlugin) {
if (!plugin.latestVersion) return false
const latestMajor = plugin.latestVersion.split('.')[0]
const currentMajor = plugin.version.split('.')[0]
return latestMajor > currentMajor
}
}