2021-09-15 03:45:00 +02:00
|
|
|
const DownloadStatus = {
|
|
|
|
PENDING: 0,
|
|
|
|
READY: 1,
|
|
|
|
EXPIRED: 2,
|
|
|
|
FAILED: 3
|
|
|
|
}
|
|
|
|
|
2021-10-02 03:29:00 +02:00
|
|
|
const CoverDestination = {
|
|
|
|
METADATA: 0,
|
|
|
|
AUDIOBOOK: 1
|
|
|
|
}
|
|
|
|
|
2021-09-15 03:45:00 +02:00
|
|
|
const Constants = {
|
2021-10-02 03:29:00 +02:00
|
|
|
DownloadStatus,
|
|
|
|
CoverDestination
|
2021-09-15 03:45:00 +02:00
|
|
|
}
|
|
|
|
|
2021-10-23 23:49:34 +02:00
|
|
|
const KeyNames = {
|
|
|
|
27: 'Escape',
|
|
|
|
32: 'Space',
|
|
|
|
37: 'ArrowLeft',
|
|
|
|
38: 'ArrowUp',
|
|
|
|
39: 'ArrowRight',
|
|
|
|
40: 'ArrowDown',
|
|
|
|
76: 'KeyL',
|
|
|
|
77: 'KeyM'
|
2021-10-23 03:08:02 +02:00
|
|
|
}
|
2021-10-24 21:02:49 +02:00
|
|
|
const Hotkeys = {
|
|
|
|
AudioPlayer: {
|
|
|
|
PLAY_PAUSE: 'Space',
|
|
|
|
JUMP_FORWARD: 'ArrowRight',
|
|
|
|
JUMP_BACKWARD: 'ArrowLeft',
|
|
|
|
VOLUME_UP: 'ArrowUp',
|
|
|
|
VOLUME_DOWN: 'ArrowDown',
|
|
|
|
MUTE_UNMUTE: 'KeyM',
|
|
|
|
SHOW_CHAPTERS: 'KeyL',
|
|
|
|
INCREASE_PLAYBACK_RATE: 'Shift-ArrowUp',
|
|
|
|
DECREASE_PLAYBACK_RATE: 'Shift-ArrowDown',
|
|
|
|
CLOSE: 'Escape'
|
|
|
|
},
|
|
|
|
EReader: {
|
|
|
|
NEXT_PAGE: 'ArrowRight',
|
|
|
|
PREV_PAGE: 'ArrowLeft',
|
|
|
|
CLOSE: 'Escape'
|
|
|
|
},
|
|
|
|
Modal: {
|
|
|
|
NEXT_PAGE: 'ArrowRight',
|
|
|
|
PREV_PAGE: 'ArrowLeft',
|
|
|
|
CLOSE: 'Escape'
|
|
|
|
}
|
|
|
|
}
|
2021-10-23 03:08:02 +02:00
|
|
|
|
2021-09-15 03:45:00 +02:00
|
|
|
export default ({ app }, inject) => {
|
|
|
|
inject('constants', Constants)
|
2021-10-23 23:49:34 +02:00
|
|
|
inject('keynames', KeyNames)
|
2021-10-24 21:02:49 +02:00
|
|
|
inject('hotkeys', Hotkeys)
|
2021-09-15 03:45:00 +02:00
|
|
|
}
|