-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconstants.ts
80 lines (77 loc) · 2.97 KB
/
constants.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
import {User} from "./models/users.model";
export const HOME_SCREEN = 'Home';
export const USER_DETAILS_SCREEN = "User Details"
export const LOGIN_SCREEN = "Login";
export const CREATE_ACCOUNT_SCREEN = "Create account"
export const USER_LIST_SCREEN = "User list"
export const HOME_PAGE_USER_LIST_SCREEN = "User List Home Page";
export const UPDATE_USER_SCREEN = "Update user";
export const GLOBAL_DRAWER = "Global Drawer";
//Color constant
export const SPRING_GREEN_COLOR = "#07FF8A"
export const DAINTREE_COLOR = "#002333"
export const SOLID_WHITE_COLOR = "#ffffff";
export const TORCH_RED_COLOR = "#ff0033";
export const TUNDORA_COLOR = "#424242";
export const MOCK_USERS: User[] = [
{
username: 'miku',
password: '1234',
fullname: 'Hatsune Miku',
birthDate: 1191085200000,
height: 159,
address: 'Sapporo, Japan',
phone: '0356773***',
email: '[email protected]',
role: 'Administrator',
cv: `Hatsune Miku was the first Vocaloid developed by Crypton Future Media after they handled the release of the Yamaha vocal Meiko and Kaito. Miku was intended tobe the first of a series of Vocaloids called the "Character Vocal Series", which included Kagamine Rin/Len and Megurine Luka. Each had a particular concept and vocal direction. She was built using Yamaha's Vocaloid 2 technology, and later updated to newer engine versions. She was created by taking vocal samples from voice actress Saki Fujita at a controlled pitch and tone. Those samples all contain a single Japanese phonic that, when strung together, createsfull lyrics and phrases. The pitch of the samples was to be altered by the synthesizer engineand constructed into a keyboard-style instrument within the Vocaloid software.`,
},
{
username: "thanhpc",
password: '1234',
fullname: "Pham Cong Thanh",
role: "Administrator",
birthDate: 1191085200000,
height: 159,
address: 'Sapporo, Japan',
phone: '0356773***',
email: '[email protected]',
cv: 'ThanhPC3',
},
{
username: 'hoadnt',
password: '1234',
fullname: "Doan Nguyen Thanh Hoa",
role: "Administrator",
birthDate: 1191085200000,
height: 159,
address: 'Sapporo, Japan',
phone: '0356773***',
email: '[email protected]',
cv: 'ThanhPC3',
},
{
username: "hungld",
password: '1234',
fullname: "Lai Duc Hung",
role: "Administrator",
birthDate: 1191085200000,
height: 159,
address: 'Sapporo, Japan',
phone: '0356773***',
email: '[email protected]',
cv: 'HungLD',
},
{
username: "nguyentt",
password: '1234',
fullname: "NguyenTT",
role: "User",
birthDate: 1191085200000,
height: 159,
address: 'Sapporo, Japan',
phone: '0356773***',
email: '[email protected]',
cv: 'NguyenTT',
},
];