Add missing hotkeys to the watch page

pull/2302/head
Chocobozzz 2019-12-06 09:55:36 +01:00
parent 0912f1b4ca
commit 941c5eac17
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
4 changed files with 50 additions and 33 deletions

View File

@ -551,26 +551,6 @@ export class VideoWatchComponent implements OnInit, OnDestroy {
} }
} }
private initHotkeys () {
this.hotkeys = [
new Hotkey('shift+l', () => {
this.setLike()
return false
}, undefined, this.i18n('Like the video')),
new Hotkey('shift+d', () => {
this.setDislike()
return false
}, undefined, this.i18n('Dislike the video')),
new Hotkey('shift+s', () => {
this.subscribeButton.subscribed ? this.subscribeButton.unsubscribe() : this.subscribeButton.subscribe()
return false
}, undefined, this.i18n('Subscribe to the account'))
]
if (this.isUserLoggedIn()) this.hotkeysService.add(this.hotkeys)
}
private buildPlayerManagerOptions (params: { private buildPlayerManagerOptions (params: {
video: VideoDetails, video: VideoDetails,
videoCaptions: VideoCaption[], videoCaptions: VideoCaption[],
@ -667,4 +647,42 @@ export class VideoWatchComponent implements OnInit, OnDestroy {
this.player.pause() this.player.pause()
} }
private initHotkeys () {
this.hotkeys = [
new Hotkey('shift+l', () => {
this.setLike()
return false
}, undefined, this.i18n('Like the video')),
new Hotkey('shift+d', () => {
this.setDislike()
return false
}, undefined, this.i18n('Dislike the video')),
new Hotkey('shift+s', () => {
this.subscribeButton.subscribed ? this.subscribeButton.unsubscribe() : this.subscribeButton.subscribe()
return false
}, undefined, this.i18n('Subscribe to the account')),
// These hotkeys are managed by the player
new Hotkey('f', e => e, undefined, this.i18n('Enter/exit fullscreen (requires player focus)')),
new Hotkey('space', e => e, undefined, this.i18n('Play/Pause the video (requires player focus)')),
new Hotkey('m', e => e, undefined, this.i18n('Mute/unmute the video (requires player focus)')),
new Hotkey('0-9', e => e, undefined, this.i18n('Skip to a percentage of the video: 0 is 0% and 9 is 90% (requires player focus)')),
new Hotkey('up', e => e, undefined, this.i18n('Increase the volume (requires player focus)')),
new Hotkey('down', e => e, undefined, this.i18n('Decrease the volume (requires player focus)')),
new Hotkey('right', e => e, undefined, this.i18n('Seek the video forward (requires player focus)')),
new Hotkey('left', e => e, undefined, this.i18n('Seek the video backward (requires player focus)')),
new Hotkey('>', e => e, undefined, this.i18n('Increase playback rate (requires player focus)')),
new Hotkey('<', e => e, undefined, this.i18n('Decrease playback rate (requires player focus)')),
new Hotkey('.', e => e, undefined, this.i18n('Navigate in the video frame by frame (requires player focus)'))
]
if (this.isUserLoggedIn()) this.hotkeysService.add(this.hotkeys)
}
} }

View File

@ -1,6 +1,5 @@
import { values } from 'lodash' import { values } from 'lodash'
import { extname } from 'path' import { extname } from 'path'
import * as Sequelize from 'sequelize'
import { import {
AllowNull, AllowNull,
BelongsTo, BelongsTo,
@ -48,7 +47,7 @@ import {
MActorWithInboxes MActorWithInboxes
} from '../../typings/models' } from '../../typings/models'
import * as Bluebird from 'bluebird' import * as Bluebird from 'bluebird'
import { Op } from 'sequelize' import { Op, Transaction } from 'sequelize'
enum ScopeNames { enum ScopeNames {
FULL = 'FULL' FULL = 'FULL'
@ -285,7 +284,7 @@ export class ActorModel extends Model<ActorModel> {
return ActorModel.scope(ScopeNames.FULL).findByPk(id) return ActorModel.scope(ScopeNames.FULL).findByPk(id)
} }
static loadFromAccountByVideoId (videoId: number, transaction: Sequelize.Transaction): Bluebird<MActor> { static loadFromAccountByVideoId (videoId: number, transaction: Transaction): Bluebird<MActor> {
const query = { const query = {
include: [ include: [
{ {
@ -329,11 +328,11 @@ export class ActorModel extends Model<ActorModel> {
.then(a => !!a) .then(a => !!a)
} }
static listByFollowersUrls (followersUrls: string[], transaction?: Sequelize.Transaction): Bluebird<MActorFull[]> { static listByFollowersUrls (followersUrls: string[], transaction?: Transaction): Bluebird<MActorFull[]> {
const query = { const query = {
where: { where: {
followersUrl: { followersUrl: {
[ Sequelize.Op.in ]: followersUrls [ Op.in ]: followersUrls
} }
}, },
transaction transaction
@ -342,7 +341,7 @@ export class ActorModel extends Model<ActorModel> {
return ActorModel.scope(ScopeNames.FULL).findAll(query) return ActorModel.scope(ScopeNames.FULL).findAll(query)
} }
static loadLocalByName (preferredUsername: string, transaction?: Sequelize.Transaction): Bluebird<MActorFull> { static loadLocalByName (preferredUsername: string, transaction?: Transaction): Bluebird<MActorFull> {
const query = { const query = {
where: { where: {
preferredUsername, preferredUsername,
@ -373,7 +372,7 @@ export class ActorModel extends Model<ActorModel> {
return ActorModel.scope(ScopeNames.FULL).findOne(query) return ActorModel.scope(ScopeNames.FULL).findOne(query)
} }
static loadByUrl (url: string, transaction?: Sequelize.Transaction): Bluebird<MActorAccountChannelId> { static loadByUrl (url: string, transaction?: Transaction): Bluebird<MActorAccountChannelId> {
const query = { const query = {
where: { where: {
url url
@ -396,7 +395,7 @@ export class ActorModel extends Model<ActorModel> {
return ActorModel.unscoped().findOne(query) return ActorModel.unscoped().findOne(query)
} }
static loadByUrlAndPopulateAccountAndChannel (url: string, transaction?: Sequelize.Transaction): Bluebird<MActorFull> { static loadByUrlAndPopulateAccountAndChannel (url: string, transaction?: Transaction): Bluebird<MActorFull> {
const query = { const query = {
where: { where: {
url url
@ -483,7 +482,7 @@ export class ActorModel extends Model<ActorModel> {
return activityPubContextify(json) return activityPubContextify(json)
} }
getFollowerSharedInboxUrls (t: Sequelize.Transaction) { getFollowerSharedInboxUrls (t: Transaction) {
const query = { const query = {
attributes: [ 'sharedInboxUrl' ], attributes: [ 'sharedInboxUrl' ],
include: [ include: [

View File

@ -292,7 +292,7 @@ describe('Test video transcoding', function () {
tempFixturePath = await generateHighBitrateVideo() tempFixturePath = await generateHighBitrateVideo()
const bitrate = await getVideoFileBitrate(tempFixturePath) const bitrate = await getVideoFileBitrate(tempFixturePath)
expect(bitrate).to.be.above(getMaxBitrate(VideoResolution.H_1080P, 60, VIDEO_TRANSCODING_FPS)) expect(bitrate).to.be.above(getMaxBitrate(VideoResolution.H_1080P, 25, VIDEO_TRANSCODING_FPS))
} }
const videoAttributes = { const videoAttributes = {
@ -331,7 +331,7 @@ describe('Test video transcoding', function () {
tempFixturePath = await generateHighBitrateVideo() tempFixturePath = await generateHighBitrateVideo()
const bitrate = await getVideoFileBitrate(tempFixturePath) const bitrate = await getVideoFileBitrate(tempFixturePath)
expect(bitrate).to.be.above(getMaxBitrate(VideoResolution.H_1080P, 60, VIDEO_TRANSCODING_FPS)) expect(bitrate).to.be.above(getMaxBitrate(VideoResolution.H_1080P, 25, VIDEO_TRANSCODING_FPS))
} }
for (const fixture of [ 'video_short.mkv', 'video_short.avi' ]) { for (const fixture of [ 'video_short.mkv', 'video_short.avi' ]) {

View File

@ -46,7 +46,7 @@ describe('Test optimize old videos', function () {
tempFixturePath = await generateHighBitrateVideo() tempFixturePath = await generateHighBitrateVideo()
const bitrate = await getVideoFileBitrate(tempFixturePath) const bitrate = await getVideoFileBitrate(tempFixturePath)
expect(bitrate).to.be.above(getMaxBitrate(VideoResolution.H_1080P, 60, VIDEO_TRANSCODING_FPS)) expect(bitrate).to.be.above(getMaxBitrate(VideoResolution.H_1080P, 25, VIDEO_TRANSCODING_FPS))
} }
// Upload two videos for our needs // Upload two videos for our needs
@ -102,7 +102,7 @@ describe('Test optimize old videos', function () {
expect(videosDetails.files).to.have.lengthOf(1) expect(videosDetails.files).to.have.lengthOf(1)
const file = videosDetails.files[0] const file = videosDetails.files[0]
expect(file.size).to.be.below(5000000) expect(file.size).to.be.below(8000000)
const path = join(root(), 'test' + servers[0].internalServerNumber, 'videos', video.uuid + '-' + file.resolution.id + '.mp4') const path = join(root(), 'test' + servers[0].internalServerNumber, 'videos', video.uuid + '-' + file.resolution.id + '.mp4')
const bitrate = await getVideoFileBitrate(path) const bitrate = await getVideoFileBitrate(path)