mock.js
3.11 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
export default {
tasks: [
{
id: 0,
type: 'Meeting',
title: 'Meeting with Andrew Piker',
time: '9:00',
},
{
id: 1,
type: 'Call',
title: 'Call with HT Company',
time: '12:00',
},
{
id: 2,
type: 'Meeting',
title: 'Meeting with Zoe Alison',
time: '14:00',
},
{
id: 3,
type: 'Interview',
title: 'Interview with HR',
time: '15:00',
},
],
bigStat: [
{
product: 'Light Blue',
total: '4,232',
color: 'primary',
registrations: {
value: 830,
profit: true,
},
bounce: {
value: 4.5,
profit: false,
},
},
{
product: 'Sing App',
total: '754',
color: 'warning',
registrations: {
value: 30,
profit: true,
},
bounce: {
value: 2.5,
profit: true,
},
},
{
product: 'RNS',
total: '1,025',
color: 'info',
registrations: {
value: 230,
profit: true,
},
bounce: {
value: 21.5,
profit: false,
},
},
],
notifications: [
{
id: 0,
icon: 'thumbs-up',
color: 'primary',
content: 'Ken <span className="fw-semi-bold">accepts</span> your invitation',
},
{
id: 1,
icon: 'file',
color: 'success',
content: 'Report from LT Company',
},
{
id: 2,
icon: 'envelope',
color: 'danger',
content: '4 <span className="fw-semi-bold">Private</span> Mails',
},
{
id: 3,
icon: 'comment',
color: 'success',
content: '3 <span className="fw-semi-bold">Comments</span> to your Post',
},
{
id: 4,
icon: 'cog',
color: 'light',
content: 'New <span className="fw-semi-bold">Version</span> of RNS app',
},
{
id: 5,
icon: 'bell',
color: 'info',
content: '15 <span className="fw-semi-bold">Notifications</span> from Social Apps',
},
],
table: [
{
id: 0,
name: 'Mark Otto',
email: 'ottoto@wxample.com',
product: 'ON the Road',
price: '$25 224.2',
date: '11 May 2017',
city: 'Otsego',
status: 'Sent',
},
{
id: 1,
name: 'Jacob Thornton',
email: 'thornton@wxample.com',
product: 'HP Core i7',
price: '$1 254.2',
date: '4 Jun 2017',
city: 'Fivepointville',
status: 'Sent',
},
{
id: 2,
name: 'Larry the Bird',
email: 'bird@wxample.com',
product: 'Air Pro',
price: '$1 570.0',
date: '27 Aug 2017',
city: 'Leadville North',
status: 'Pending',
},
{
id: 3,
name: 'Joseph May',
email: 'josephmay@wxample.com',
product: 'Version Control',
price: '$5 224.5',
date: '19 Feb 2018',
city: 'Seaforth',
status: 'Declined',
},
{
id: 4,
name: 'Peter Horadnia',
email: 'horadnia@wxample.com',
product: 'Let\'s Dance',
price: '$43 594.7',
date: '1 Mar 2018',
city: 'Hanoverton',
status: 'Sent',
},
],
};