fcb95ecc1a
- `faker` was the original dependency but the maintainer ended up deleting the repo, so development continued in `@faker-js/faker` - we're already using that dependency, so we can make a few simple changes and remove the old dependency from our repo
21 lines
694 B
JavaScript
21 lines
694 B
JavaScript
import moment from 'moment-timezone';
|
|
import {Factory} from 'miragejs';
|
|
import {faker} from '@faker-js/faker';
|
|
|
|
let randomDate = function randomDate(start = moment().subtract(30, 'days').toDate(), end = new Date()) {
|
|
return new Date(start.getTime() + Math.random() * (end.getTime() - start.getTime()));
|
|
};
|
|
|
|
export default Factory.extend({
|
|
name() { return `${faker.name.firstName()} ${faker.name.lastName()}`; },
|
|
amount() { return faker.datatype.number({min: 1, max: 10}); },
|
|
displayTitle() { return faker.lorem.word(); },
|
|
code() { return faker.lorem.slug(); },
|
|
createdAt() { return randomDate(); },
|
|
tier() {
|
|
return {
|
|
id: '1'
|
|
};
|
|
}
|
|
});
|