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 left')
|
|
|
|
|
2020-11-12 21:25:23 +00:00
|
|
|
try {
|
|
|
|
const runner = new MacRunner()
|
|
|
|
await runner
|
|
|
|
.setDefault('com.apple.dock', 'orientation', '-string left', 'killall Dock')
|
|
|
|
.captureScreen(`${outputPath}/left-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-12 21:25:23 +00:00
|
|
|
await compressPngImage(`${outputPath}/left-tmp.png`, outputPath, 'left')
|
2020-09-05 19:16:27 +00:00
|
|
|
} catch (compressPngImageError) {
|
|
|
|
logRollbackInfo()
|
|
|
|
throw new Error(compressPngImageError)
|
|
|
|
}
|
|
|
|
|
|
|
|
return { filepath: `${outputPath}/left` }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function logRollbackInfo() {
|
|
|
|
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
|
|
|
}
|