2019-04-29 23:47:42 +02:00
|
|
|
import { Todos, Projects, UserStore } from '@store'
|
|
|
|
|
|
|
|
|
|
export const lists = {
|
|
|
|
|
MenuAction: {
|
|
|
|
|
CUT: 71,
|
|
|
|
|
PASTE: 72,
|
|
|
|
|
DELETE: 100,
|
|
|
|
|
TOGGLE_EXPIRING: 101,
|
|
|
|
|
COMPLETED: 110,
|
|
|
|
|
PROGRESS_BAR: 120,
|
|
|
|
|
PRIORITY: 130,
|
|
|
|
|
SHOW_TASK: 150,
|
|
|
|
|
EDIT: 160,
|
|
|
|
|
ADD_PROJECT: 200,
|
|
|
|
|
THEME: 210,
|
2019-10-15 20:40:23 +02:00
|
|
|
THEMEBG: 211,
|
|
|
|
|
|
|
|
|
|
DELETE_RECTABLE: 300,
|
2019-10-20 22:44:18 +02:00
|
|
|
DUPLICATE_RECTABLE: 310,
|
2019-10-24 23:30:18 +02:00
|
|
|
DELETE_EVENT: 320,
|
2020-02-02 04:07:24 +01:00
|
|
|
DELETE_EXTRALIST: 330,
|
2020-02-05 01:27:32 +01:00
|
|
|
DELETE_USERLIST: 335,
|
2020-02-02 04:07:24 +01:00
|
|
|
REGALA_INVITATO: 340,
|
2020-03-10 21:42:30 +01:00
|
|
|
INVIA_MSG_A_DONATORI: 350,
|
2020-03-25 09:26:08 +01:00
|
|
|
INVIA_MSG_A_SINGOLO: 355,
|
2020-03-21 10:33:10 +01:00
|
|
|
DONO_INVIATO: 360,
|
|
|
|
|
DONO_RICEVUTO: 370,
|
2019-10-15 21:43:29 +02:00
|
|
|
|
|
|
|
|
CAN_EDIT_TABLE: 400,
|
2019-10-21 20:38:22 +02:00
|
|
|
SHOW_PREV_REC: 401
|
2019-04-29 23:47:42 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
|
|
selectTheme: [
|
|
|
|
|
{
|
|
|
|
|
id: 1,
|
|
|
|
|
label: 'Theme 1',
|
|
|
|
|
value: 'red'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: 2,
|
|
|
|
|
label: 'Theme 2',
|
|
|
|
|
value: 'pink'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: 3,
|
|
|
|
|
label: 'Theme 3',
|
|
|
|
|
value: 'purple'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: 4,
|
|
|
|
|
label: 'Theme 4',
|
|
|
|
|
value: 'deep-purple'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: 5,
|
|
|
|
|
label: 'Theme 5',
|
|
|
|
|
value: 'indigo'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: 6,
|
|
|
|
|
label: 'Theme 6',
|
|
|
|
|
value: 'blue'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: 7,
|
|
|
|
|
label: 'Theme 7',
|
|
|
|
|
value: 'green'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: 8,
|
|
|
|
|
label: 'Theme 8',
|
|
|
|
|
value: 'orange'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: 9,
|
|
|
|
|
label: 'Theme 9',
|
|
|
|
|
value: 'brown'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: 10,
|
|
|
|
|
label: 'Theme 10',
|
|
|
|
|
value: 'black'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: 11,
|
|
|
|
|
label: 'Theme 11',
|
|
|
|
|
value: 'white'
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
selectPriority: {
|
|
|
|
|
it: [
|
|
|
|
|
{
|
|
|
|
|
id: 1,
|
|
|
|
|
label: 'Alta',
|
|
|
|
|
value: 2,
|
|
|
|
|
icon: 'expand_less'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: 2,
|
|
|
|
|
label: 'Normale',
|
|
|
|
|
value: 1,
|
|
|
|
|
icon: 'remove'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: 3,
|
|
|
|
|
label: 'Bassa',
|
|
|
|
|
value: 0,
|
|
|
|
|
icon: 'expand_more'
|
|
|
|
|
}],
|
|
|
|
|
es:
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
id: 1,
|
|
|
|
|
label: 'Alta',
|
|
|
|
|
value: 2,
|
|
|
|
|
icon: 'expand_less'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: 2,
|
|
|
|
|
label: 'Normal',
|
|
|
|
|
value: 1,
|
|
|
|
|
icon: 'remove'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: 3,
|
|
|
|
|
label: 'Baja',
|
|
|
|
|
value: 0,
|
|
|
|
|
icon: 'expand_more'
|
|
|
|
|
}],
|
|
|
|
|
enUs:
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
id: 1,
|
|
|
|
|
label: 'High',
|
|
|
|
|
value: 2,
|
|
|
|
|
icon: 'expand_less'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: 2,
|
|
|
|
|
label: 'Normal',
|
|
|
|
|
value: 1,
|
|
|
|
|
icon: 'remove'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: 3,
|
|
|
|
|
label: 'Low',
|
|
|
|
|
value: 0,
|
|
|
|
|
icon: 'expand_more'
|
|
|
|
|
}],
|
|
|
|
|
de:
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
id: 1,
|
|
|
|
|
label: 'High',
|
|
|
|
|
value: 2,
|
|
|
|
|
icon: 'expand_less'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: 2,
|
|
|
|
|
label: 'Normal',
|
|
|
|
|
value: 1,
|
|
|
|
|
icon: 'remove'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: 3,
|
|
|
|
|
label: 'Low',
|
|
|
|
|
value: 0,
|
|
|
|
|
icon: 'expand_more'
|
|
|
|
|
}]
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|