mirror of
https://github.com/yannbertrand/macos-defaults
synced 2024-11-14 15:47:16 +00:00
78d713f8ab
* ⬆️ Upgrade prettier to v3 * 🚨 Run prettier v3 --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Yann Bertrand <5855339+yannbertrand@users.noreply.github.com>
58 lines
1.8 KiB
JavaScript
58 lines
1.8 KiB
JavaScript
const glob = require('glob-promise')
|
|
const path = require('path')
|
|
const robot = require('robotjs')
|
|
const Confirm = require('prompt-confirm')
|
|
const { makeAppActive } = require('./utils')
|
|
|
|
module.exports = async (files) => {
|
|
try {
|
|
const scriptFiles =
|
|
files.length > 0 ? files : await glob('!(node_modules)/**/*.js')
|
|
|
|
console.info(`\nFound ${scriptFiles.length} scripts to run.`)
|
|
console.info('Please close Safari and do not move the mouse until the end.')
|
|
console.info('It should take a few minutes, go grab a drink!\n')
|
|
console.info('iTerm should reopen when its done.\n')
|
|
|
|
const prompt = new Confirm('Ready?')
|
|
if (!(await prompt.run())) return
|
|
|
|
robot.keyTap('h', 'command')
|
|
|
|
for (const scriptFile of scriptFiles) {
|
|
const script = require(`./${scriptFile}`)
|
|
try {
|
|
await script.run(getImagePath(scriptFile))
|
|
} catch (error) {
|
|
await makeAppActive('iTerm')
|
|
throw error
|
|
}
|
|
}
|
|
|
|
await makeAppActive('iTerm')
|
|
|
|
console.info(
|
|
`\nAll videos and screenshots were successfully recorded. You can use your mouse again\n`,
|
|
)
|
|
} catch (error) {
|
|
await makeAppActive('iTerm')
|
|
|
|
if (error.code === 'RECORDER_TIMEOUT') {
|
|
console.info('The recorder timed out.')
|
|
console.info(
|
|
"You probably need to activate the screen recording feature for the terminal you're using.",
|
|
)
|
|
console.info(
|
|
"You'll find that settings under: System Parameters > Security & Confidentiality > Confidentiality > Screen recording",
|
|
)
|
|
} else if (error.code === 'ENOTDIR') {
|
|
console.info('A mandatory folder was not found.')
|
|
} else {
|
|
console.error('An error occured while recording')
|
|
}
|
|
|
|
throw error
|
|
}
|
|
}
|
|
|
|
const getImagePath = (file) => path.normalize(`../images/${path.dirname(file)}`)
|