Files
habitica/website/common/script/libs/taskDefaults.js
Matteo Pagliazzi 5c89451985 Client Fixes (#8985)
* fix typos

* tasks created immediately

* fix page scroll when cancelling task edit

* fix cheklist editing + misc fixes to tasks modal

* remove console.log
2017-08-24 16:48:52 +02:00

82 lines
1.7 KiB
JavaScript

import { v4 as uuid } from 'uuid';
import defaults from 'lodash/defaults';
import moment from 'moment';
// Even though Mongoose handles task defaults, we want to make sure defaults are set on the client-side before
// sending up to the server for performance
// TODO move to client code?
const tasksTypes = ['habit', 'daily', 'todo', 'reward'];
module.exports = function taskDefaults (task = {}) {
if (!task.type || tasksTypes.indexOf(task.type) === -1) {
task.type = 'habit';
}
let defaultId = uuid();
let defaultTaskObj = {
_id: defaultId,
text: task._id || defaultId,
notes: '',
tags: [],
value: task.type === 'reward' ? 10 : 0,
priority: 1,
challenge: {
shortName: 'None',
},
group: {},
yesterDaily: true,
reminders: [],
attribute: 'str',
createdAt: new Date(), // TODO these are going to be overwritten by the server...
updatedAt: new Date(),
};
defaults(task, defaultTaskObj);
if (task.type === 'habit' || task.type === 'daily') {
defaults(task, {
history: [],
});
}
if (task.type === 'todo' || task.type === 'daily') {
defaults(task, {
completed: false,
collapseChecklist: false,
checklist: [],
});
}
if (task.type === 'habit') {
defaults(task, {
up: true,
down: true,
frequency: 'daily',
counterUp: 0,
counterDown: 0,
});
}
if (task.type === 'daily') {
defaults(task, {
streak: 0,
repeat: {
m: true,
t: true,
w: true,
th: true,
f: true,
s: true,
su: true,
},
startDate: moment().startOf('day').toDate(),
everyX: 1,
frequency: 'weekly',
});
}
return task;
};