- add fields: typeproj and id_main_project

This commit is contained in:
Paolo Arena
2019-04-09 21:07:16 +02:00
parent 884d84e2df
commit fd20048934
10 changed files with 449 additions and 183 deletions

View File

@@ -3,7 +3,7 @@ import globalroutines from './../../globalroutines/index'
import { costanti } from './costanti'
import { translation } from './translation'
import Quasar, { date } from 'quasar'
import { IProject, ITodo } from '@src/model'
import { IProject, ITodo, Privacy } from '@src/model'
import * as ApiTables from '@src/store/Modules/ApiTables'
import translate from '@src/globalroutines/util'
@@ -136,8 +136,77 @@ export const tools = {
value: 3
}
]
},
selectPrivacy: {
it: [
{
id: 1,
label: translation.it.privacy.all,
value: Privacy.all
},
{
id: 2,
label: translation.it.privacy.friends,
value: Privacy.friends
},
{
id: 3,
label: translation.it.privacy.mygroup,
value: Privacy.mygroup
},
{
id: 4,
label: translation.it.privacy.onlyme,
value: Privacy.onlyme
}
],
es: [
{
id: 1,
label: translation.es.privacy.all,
value: Privacy.all
},
{
id: 2,
label: translation.es.privacy.friends,
value: Privacy.friends
},
{
id: 3,
label: translation.es.privacy.mygroup,
value: Privacy.mygroup
},
{
id: 4,
label: translation.es.privacy.onlyme,
value: Privacy.onlyme
}
],
enUs: [
{
id: 1,
label: translation.enUs.privacy.all,
value: Privacy.all
},
{
id: 2,
label: translation.enUs.privacy.friends,
value: Privacy.friends
},
{
id: 3,
label: translation.enUs.privacy.mygroup,
value: Privacy.mygroup
},
{
id: 4,
label: translation.enUs.privacy.onlyme,
value: Privacy.onlyme
}
]
},
selectStatus: {
it: [
{
@@ -514,13 +583,13 @@ export const tools = {
it: [
{
id: 5,
label: 'Nuovo Progetto',
label: translation.it.proj.newsubproj,
value: 200, // ADD_PROJECT
icon: 'next_week'
},
{
id: 10,
label: 'Mostra Task',
label: translation.it.task.showtask,
value: 150, // SHOW_TASK
icon: 'rowing'
}
@@ -529,13 +598,13 @@ export const tools = {
[
{
id: 5,
label: 'Nuevo Projecto',
label: translation.es.proj.newsubproj,
value: 200, // ADD_PROJECT
icon: 'next_week'
},
{
id: 10,
label: 'Mostrar Tareas',
label: translation.es.task.showtask,
value: 150,
icon: 'rowing'
}
@@ -544,19 +613,47 @@ export const tools = {
[
{
id: 5,
label: 'New Project',
label: translation.it.proj.newsubproj,
value: 200, // ADD_PROJECT
icon: 'next_week'
},
{
id: 10,
label: 'Show Task',
label: translation.enUs.task.showtask,
value: 150,
icon: 'rowing'
}
]
}
,
},
menuPopupConfigMAINProject: {
it: [
{
id: 5,
label: translation.it.proj.newproj,
value: 200, // ADD_PROJECT
icon: 'next_week'
}
],
es:
[
{
id: 5,
label: translation.es.proj.newproj,
value: 200, // ADD_PROJECT
icon: 'next_week'
}
],
enUs:
[
{
id: 5,
label: translation.it.proj.newproj,
value: 200, // ADD_PROJECT
icon: 'next_week'
}
]
},
listOptionShowTask: {
it: [
@@ -1270,5 +1367,9 @@ export const tools = {
return new Date().valueOf()
},
isMainProject(idproj) {
return idproj === process.env.PROJECT_ID_MAIN
}
}