-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat(plugins): add timebar * refactor: adjust timebar component --------- Co-authored-by: wb-xcf804241 <[email protected]> Co-authored-by: Aaron <[email protected]>
- Loading branch information
1 parent
6986bb6
commit 9cf0677
Showing
20 changed files
with
8,040 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,125 @@ | ||
import type { GraphData, Timebar } from '@/src'; | ||
import { Graph } from '@/src'; | ||
|
||
const formatId = (index: number) => `0${index}`.slice(-2); | ||
const formatTime = (time: number) => { | ||
const year = new Date(time).getFullYear(); | ||
const month = new Date(time).getMonth() + 1; | ||
const date = new Date(time).getDate(); | ||
return `${year}-${month}-${date}`; | ||
}; | ||
|
||
export const pluginTimebar: TestCase = async (context) => { | ||
const startTime = new Date('2023-08-01 00:00:00').getTime(); | ||
const diff = 3600 * 24 * 1000; | ||
const timebarData = [10, 2, 3, 4, 15, 10, 6].map((value, index) => ({ | ||
time: new Date(startTime + index * diff), | ||
value, | ||
})); | ||
|
||
const [rows, cols] = [7, 7]; | ||
|
||
const data: GraphData = { | ||
nodes: new Array(rows * cols).fill(0).map((_, index) => ({ | ||
id: `${formatId(index)}`, | ||
data: { | ||
timestamp: startTime + (index % cols) * diff, | ||
value: index % 20, | ||
label: formatTime(startTime + (index % cols) * diff), | ||
}, | ||
})), | ||
edges: [], | ||
}; | ||
|
||
for (let i = 0; i < rows * cols; i++) { | ||
if (i % cols < cols - 1) { | ||
data.edges!.push({ | ||
source: `${formatId(i)}`, | ||
target: `${formatId(i + 1)}`, | ||
}); | ||
} | ||
|
||
if (i / rows < rows - 1) { | ||
data.edges!.push({ | ||
source: `${formatId(i)}`, | ||
target: `${formatId(i + rows)}`, | ||
}); | ||
} | ||
} | ||
|
||
const graph = new Graph({ | ||
...context, | ||
data, | ||
node: { | ||
style: { | ||
labelText: (d) => `${d.data!.label}`, | ||
}, | ||
}, | ||
layout: { | ||
type: 'grid', | ||
sortBy: 'id', | ||
cols, | ||
rows, | ||
}, | ||
autoFit: 'view', | ||
padding: [10, 0, 65, 0], | ||
behaviors: ['drag-element'], | ||
plugins: [ | ||
{ | ||
type: 'timebar', | ||
key: 'timebar', | ||
data: timebarData, | ||
mode: 'modify', | ||
}, | ||
], | ||
}); | ||
|
||
pluginTimebar.form = (panel) => { | ||
const config = { position: 'bottom', mode: 'modify', timebarType: 'time' }; | ||
const timebar = graph.getPluginInstance<Timebar>('timebar'); | ||
const operation = { | ||
play: () => timebar.play(), | ||
pause: () => timebar.pause(), | ||
reset: () => timebar.reset(), | ||
backward: () => timebar.backward(), | ||
forward: () => timebar.forward(), | ||
}; | ||
|
||
const handleChange = () => { | ||
graph.updatePlugin({ | ||
key: 'timebar', | ||
...config, | ||
}); | ||
}; | ||
|
||
return [ | ||
panel.add(config, 'position', ['top', 'bottom']).onChange((position: 'top' | 'bottom') => { | ||
graph.setOptions({ | ||
padding: position === 'top' ? [100, 0, 10, 0] : [10, 0, 65, 0], | ||
}); | ||
graph.updatePlugin({ | ||
key: 'timebar', | ||
position, | ||
}); | ||
graph.fitView(); | ||
}), | ||
panel.add(config, 'mode', ['modify', 'visibility']).onChange(handleChange), | ||
panel.add(config, 'timebarType', ['time', 'chart']).onChange(() => { | ||
graph.setOptions({ | ||
padding: config.position === 'top' ? [100, 0, 10, 0] : [10, 0, 100, 0], | ||
}); | ||
graph.updatePlugin({ | ||
key: 'timebar', | ||
...config, | ||
height: 100, | ||
}); | ||
graph.fitView(); | ||
}), | ||
...Object.keys(operation).map((key) => panel.add(operation, key)), | ||
]; | ||
}; | ||
|
||
await graph.render(); | ||
|
||
return graph; | ||
}; |
138 changes: 138 additions & 0 deletions
138
packages/g6/__tests__/snapshots/plugins/timebar/backward-1-time-modify.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.