- fix it: Order List Todo

- Split Todo List by Priority and by Completed
- Animation drag
This commit is contained in:
Paolo Arena
2019-01-27 19:09:48 +01:00
parent ce9f901b0a
commit 83420447d3
10 changed files with 651 additions and 138 deletions

View File

@@ -1,13 +1,16 @@
export interface ITodo {
id?: number,
userId: string
pos: number,
descr?: string,
priority: number,
completed: boolean,
created_at: any,
modify_at: any,
expiring_at: any
expiring_at: any,
id_prev?: number,
id_next?: number,
modified?: boolean,
pos?: number
}
export interface ITodosState {