DataJPA_V2/src/services/api.js
2020-05-17 18:12:36 +07:00

98 lines
2.6 KiB
JavaScript

export function loadLists() {
return [
{
title: 'Tarefas',
creatable: true,
cards: [
{
id: 1,
content: 'Hello From React JS',
labels: ['#7159c1'],
user: 'https://rocketseat-cdn.s3-sa-east-1.amazonaws.com/profile.png'
},
{
id: 2,
content: 'Criar vídeo para o Youtube ensinando a recriar a interface do Pipefy',
labels: ['#7159c1'],
user: 'https://rocketseat-cdn.s3-sa-east-1.amazonaws.com/profile.png'
},
{
id: 3,
content: 'Estudar módulo 03 de React Native',
labels: ['#7159c1'],
user: 'https://rocketseat-cdn.s3-sa-east-1.amazonaws.com/profile.png'
},
{
id: 4,
content: 'Gravar Aula "NextJS: Utilizando server-side rendering com ReactJS"',
labels: ['#54e1f7'],
user: 'https://rocketseat-cdn.s3-sa-east-1.amazonaws.com/profile.png'
},
{
id: 5,
content: 'Gravar testes e deploy ReactJS',
labels: ['#54e1f7'],
user: 'https://rocketseat-cdn.s3-sa-east-1.amazonaws.com/profile.png'
},
]
},
{
title: 'Fazendo',
creatable: false,
cards: [
{
id: 6,
content: 'Recriando clone do Pipefy',
labels: [],
user: 'https://rocketseat-cdn.s3-sa-east-1.amazonaws.com/profile.png'
}
]
},
{
title: 'Pausado',
creatable: false,
cards: [
{
id: 7,
content: 'Gravar sobre Geolocalização e mapas com React Native',
labels: ['#7159c1'],
user: 'https://rocketseat-cdn.s3-sa-east-1.amazonaws.com/profile.png'
},
{
id: 8,
content: 'Gravar testes e deploy ReactJS',
labels: ['#54e1f7'],
user: 'https://rocketseat-cdn.s3-sa-east-1.amazonaws.com/profile.png'
},
{
id: 9,
content: 'Ajustes na biblioteca unform',
labels: [],
}
]
},
{
title: 'Concluído',
creatable: false,
done: true,
cards: [
{
id: 10,
content: 'Gravar aula sobre deploy e CI com React Native',
labels: [],
},
{
id: 12,
content: 'Gravar testes e deploy ReactJS',
labels: ['#54e1f7'],
},
{
id: 13,
content: 'Gravar Aula "Internacionalização de aplicações Node.js, ReactJS e React Native"',
labels: ['#7159c1'],
}
]
},
];
}