happypack
Version:
webpack speed booster, makes you happy!
29 lines (26 loc) • 793 B
JavaScript
const initialWidgets = [
{id: 1, color: 'Red', sprocketCount: 7, owner: 'John'},
{id: 2, color: 'Taupe', sprocketCount: 1, owner: 'George'},
{id: 3, color: 'Green', sprocketCount: 8, owner: 'Ringo'},
{id: 4, color: 'Blue', sprocketCount: 2, owner: 'Paul'}
];
export function getWidgets(req) {
let widgets = req.session.widgets;
if (!widgets) {
widgets = initialWidgets;
req.session.widgets = widgets;
}
return widgets;
}
export default function load(req) {
return new Promise((resolve, reject) => {
// make async call to database
setTimeout(() => {
if (Math.random() < 0.33) {
reject('Widget load fails 33% of the time. You were unlucky.');
} else {
resolve(getWidgets(req));
}
}, 1000); // simulate async load
});
}