mirror of
https://github.com/thumbsup/thumbsup
synced 2024-11-15 18:12:46 +00:00
e9beb830a2
Thumbsup used to stop at the first problem processing a file. This was a problem on large galleries where you’d need to run it again and again, fixing files as you went. This change: - skips problematic files and shows a summary at the end - logs all warnings/errors to <thumbsup.log> when running the default output Also refactor and cleanup of the logging logic.
62 lines
1.8 KiB
JavaScript
62 lines
1.8 KiB
JavaScript
const chalk = require('chalk')
|
|
const boxen = require('boxen')
|
|
|
|
const DOCS_URL = chalk.green('https://thumbsup.github.io/docs')
|
|
const ISSUES_URL = chalk.green('https://github.com/thumbsup/thumbsup/issues')
|
|
|
|
function box (str) {
|
|
const lines = str.split('\n').map(s => ` ${s} `).join('\n')
|
|
return boxen(lines)
|
|
}
|
|
|
|
exports.USAGE = () => `
|
|
Usages:
|
|
thumbsup [required] [options]
|
|
thumbsup --config config.json
|
|
`
|
|
|
|
exports.CONFIG_USAGE = () => `
|
|
The optional JSON config should contain a single object with one key
|
|
per argument, not including the leading "--". For example:
|
|
{ "sort-albums-by": "start-date" }
|
|
`
|
|
|
|
exports.BINARIES_REQUIRED = (list) => `
|
|
Error: the following programs are required to run thumbsup.
|
|
Please make sure they are installed and available in the system path.\n
|
|
${list.join('\n')}
|
|
`
|
|
|
|
exports.SUCCESS = (stats) => box(`
|
|
Gallery generated successfully!
|
|
${stats.albums} albums, ${stats.photos} photos, ${stats.videos} videos
|
|
`)
|
|
|
|
exports.PROBLEMS = (count) => chalk.yellow(`
|
|
Warning: there was an issue with ${count} file${count > 1 ? 's' : ''}.
|
|
Please check the full log for more detail.
|
|
`)
|
|
|
|
exports.GREETING = () => box(`
|
|
Thanks for using thumbsup!
|
|
|
|
Don't forget to check out the docs at ${DOCS_URL}.
|
|
|
|
When building a gallery, thumbsup reports anonymous stats such as the OS and
|
|
gallery size. This is used to understand usage patterns & guide development
|
|
effort. You can disable usage reporting by specifying --no-usage-stats.
|
|
|
|
This welcome message will not be shown again for this gallery.
|
|
Enjoy!
|
|
`)
|
|
|
|
exports.SORRY = () => box(`
|
|
Something went wrong!
|
|
|
|
An unexpected error occurred and the gallery didn't build successfully.
|
|
This is most likely an edge-case that hasn't been tested before.
|
|
|
|
To help improve thumbsup and hopefully resolve your problem,
|
|
please raise an issue at ${ISSUES_URL}.
|
|
`)
|