Skip to content

Commit a25d7b8

Browse files
committed
chore: change demo
1 parent b979240 commit a25d7b8

6 files changed

+161
-7
lines changed
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<ngx-gantt [start]="1514736000" end="1609430400"></ngx-gantt>
1+
<ngx-gantt [start]="1514736000" end="1609430400" [items]="items" [groups]="groups"></ngx-gantt>
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
:host {
2-
padding-top: 10px;
2+
height: 100%;
3+
margin: 20px;
4+
display: block;
5+
border: 1px solid #ddd;
36
}

example/src/app/examples/examples.component.ts

+5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import { Component, OnInit } from '@angular/core';
2+
import { mockItems, mockGroups } from './mocks';
23

34
@Component({
45
selector: 'app-examples-gantt',
@@ -8,5 +9,9 @@ import { Component, OnInit } from '@angular/core';
89
export class AppExamplesComponent implements OnInit {
910
constructor() {}
1011

12+
items = mockItems;
13+
14+
groups = mockGroups;
15+
1116
ngOnInit(): void {}
1217
}

example/src/app/examples/mocks.ts

+145
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,145 @@
1+
export const mockGroups = [
2+
{
3+
id: '00001',
4+
title: 'Project 1',
5+
},
6+
{
7+
id: '00002',
8+
title: 'Project 2',
9+
},
10+
{
11+
id: '00003',
12+
title: 'Project 3',
13+
},
14+
{
15+
id: '00004',
16+
title: 'Project 4',
17+
},
18+
{
19+
id: '00005',
20+
title: 'Project 5',
21+
},
22+
];
23+
24+
export const mockItems = [
25+
{
26+
id: 'item-0101',
27+
title: 'VERSION 0101',
28+
start: 1515736001,
29+
end: 1518736000,
30+
group_id: '00001',
31+
},
32+
{
33+
id: 'item-0102',
34+
title: 'VERSION 0102',
35+
start: 1518736000,
36+
end: 1519736000,
37+
group_id: '00001',
38+
},
39+
{
40+
id: 'item-0103',
41+
title: 'VERSION 0103',
42+
start: 1518736000,
43+
end: 1523736000,
44+
group_id: '00001',
45+
},
46+
{
47+
id: 'item-0201',
48+
title: 'VERSION 0201',
49+
start: 1518736000,
50+
end: 1523736000,
51+
group_id: '00002',
52+
},
53+
{
54+
id: 'item-0202',
55+
title: 'VERSION 0202',
56+
start: 1518736000,
57+
end: 1523736000,
58+
group_id: '00002',
59+
},
60+
{
61+
id: 'item-0203',
62+
title: 'VERSION 0203',
63+
start: 1518736000,
64+
end: 1523736000,
65+
group_id: '00002',
66+
},
67+
{
68+
id: 'item-0204',
69+
title: 'VERSION 0204',
70+
start: 1518736000,
71+
end: 1523736000,
72+
group_id: '00002',
73+
},
74+
75+
{
76+
id: 'item-0301',
77+
title: 'VERSION 0301',
78+
start: 1518736000,
79+
end: 1523736000,
80+
group_id: '00003',
81+
},
82+
{
83+
id: 'item-0302',
84+
title: 'VERSION 0302',
85+
start: 1518736000,
86+
end: 1523736000,
87+
group_id: '00003',
88+
},
89+
{
90+
id: 'item-0303',
91+
title: 'VERSION 0303',
92+
start: 1518736000,
93+
end: 1523736000,
94+
group_id: '00003',
95+
},
96+
{
97+
id: 'item-0401',
98+
title: 'VERSION 0401',
99+
start: 1518736000,
100+
end: 1523736000,
101+
group_id: '00004',
102+
},
103+
{
104+
id: 'item-0402',
105+
title: 'VERSION 0402',
106+
start: 1518736000,
107+
end: 1523736000,
108+
group_id: '00004',
109+
},
110+
{
111+
id: 'item-0403',
112+
title: 'VERSION 0403',
113+
start: 1518736000,
114+
end: 1523736000,
115+
group_id: '00004',
116+
},
117+
{
118+
id: 'item-0404',
119+
title: 'VERSION 0404',
120+
start: 1518736000,
121+
end: 1523736000,
122+
group_id: '00004',
123+
},
124+
{
125+
id: 'item-0501',
126+
title: 'VERSION 0501',
127+
start: 1518736000,
128+
end: 1523736000,
129+
group_id: '00005',
130+
},
131+
{
132+
id: 'item-0502',
133+
title: 'VERSION 0502',
134+
start: 1518736000,
135+
end: 1523736000,
136+
group_id: '00005',
137+
},
138+
{
139+
id: 'item-0503',
140+
title: 'VERSION 0503',
141+
start: 1518736000,
142+
end: 1523736000,
143+
group_id: '00005',
144+
},
145+
];

package-lock.json

+5-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"private": true,
1414
"dependencies": {
1515
"@angular/animations": "~8.2.14",
16-
"@angular/cdk": "^9.2.4",
16+
"@angular/cdk": "^8.2.0",
1717
"@angular/common": "~8.2.14",
1818
"@angular/compiler": "~8.2.14",
1919
"@angular/core": "~8.2.14",

0 commit comments

Comments
 (0)