Este sítio funciona melhor com JavaScript.
Página inicial
Explorar
Ajuda
Iniciar sessão
kj
/
anamnesis
Vigiar
1
Marcar como favorito
0
Derivar
0
Código
Questões
0
Pedidos de integração
0
Lançamentos
0
Wiki
Trabalho
Ver a proveniência
data structure defined
master
kj1352
há 4 anos
ascendente
cbc21080b8
cometimento
55f1d18e94
8 ficheiros alterados
com
49 adições
e
0 eliminações
Visualização em 2 colunas
Opções das diferenças
Mostrar estatísticas
Descarregar ficheiro patch
Descarregar ficheiro diff
+0
-0
src/components/categories/details/CategoryDetails.module.scss
+8
-0
src/components/categories/details/CategoryDetails.tsx
+1
-0
src/components/revise/Revise.module.scss
+7
-0
src/structure/category.ts
+6
-0
src/structure/medals.ts
+9
-0
src/structure/profile.ts
+8
-0
src/structure/shelf.ts
+10
-0
src/structure/word.ts
+ 0
- 0
src/components/categories/details/CategoryDetails.module.scss
Ver ficheiro
+ 8
- 0
src/components/categories/details/CategoryDetails.tsx
Ver ficheiro
@@ -0,0 +1,8 @@
import React from "react";
import styles from './CategoryDetails.module.scss';
export const CategoryDetails: React.FC = () => {
return <section className="page">
</section>
}
+ 1
- 0
src/components/revise/Revise.module.scss
Ver ficheiro
@@ -4,6 +4,7 @@
background-color: white;
position: relative;
z-index: 2;
overflow-x: hidden;
}
.finishButton {
+ 7
- 0
src/structure/category.ts
Ver ficheiro
@@ -0,0 +1,7 @@
import { IShelf } from "./shelf";
export type ICategory = {
name: string,
icon: string,
shelves: Array<IShelf>
};
+ 6
- 0
src/structure/medals.ts
Ver ficheiro
@@ -0,0 +1,6 @@
export type IMedal = {
name: string,
minValue: number,
maxValue: number,
icon: string,
};
+ 9
- 0
src/structure/profile.ts
Ver ficheiro
@@ -0,0 +1,9 @@
import { ICategory } from "./category";
import { IMedal } from "./medals";
export type IProfile = {
name: string,
image: string,
medal: IMedal,
categories: Array<ICategory>
};
+ 8
- 0
src/structure/shelf.ts
Ver ficheiro
@@ -0,0 +1,8 @@
import { IWord } from "./word";
export type IShelf = {
words: Array<IWord>,
revisedWords: Array<IWord>,
description: string,
viewPermission: 'PRIVATE' | 'PUBLIC';
};
+ 10
- 0
src/structure/word.ts
Ver ficheiro
@@ -0,0 +1,10 @@
export type IWord = {
name: string,
pronounciation: string,
audioPronounciationURL: string,
grammaticalDetails: Array<{
typeName: 'NOUN' | 'ADJECTIVE' | 'VERB',
description: string,
}>,
similarWords: Array<string>
}
Escrever
Pré-visualizar
Carregando…
Cancelar
Guardar