mirror of
https://github.com/urosran/cally.git
synced 2025-07-15 01:35:22 +00:00
Added the reccuring todos that repeat weekly to be created for the next 52 weeks
This commit is contained in:
@ -61,9 +61,8 @@ export const useCreateTodo = () => {
|
|||||||
dates.push(newDate);
|
dates.push(newDate);
|
||||||
});
|
});
|
||||||
|
|
||||||
// TODO: for the next 52 weeks
|
|
||||||
let index = 1;
|
let index = 1;
|
||||||
for (let i = 0; i < 4; i++) {
|
for (let i = 0; i < 52; i++) {
|
||||||
dates?.forEach((dateToAdd) => {
|
dates?.forEach((dateToAdd) => {
|
||||||
index ++;
|
index ++;
|
||||||
let newTodoDate = addWeeks(dateToAdd, i);
|
let newTodoDate = addWeeks(dateToAdd, i);
|
||||||
|
@ -73,7 +73,7 @@ export const useUpdateTodo = () => {
|
|||||||
dates.push(newDate);
|
dates.push(newDate);
|
||||||
});
|
});
|
||||||
|
|
||||||
let todosToAddCycles = 4;
|
let todosToAddCycles = 52;
|
||||||
if (firstTodo?.repeatType === REPEAT_TYPE.EVERY_WEEK) {
|
if (firstTodo?.repeatType === REPEAT_TYPE.EVERY_WEEK) {
|
||||||
todosToAddCycles = filteredTodos?.length / firstTodo?.repeatDays?.length;
|
todosToAddCycles = filteredTodos?.length / firstTodo?.repeatDays?.length;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user