2020-11-15 16:18:46 +02:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
const Generator = require('yeoman-generator');
|
|
|
|
const chalk = require('chalk');
|
|
|
|
const yosay = require('yosay');
|
2021-01-04 20:45:43 +02:00
|
|
|
const slugify = require('slugify');
|
2020-11-15 16:18:46 +02:00
|
|
|
|
2020-11-19 17:57:47 +02:00
|
|
|
function mergePackageKey(parentKey, source, dest) {
|
|
|
|
const output = Object.assign({}, dest);
|
|
|
|
|
|
|
|
for (const k in source) {
|
2021-01-04 21:32:30 +02:00
|
|
|
if (k === 'keywords' && !Array.isArray(output[k])) {
|
|
|
|
// Fix an earlier bugs where keywords were set to an empty object
|
|
|
|
output[k] = source[k];
|
|
|
|
} else if (k === 'keywords') {
|
|
|
|
// For keywords, make sure to add the "joplin-plugin" one
|
|
|
|
if (!output['keywords']) output['keywords'] = [];
|
|
|
|
if (output['keywords'].indexOf('joplin-plugin') < 0) output['keywords'].push('joplin-plugin');
|
|
|
|
} else if (!(k in output)) {
|
2020-11-19 17:57:47 +02:00
|
|
|
// If the key doesn't exist in the destination, add it
|
|
|
|
output[k] = source[k];
|
|
|
|
} else if (parentKey === 'devDependencies') {
|
|
|
|
// If we are dealing with the dependencies, overwrite with the
|
|
|
|
// version from source.
|
|
|
|
output[k] = source[k];
|
2021-01-03 15:21:48 +02:00
|
|
|
} else if (typeof source[k] === 'object' && !Array.isArray(source[k]) && source[k] !== null) {
|
2020-11-19 17:57:47 +02:00
|
|
|
// If it's an object, recursively process it
|
|
|
|
output[k] = mergePackageKey(k, source[k], output[k]);
|
|
|
|
} else {
|
|
|
|
// Otherwise, the default is to preserve the destination key
|
|
|
|
output[k] = dest[k];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return output;
|
|
|
|
}
|
|
|
|
|
2021-01-04 20:45:43 +02:00
|
|
|
function packageNameFromPluginName(pluginName) {
|
|
|
|
return `joplin-plugin-${slugify(pluginName, {
|
|
|
|
lower: true,
|
|
|
|
})}`;
|
|
|
|
}
|
|
|
|
|
|
|
|
function addDerivedProps(props) {
|
|
|
|
return Object.assign({}, props, {
|
|
|
|
packageName: packageNameFromPluginName(props.pluginName),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-11-15 16:18:46 +02:00
|
|
|
module.exports = class extends Generator {
|
2020-11-18 12:17:27 +02:00
|
|
|
|
|
|
|
constructor(args, opts) {
|
|
|
|
super(args, opts);
|
|
|
|
|
|
|
|
this.option('silent');
|
|
|
|
this.option('update');
|
|
|
|
|
|
|
|
if (this.options.update) {
|
|
|
|
// When updating, overwrite files without prompting
|
|
|
|
this.conflicter.force = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async prompting() {
|
2020-11-15 16:18:46 +02:00
|
|
|
this.log(yosay(`Welcome to the fine ${chalk.red('generator-joplin')} generator!`));
|
|
|
|
|
2020-11-18 12:17:27 +02:00
|
|
|
if (this.options.update && !this.options.silent) {
|
|
|
|
const answers = await this.prompt([
|
|
|
|
{
|
|
|
|
type: 'confirm',
|
|
|
|
name: 'proceed',
|
|
|
|
message: [
|
|
|
|
'Updating will overwrite all the generator files **except for the',
|
|
|
|
'src/ directory**. So if you have made any changes outside of src/',
|
|
|
|
'make sure your code is under version control so that you can inspect',
|
|
|
|
'the diff and re-apply your changes if needed. Do you want to proceed?',
|
|
|
|
].join('\n'),
|
|
|
|
},
|
|
|
|
]);
|
|
|
|
|
|
|
|
if (!answers.proceed) {
|
|
|
|
this.log('');
|
|
|
|
this.log('Operation was cancelled and no changes was made');
|
|
|
|
process.exit(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-15 16:18:46 +02:00
|
|
|
const prompts = [
|
2020-11-17 20:26:24 +02:00
|
|
|
{
|
|
|
|
type: 'input',
|
|
|
|
name: 'pluginId',
|
|
|
|
message: 'Plugin ID [Must be a globally unique ID such as "com.example.MyPlugin" or a UUID]',
|
|
|
|
},
|
2020-11-15 16:18:46 +02:00
|
|
|
{
|
|
|
|
type: 'input',
|
|
|
|
name: 'pluginName',
|
2020-11-17 20:26:24 +02:00
|
|
|
message: 'Plugin name [User-friendly string which will be displayed in UI]',
|
2020-11-15 16:18:46 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
type: 'input',
|
|
|
|
name: 'pluginDescription',
|
|
|
|
message: 'Plugin description:',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: 'input',
|
|
|
|
name: 'pluginAuthor',
|
|
|
|
message: 'Author:',
|
|
|
|
},
|
2021-01-04 20:45:43 +02:00
|
|
|
{
|
|
|
|
type: 'input',
|
|
|
|
name: 'pluginRepositoryUrl',
|
|
|
|
message: 'Repository URL:',
|
|
|
|
},
|
2020-11-15 16:18:46 +02:00
|
|
|
{
|
|
|
|
type: 'input',
|
|
|
|
name: 'pluginHomepageUrl',
|
|
|
|
message: 'Homepage URL:',
|
|
|
|
},
|
|
|
|
];
|
|
|
|
|
2020-11-18 12:17:27 +02:00
|
|
|
if (this.options.update) {
|
|
|
|
const props = {};
|
|
|
|
for (const prompt of prompts) {
|
|
|
|
props[prompt.name] = '';
|
|
|
|
}
|
2021-01-04 20:45:43 +02:00
|
|
|
this.props = addDerivedProps(props);
|
2020-11-18 12:17:27 +02:00
|
|
|
} else {
|
|
|
|
return this.prompt(prompts).then(props => {
|
2021-01-04 20:45:43 +02:00
|
|
|
this.props = addDerivedProps(props);
|
2020-11-18 12:17:27 +02:00
|
|
|
});
|
|
|
|
}
|
2020-11-15 16:18:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
writing() {
|
|
|
|
// Due to WONTFIX bug in npm, which treats .gitignore and pakage.json in a special way,
|
|
|
|
// we need to give them a different name in the templates dir and then rename them
|
|
|
|
// when installing.
|
|
|
|
// https://github.com/npm/npm/issues/3763
|
|
|
|
|
|
|
|
const files = [
|
|
|
|
'.gitignore_TEMPLATE',
|
2021-01-04 20:45:43 +02:00
|
|
|
'.npmignore_TEMPLATE',
|
|
|
|
'GENERATOR_DOC.md',
|
2020-11-15 16:18:46 +02:00
|
|
|
'package_TEMPLATE.json',
|
|
|
|
'README.md',
|
|
|
|
'tsconfig.json',
|
|
|
|
'webpack.config.js',
|
2020-11-18 12:17:27 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
const noUpdateFiles = [
|
2020-11-15 16:18:46 +02:00
|
|
|
'src/index.ts',
|
|
|
|
'src/manifest.json',
|
|
|
|
];
|
|
|
|
|
2020-11-18 12:17:27 +02:00
|
|
|
const allFiles = files.concat(noUpdateFiles);
|
|
|
|
|
|
|
|
for (const file of allFiles) {
|
|
|
|
if (this.options.update && noUpdateFiles.includes(file)) continue;
|
|
|
|
|
2020-11-15 16:18:46 +02:00
|
|
|
const destFile = file.replace(/_TEMPLATE/, '');
|
2020-11-19 17:57:47 +02:00
|
|
|
const destFilePath = this.destinationPath(destFile);
|
|
|
|
|
|
|
|
if (this.options.update && destFile === 'package.json' && this.fs.exists(destFilePath)) {
|
|
|
|
const destContent = this.fs.readJSON(destFilePath);
|
|
|
|
|
|
|
|
this.fs.copy(
|
|
|
|
this.templatePath(file),
|
|
|
|
destFilePath, {
|
|
|
|
process: (sourceBuffer) => {
|
|
|
|
const sourceContent = JSON.parse(sourceBuffer.toString());
|
|
|
|
const newContent = mergePackageKey(null, sourceContent, destContent);
|
|
|
|
return JSON.stringify(newContent, null, 2);
|
|
|
|
},
|
|
|
|
}
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
this.fs.copyTpl(
|
|
|
|
this.templatePath(file),
|
|
|
|
destFilePath,
|
|
|
|
this.props
|
|
|
|
);
|
|
|
|
}
|
2020-11-15 16:18:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
this.fs.copy(
|
|
|
|
this.templatePath('api'),
|
|
|
|
this.destinationPath('api')
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
install() {
|
|
|
|
this.installDependencies({
|
|
|
|
npm: true,
|
|
|
|
bower: false,
|
|
|
|
yarn: false,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|