Use object shorthand for properties
This commit is contained in:
@@ -26,7 +26,7 @@ module.exports = class MediaController {
|
||||
ipcRenderer.once('checkForExternalPlayer', function (e, isInstalled) {
|
||||
state.modal = {
|
||||
id: 'unsupported-media-modal',
|
||||
error: error,
|
||||
error,
|
||||
externalPlayerInstalled: isInstalled
|
||||
}
|
||||
})
|
||||
|
||||
@@ -109,7 +109,7 @@ function loadSubtitle (file, cb) {
|
||||
buffer: 'data:text/vtt;base64,' + buf.toString('base64'),
|
||||
language: langDetected,
|
||||
label: langDetected,
|
||||
filePath: filePath
|
||||
filePath
|
||||
}
|
||||
|
||||
cb(null, track)
|
||||
|
||||
@@ -25,7 +25,7 @@ module.exports = class TorrentController {
|
||||
}
|
||||
|
||||
torrentSummary = {
|
||||
torrentKey: torrentKey,
|
||||
torrentKey,
|
||||
status: 'new'
|
||||
}
|
||||
torrents.unshift(torrentSummary)
|
||||
|
||||
@@ -55,7 +55,7 @@ module.exports = class TorrentListController {
|
||||
if (files.length === 0 || typeof files[0] !== 'string') {
|
||||
this.state.location.go({
|
||||
url: 'create-torrent',
|
||||
files: files,
|
||||
files,
|
||||
setup: (cb) => {
|
||||
this.state.window.title = 'Create New Torrent'
|
||||
cb(null)
|
||||
|
||||
@@ -13,7 +13,7 @@ module.exports = class UpdateController {
|
||||
console.log('new version skipped by user: v' + version)
|
||||
return
|
||||
}
|
||||
this.state.modal = { id: 'update-available-modal', version: version }
|
||||
this.state.modal = { id: 'update-available-modal', version }
|
||||
}
|
||||
|
||||
// Don't show the modal again until the next version
|
||||
|
||||
@@ -117,7 +117,7 @@ function torrentPosterFromAudio (torrent, cb) {
|
||||
|
||||
const bestCover = imageFiles.map(file => {
|
||||
return {
|
||||
file: file,
|
||||
file,
|
||||
score: scoreAudioCoverFile(file)
|
||||
}
|
||||
}).reduce((a, b) => {
|
||||
|
||||
@@ -312,7 +312,7 @@ const dispatchHandlers = {
|
||||
// Preferences screen
|
||||
preferences: () => controllers.prefs().show(),
|
||||
updatePreferences: (key, value) => controllers.prefs().update(key, value),
|
||||
checkDownloadPath: checkDownloadPath,
|
||||
checkDownloadPath,
|
||||
startFolderWatcher: () => controllers.folderWatcher().start(),
|
||||
stopFolderWatcher: () => controllers.folderWatcher().stop(),
|
||||
|
||||
@@ -322,20 +322,20 @@ const dispatchHandlers = {
|
||||
|
||||
// Navigation between screens (back, forward, ESC, etc)
|
||||
exitModal: () => { state.modal = null },
|
||||
backToList: backToList,
|
||||
escapeBack: escapeBack,
|
||||
backToList,
|
||||
escapeBack,
|
||||
back: () => state.location.back(),
|
||||
forward: () => state.location.forward(),
|
||||
cancel: () => state.location.cancel(),
|
||||
|
||||
// Controlling the window
|
||||
setDimensions: setDimensions,
|
||||
setDimensions,
|
||||
toggleFullScreen: (setTo) => ipcRenderer.send('toggleFullScreen', setTo),
|
||||
setTitle: (title) => { state.window.title = title },
|
||||
resetTitle: () => { state.window.title = config.APP_WINDOW_TITLE },
|
||||
|
||||
// Everything else
|
||||
onOpen: onOpen,
|
||||
onOpen,
|
||||
error: onError,
|
||||
uncaughtError: (proc, err) => telemetry.logUncaughtError(proc, err),
|
||||
stateSave: () => State.save(state),
|
||||
|
||||
@@ -113,8 +113,8 @@ function startTorrenting (torrentKey, torrentID, path, fileModtimes, selections)
|
||||
console.log('starting torrent %s: %s', torrentKey, torrentID)
|
||||
|
||||
const torrent = client.add(torrentID, {
|
||||
path: path,
|
||||
fileModtimes: fileModtimes
|
||||
path,
|
||||
fileModtimes
|
||||
})
|
||||
torrent.key = torrentKey
|
||||
|
||||
|
||||
Reference in New Issue
Block a user