Fix lint, tests and styling

pull/6266/head
Chocobozzz 2024-02-12 11:12:05 +01:00 committed by Chocobozzz
parent f9c89b98f7
commit 3cac8a756f
9 changed files with 20 additions and 25 deletions

View File

@ -1,2 +0,0 @@
@use '_variables' as *;
@use '_mixins' as *;

View File

@ -5,8 +5,7 @@ import { first } from 'rxjs'
@Component({
selector: 'my-account-import-export',
templateUrl: './my-account-import-export.component.html',
styleUrls: [ './my-account-import-export.component.scss' ]
templateUrl: './my-account-import-export.component.html'
})
export class MyAccountImportExportComponent implements OnInit, CanComponentDeactivate {
@ViewChild('accountImport') accountImport: MyAccountImportComponent
@ -20,11 +19,11 @@ export class MyAccountImportExportComponent implements OnInit, CanComponentDeact
ngOnInit () {
this.authService.userInformationLoaded
.pipe(first())
.subscribe(() => {
this.userService.getMyVideoQuotaUsed()
.subscribe(res => this.videoQuotaUsed = res.videoQuotaUsed)
})
.pipe(first())
.subscribe(() => {
this.userService.getMyVideoQuotaUsed()
.subscribe(res => this.videoQuotaUsed = res.videoQuotaUsed)
})
}
canDeactivate () {

View File

@ -7,8 +7,7 @@
<div class="col-12 col-lg-8 col-xl-9">
@if (isImportEnabled()) {
<p i18n>
You can import an archive created by another PeerTube website.
<p i18n>You can import an archive created by another PeerTube website.</p>
<p i18n>
This is an <strong>import</strong> tool and not a migration tool.

View File

@ -1,5 +1,5 @@
import { Component, OnInit } from '@angular/core'
import { AuthUser, ScreenService, ServerService } from '@app/core'
import { AuthUser, ScreenService } from '@app/core'
import { TopMenuDropdownParam } from '../shared/shared-main/misc/top-menu-dropdown.component'
@Component({
@ -11,10 +11,7 @@ export class MyAccountComponent implements OnInit {
menuEntries: TopMenuDropdownParam[] = []
user: AuthUser
constructor (
private screenService: ScreenService,
private server: ServerService
) { }
constructor (private screenService: ScreenService) { }
get isBroadcastMessageDisplayed () {
return this.screenService.isBroadcastMessageDisplayed

View File

@ -213,7 +213,7 @@ export interface ServerConfig {
}
users: {
enabled:boolean
enabled: boolean
}
}

View File

@ -4,8 +4,7 @@ import validator from 'validator'
import { getAllPrivacies, omit, pick, wait } from '@peertube/peertube-core-utils'
import {
HttpStatusCode,
HttpStatusCodeType,
ResultList,
HttpStatusCodeType, ResultList,
UserVideoRateType,
Video,
VideoCreate,
@ -631,10 +630,12 @@ export class VideosCommand extends AbstractCommand {
return super.sendResumableChunks<{ video: VideoCreateResult }>(options)
}
async buildResumeVideoUpload (options: Parameters<AbstractCommand['buildResumeUpload']>[0]) {
async buildResumeVideoUpload (
options: Parameters<AbstractCommand['buildResumeUpload']>[0]
): Promise<VideoCreateResult> {
const result = await super.buildResumeUpload<{ video: VideoCreateResult }>(options)
return result?.video || undefined
return result?.video || result as any
}
prepareVideoResumableUpload (options: Parameters<AbstractCommand['prepareResumableUpload']>[0]) {

View File

@ -1,12 +1,12 @@
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
import { HttpStatusCode } from '@peertube/peertube-models'
import {
cleanupTests,
createSingleServer, PeerTubeServer,
setAccessTokensToServers,
waitJobs
} from '@peertube/peertube-server-commands'
import { HttpStatusCode } from '../../../../models/src/http/http-status-codes.js'
import { expect } from 'chai'
describe('Test user import API validators', function () {

View File

@ -301,8 +301,8 @@ function checkUploadVideoParam (options: {
: server.videos.buildResumeVideoUpload({
token,
fixture: attributes.fixture,
attaches: this.buildUploadAttaches(attributes),
fields: this.buildUploadFields(attributes),
attaches: server.videos.buildUploadAttaches(attributes, false),
fields: server.videos.buildUploadFields(attributes),
expectedStatus,
completedExpectedStatus,
path: '/api/v1/videos/upload-resumable'

View File

@ -271,7 +271,8 @@ export class VideoPlaylistElementModel extends Model<Partial<AttributesOnly<Vide
model: VideoModel.unscoped(),
required: true
}
]
],
order: getSort('position')
}
return VideoPlaylistElementModel.findAll(query)