2020-11-13 17:08:12 +00:00
|
|
|
const MacRunner = require('../../mac-runner')
|
2020-11-13 14:30:12 +00:00
|
|
|
const { compressPngImage } = require('../../utils')
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
run: async (outputPath) => {
|
2020-11-13 17:08:12 +00:00
|
|
|
console.log('> Recording finder show hidden files to true')
|
2020-11-13 14:30:12 +00:00
|
|
|
|
|
|
|
try {
|
2020-11-13 17:08:12 +00:00
|
|
|
const runner = new MacRunner()
|
2020-11-13 14:30:12 +00:00
|
|
|
await runner
|
2020-11-27 12:45:16 +00:00
|
|
|
.setDefault(
|
|
|
|
'com.apple.Finder',
|
|
|
|
'AppleShowAllFiles',
|
2020-11-27 14:01:10 +00:00
|
|
|
'-bool true', '1',
|
|
|
|
'killall -SIGKILL Finder'
|
2020-11-27 12:45:16 +00:00
|
|
|
)
|
2020-11-13 14:30:12 +00:00
|
|
|
.openApp('Finder', '~')
|
|
|
|
.captureApp('Finder', `${outputPath}/true.png`)
|
2020-11-27 12:45:16 +00:00
|
|
|
.deleteDefault(
|
|
|
|
'com.apple.Finder',
|
|
|
|
'AppleShowAllFiles',
|
2020-11-27 14:01:10 +00:00
|
|
|
'killall -SIGKILL Finder'
|
2020-11-27 12:45:16 +00:00
|
|
|
)
|
2020-11-13 17:08:12 +00:00
|
|
|
.run()
|
2020-11-13 14:30:12 +00:00
|
|
|
} catch (runnerError) {
|
2020-11-13 17:08:12 +00:00
|
|
|
logRollbackInfo()
|
|
|
|
throw new Error(runnerError)
|
2020-11-13 14:30:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
await compressPngImage(`${outputPath}/true.png`, outputPath, 'true')
|
|
|
|
} catch (compressPngImageError) {
|
|
|
|
logRollbackInfo()
|
|
|
|
throw new Error(compressPngImageError)
|
|
|
|
}
|
|
|
|
|
|
|
|
return { filepath: `${outputPath}/true` }
|
|
|
|
},
|
2020-11-13 17:08:12 +00:00
|
|
|
}
|
2020-11-13 14:30:12 +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:'
|
|
|
|
)
|
|
|
|
console.info(
|
|
|
|
'defaults delete com.apple.Finder AppleShowAllFiles && killall Finder'
|
|
|
|
)
|
2020-11-13 14:30:12 +00:00
|
|
|
}
|