mirror of
https://github.com/yannbertrand/macos-defaults
synced 2024-12-14 05:32:31 +00:00
74 lines
2.1 KiB
JavaScript
74 lines
2.1 KiB
JavaScript
const MacRunner = require('../../mac-runner')
|
|
const util = require('util')
|
|
const exec = util.promisify(require('child_process').exec)
|
|
const { compressPngImage } = require('../../utils')
|
|
|
|
module.exports = {
|
|
run: async (outputPath) => {
|
|
console.log('> Recording TextEdit opens rich text files to true')
|
|
|
|
try {
|
|
const filename = '/tmp/lorem.rtf';
|
|
await manageFile(filename, true)
|
|
await addContentToFile(filename, "{\\rtf1\\ansi\\ansicpg1252\\cocoartf2577\\cocoatextscaling0\\cocoaplatform0{\\fonttbl}{\\colortbl;\\red255\\green255\\blue255;}{\\*\\expandedcolortbl;;}\\paperw11900\\paperh16840\\margl1440\\margr1440\\vieww11520\\viewh8400\\viewkind0}")
|
|
|
|
const runner = new MacRunner()
|
|
await runner
|
|
.setDefault(
|
|
'com.apple.TextEdit',
|
|
'RichText',
|
|
'-bool true', '1',
|
|
''
|
|
)
|
|
.openApp('TextEdit', filename)
|
|
.moveAndResizeApp('TextEdit', 0, 0, 744, 451)
|
|
.captureApp('TextEdit', `${outputPath}/true.png`)
|
|
.deleteDefault(
|
|
'com.apple.TextEdit',
|
|
'RichText',
|
|
'killall -SIGKILL TextEdit'
|
|
)
|
|
.run()
|
|
|
|
await manageFile(filename, false);
|
|
} catch (runnerError) {
|
|
throw new Error(runnerError)
|
|
}
|
|
|
|
try {
|
|
await compressPngImage(`${outputPath}/true.png`, outputPath, 'true')
|
|
} catch (compressPngImageError) {
|
|
throw new Error(compressPngImageError)
|
|
}
|
|
|
|
return { filepath: `${outputPath}/true` }
|
|
}
|
|
}
|
|
|
|
async function manageFile(filename, create) {
|
|
console.log(` Command: ${create ? 'create' : 'remove'} ${filename}`)
|
|
const { stderr: mngFile } = await exec(
|
|
`${create ? 'touch' : 'rm -f'} ${filename}`
|
|
)
|
|
if (mngFile) {
|
|
console.error(
|
|
'An error occured while working with a file'
|
|
)
|
|
throw new Error(mngFile)
|
|
}
|
|
}
|
|
|
|
async function addContentToFile(filename, content) {
|
|
console.log(` Command: add content to ${filename}`)
|
|
const { stderr: mngFile } = await exec(
|
|
`cat > ${filename} << EOF
|
|
${content}
|
|
EOF`
|
|
)
|
|
if (mngFile) {
|
|
console.error(
|
|
'An error occured while working with a file'
|
|
)
|
|
throw new Error(mngFile)
|
|
}
|
|
}
|