g6/packages/site/examples/scatter/changePosition/demo/animateOrder.js
2023-08-30 14:32:44 +08:00

134 lines
2.7 KiB
JavaScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Graph, stdLib } from '@antv/g6';
const data = {
nodes: [
{
id: 'Click Me',
data: {
x: 200,
y: 100,
cluster: '1',
},
},
{
id: 'b',
data: {
x: 100,
y: 200,
cluster: '2',
},
},
{
id: 'c',
data: {
x: 300,
y: 200,
cluster: '3',
},
},
],
edges: [
{
id: 'a2b',
source: 'Click Me',
target: 'b',
},
{
id: 'a2c',
source: 'Click Me',
target: 'c',
},
],
};
const container = document.getElementById('container');
const width = container.scrollWidth;
const height = container.scrollHeight || 500;
let graph = new Graph({
container: 'container',
width,
height,
modes: { default: [] },
layout: {
type: 'grid',
},
theme: {
type: 'spec',
specification: {
node: {
dataTypeField: 'cluster',
},
},
},
node: {
labelShape: {
text: {
fields: ['id'],
formatter: (model) => model.id,
},
},
labelBackgroundShape: {},
animates: {
update: [
{
fields: ['r'],
shapeId: 'keyShape',
duration: 1000,
order: 0,
},
{
fields: ['fill'],
shapeId: 'keyShape',
duration: 1000,
order: 2,
},
{
fields: ['lineWidth'],
shapeId: 'keyShape',
duration: 1000,
order: 1,
},
{
fields: ['fill', 'fontWeight'],
shapeId: 'labelShape',
duration: 1000,
order: 3,
},
],
},
},
data,
});
graph.on('node:click', (e) => {
graph.updateData('node', {
id: e.itemId,
data: {
cluster: Math.random(),
keyShape: {
r: 32 + Math.random() * 10 - 5,
lineWidth: 6 + Math.random() * 6 - 3,
stroke: '#000',
},
labelShape: {
fill: stdLib.themes.light.node.palette[Math.floor(Math.random() * 10)],
fontWeight: 700,
},
},
});
});
const btnContainer = document.createElement('div');
btnContainer.style.position = 'absolute';
container.appendChild(btnContainer);
const tip = document.createElement('span');
tip.innerHTML = `The Animations are Ordered as: <br/> 1⃣ keyShape's r, 2⃣ keyShape's fill, 3⃣ keyShape's lineWidth, and 4⃣ labelShape's fill and fontWeight`;
btnContainer.appendChild(tip);
if (typeof window !== 'undefined')
window.onresize = () => {
if (!graph || graph.destroyed) return;
if (!container || !container.scrollWidth || !container.scrollHeight) return;
graph.setSize([container.scrollWidth, container.scrollHeight]);
};