Ghost/ghost/data-generator/lib/utils/event-generator.js
Sam Lord 28b11e6fed
Added command to generate demo data (#15691)
refs: https://github.com/TryGhost/Toolbox/issues/440

New command to generate demo data, creates data for over 20 tables in
Ghost, suitable for testing most features of the dashboard, as well as
making guided product tours using newsletters, tiers, many posts and
tags.

Usage: `yarn start generate-data`

Optionally, keep your existing posts / tags with: `yarn start generate-data --use-existing-tags --use-existing-posts`
2022-10-26 17:55:08 +01:00

44 lines
1.0 KiB
JavaScript

const probabilityDistributions = require('probability-distributions');
const generateEvents = ({
shape = 'flat',
trend = 'positive',
total = 0,
startTime = new Date(),
endTime = new Date()
} = {}) => {
let alpha = 0;
let beta = 0;
let positiveTrend = trend === 'positive';
switch (shape) {
case 'linear':
alpha = 2;
beta = 1;
break;
case 'ease-in':
alpha = 4;
beta = 1;
break;
case 'ease-out':
alpha = 1;
beta = 4;
positiveTrend = !positiveTrend;
break;
case 'flat':
alpha = 1;
beta = 1;
break;
}
const data = probabilityDistributions.rbeta(total, alpha, beta, 0);
const startTimeValue = startTime.valueOf();
const timeDifference = endTime.valueOf() - startTimeValue;
return data.map((x) => {
if (!positiveTrend) {
x = 1 - x;
}
return new Date(startTimeValue + timeDifference * x);
});
};
module.exports = generateEvents;