2020-11-12 21:25:23 +00:00
|
|
|
const MacRunner = require('../../mac-runner')
|
2020-09-05 19:16:27 +00:00
|
|
|
const { compressPngImage } = require('../../utils')
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
run: async (outputPath) => {
|
|
|
|
console.log('> Recording dock orientation with param set to bottom')
|
|
|
|
|
2020-11-12 21:25:23 +00:00
|
|
|
try {
|
|
|
|
const runner = new MacRunner()
|
|
|
|
await runner
|
2020-11-27 12:45:16 +00:00
|
|
|
.setDefault(
|
|
|
|
'com.apple.dock',
|
|
|
|
'orientation',
|
2020-11-27 14:01:10 +00:00
|
|
|
'-string bottom', 'bottom',
|
2020-11-27 12:45:16 +00:00
|
|
|
'killall Dock'
|
|
|
|
)
|
2020-11-12 21:25:23 +00:00
|
|
|
.captureScreen(`${outputPath}/bottom-tmp.png`)
|
|
|
|
.deleteDefault('com.apple.dock', 'orientation', 'killall Dock')
|
|
|
|
.run()
|
|
|
|
} catch (runnerError) {
|
2020-09-05 19:16:27 +00:00
|
|
|
logRollbackInfo()
|
2020-11-12 21:25:23 +00:00
|
|
|
throw new Error(runnerError)
|
2020-09-05 19:16:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
2020-11-27 12:45:16 +00:00
|
|
|
await compressPngImage(
|
|
|
|
`${outputPath}/bottom-tmp.png`,
|
|
|
|
outputPath,
|
|
|
|
'bottom'
|
|
|
|
)
|
2020-09-05 19:16:27 +00:00
|
|
|
} catch (compressPngImageError) {
|
|
|
|
logRollbackInfo()
|
|
|
|
throw new Error(compressPngImageError)
|
|
|
|
}
|
|
|
|
|
|
|
|
return { filepath: `${outputPath}/bottom` }
|
2020-11-27 12:45:16 +00:00
|
|
|
},
|
2020-09-05 19:16:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function logRollbackInfo() {
|
2020-11-27 12:45:16 +00:00
|
|
|
console.info(
|
|
|
|
'Please manually run this command to make sure everything is properly reset:'
|
|
|
|
)
|
2020-11-12 21:25:23 +00:00
|
|
|
console.info('defaults delete com.apple.dock orientation && killall Dock')
|
2020-09-05 19:16:27 +00:00
|
|
|
}
|