界面化选择线条连接点
Vue2 版本
gee-line-edit-2.vue
javascript
<template>
<div>
<div style="height:calc(100vh);">
<RelationGraph
ref="graphRef"
:options="graphOptions"
:on-canvas-selection-end="onCanvasSelectionEnd"
:on-canvas-click="onCanvasClick"
:on-node-click="onNodeClick"
:on-line-click="onLineClick">
<template #graph-plug>
<MyDemoPanel>
<div class="c-content">
点击选中单个节点后,点击节点四周的小按钮,就可以从对应的方向开始创建线条,同时可以自定义线条的形状、颜色、粗细等等属性。
</div>
<div class="c-content">
同时,在选择线条终点时,还可以额外指定线条在终点的位置。
</div>
</MyDemoPanel>
<RGEditingController>
<RGEditingNearNodeWidget position="top">
<RGEditingCreateLineHandle
:line-template="{
lineWidth: 3,
color: '#e85f84',
fromJunctionPoint: 'top',
lineShape: 6,
text: 'New Line'
}"
>
<div class="rel-gee-icon" :style="{backgroundColor: '#e85f84'}">
T
</div>
</RGEditingCreateLineHandle>
<RGEditingCreateLineHandle
:line-template="{
lineWidth: 3,
color: 'rgba(214,103,239,0.59)',
fromJunctionPoint: 'top',
lineShape: 6,
text: 'New Line'
}"
>
<div class="rel-gee-icon" :style="{backgroundColor: 'rgba(214,103,239,0.59)'}">
T
</div>
</RGEditingCreateLineHandle>
<RGEditingCreateLineHandle
:line-template="{
lineWidth: 3,
color: '#1894d7',
fromJunctionPoint: 'top',
lineShape: 6,
text: 'New Line'
}"
>
<div class="rel-gee-icon" :style="{backgroundColor: '#1894d7'}">
T
</div>
</RGEditingCreateLineHandle>
</RGEditingNearNodeWidget>
<RGEditingNearNodeWidget position="bottom">
<RGEditingCreateLineHandle
:line-template="{
lineWidth: 3,
color: '#5fa903c9',
fromJunctionPoint: 'bottom',
lineShape: 6,
text: 'New Line'
}"
>
<div class="rel-gee-icon" :style="{backgroundColor: '#5fa903c9'}">
B
</div>
</RGEditingCreateLineHandle>
</RGEditingNearNodeWidget>
<RGEditingNearNodeWidget position="left">
<RGEditingCreateLineHandle
:line-template="{
lineWidth: 3,
color: '#af7802cc',
fromJunctionPoint: 'left',
lineShape: 6,
text: 'New Line'
}"
>
<div class="rel-gee-icon" :style="{backgroundColor: '#af7802cc'}">
L
</div>
</RGEditingCreateLineHandle>
</RGEditingNearNodeWidget>
<RGEditingNearNodeWidget position="right">
<RGEditingCreateLineHandle
:line-template="{
lineWidth: 3,
color: '#4f1e1ecc',
fromJunctionPoint: 'right',
lineShape: 6,
text: 'New Line'
}"
>
<div class="rel-gee-icon" :style="{backgroundColor: '#4f1e1ecc'}">
R
</div>
</RGEditingCreateLineHandle>
</RGEditingNearNodeWidget>
</RGEditingController>
<RGEditingConnectController />
</template>
</RelationGraph>
</div>
</div>
</template>
<script>
import {RGEditingController, RGEditingConnectController, RGEditingNearNodeWidget, RGEditingCreateLineHandle} from 'relation-graph';
import MyDemoPanel from './rg-ui-simple/MyDemoPanel.vue';
export default {
name: 'Demo',
components: { MyDemoPanel, RGEditingController, RGEditingConnectController, RGEditingNearNodeWidget, RGEditingCreateLineHandle},
data() {
return {
isShowCodePanel: false,
graphOptions: {
// 这里可以参考"Graph 图谱"中的参数进行设置
allowShowMiniToolBar: false
}
};
},
mounted() {
this.showGraph();
},
methods: {
showGraph() {
const __graph_json_data = {
rootId: 'a',
nodes: [
{ id: 'a', text: 'Border color', borderColor: 'yellow' },
{ id: 'a1', text: 'No border', borderWidth: -1, color: '#ff8c00' },
{ id: 'a2', text: 'Plain', borderWidth: 3, color: 'transparent', borderColor: '#ff8c00', fontColor: '#ff8c00' },
// 除非万不得已,否则不建议使用html属性,你可以使用node插槽,让节点展示为任意形态
{ id: 'a1-1', text: 'Text Node' },
{ id: 'a1-4', text: 'XXX', nodeShape: 0 },
{ id: 'b', text: 'Font color', color: '#43a2f1', fontColor: '#ffd700' },
{ id: 'd', text: 'Node Size', width: 150, height: 150, color: '#ff8c00', borderWidth: 5, borderColor: '#ffd700', fontColor: '#ffffff' },
{ id: 'e', text: 'Rectangular node', nodeShape: 1 },
{ id: 'f', text: 'Rectangular', borderWidth: 1, nodeShape: 1, width: 300, height: 60 },
{ id: 'f1', text: 'Fixed', fixed: true, x: 60, y: 60 },
{ id: 'g', text: 'Css Flash', styleClass: 'my-node-flash-style' }
],
lines: [
{ from: 'a', to: 'b' },
{ from: 'a', to: 'a1' },
{ from: 'a1', to: 'a1-1' },
{ from: 'a', to: 'a2' },
{ from: 'a1', to: 'a1-4' },
{ from: 'a', to: 'f1' },
{ from: 'a', to: 'd' },
{ from: 'd', to: 'f' },
{ from: 'a', to: 'g' },
{ from: 'a', to: 'e' },
{ from: 'b', to: 'e' }
]
};
this.$refs.graphRef.setJsonData(__graph_json_data, (graphInstance) => {
// 这些写上当图谱初始化完成后需要执行的代码
});
},
onNodeClick(nodeObject, $event) {
console.log('onNodeClick:', nodeObject);
const graphInstance = this.$refs.graphRef.getInstance();
if ($event.shiftKey || $event.ctrlKey || ($event.metaKey && !$event.altKey)) {
// add or remove node from "resize nodes"
graphInstance.toggleEditingNode(nodeObject);
} else {
// reset "resize nodes"
graphInstance.setEditingNodes([nodeObject]);
}
graphInstance.setEditingLine(null, null);
},
onLineClick(lineObject, linkObject, $event) {
console.log('onLineClick:', lineObject);
const graphInstance = this.$refs.graphRef.getInstance();
graphInstance.setEditingLine(lineObject, linkObject);
},
onCanvasSelectionEnd(selectionView, $event) {
console.log('onCanvasSelectionEnd:', selectionView);
const graphInstance = this.$refs.graphRef.getInstance();
const willSelectedNodes = graphInstance.getNodesInSelectionView(selectionView);
graphInstance.getNodes().forEach(node => {
node.selected = willSelectedNodes.includes(node);
});
this.updateSelectedNodes();
},
onCanvasClick() {
this.clearSelection();
const graphInstance = this.$refs.graphRef.getInstance();
graphInstance.setEditingLine(null, null);
},
clearSelection() {
const graphInstance = this.$refs.graphRef.getInstance();
graphInstance.getNodes().forEach(node => {
node.selected = false;
});
this.updateSelectedNodes();
},
updateSelectedNodes() {
const selectedNodes = [];
const graphInstance = this.$refs.graphRef.getInstance();
graphInstance.getNodes().forEach(node => {
if (node.selected) selectedNodes.push(node);
});
// reset "resize nodes"
graphInstance.setEditingNodes(selectedNodes);
},
}
};
</script>
<style scoped lang="scss">
::v-deep .relation-graph {
.rel-map {
background-size: 30px 30px;
//background-image: radial-gradient(circle,rgba(0,0,0,.2) 1px,transparent 0);
background-image: linear-gradient(90deg,rgba(0,0,0,.1) 1px,transparent 0),linear-gradient(180deg,rgba(0,0,0,.1) 1px,transparent 0);
//.rel-node-selected {
// border: 0px;
// box-shadow: 0 0 0 5px rgba(231, 119, 7, 0.8);
// background-color: rgba(231, 160, 7, 0.3);;
//}
}
}
</style>
📂 RGDemoComponents
MyDemoPanel.vue
javascript
<template>
<div class="c-my-demo-panel"
:class="[(closed ? 'c-my-demo-panel-closed':''), (right ? 'c-my-demo-panel-r' : '')]"
:style="{
'--my-panel-width': this.width,
'--my-panel-top': this.top,
left: right ? undefined : left,
right: right ? right : undefined
}"
>
<div class="my-footer">
<div v-if="closed" class="my-icon my-icon-open" @click="tooglePanel">{{right ? '↙':'↘'}}</div>
<div v-else class="my-icon my-icon-close" @click="tooglePanel">{{right ? '➡':'⬅'}}</div>
</div>
<div class="my-body">
<slot />
</div>
</div>
</template>
<script>
export default {
name: 'MyDemoPanel',
props: {
width: {
mustUseProp: false,
default: '400px',
type: String
},
left: {
mustUseProp: false,
default: '10px',
type: String
},
right: {
mustUseProp: false,
default: '',
type: String
},
top: {
mustUseProp: false,
default: '10px',
type: String
}
},
data() {
return {
closed: false
};
},
mounted() {
},
methods: {
tooglePanel() {
this.closed = !this.closed;
}
}
};
</script>
<style lang="scss" scoped>
.c-my-demo-panel{
position: absolute;
border-radius: 5px;
z-index: 800;
width: var(--my-panel-width);
top: var(--my-panel-top);
background-color: #ffffff;
border: #999999 solid 1px;
box-shadow: 0 2px 6px rgba(0,21,41,.3);
padding: 10px;
box-sizing: border-box;
font-size: 14px;
color: #666666;
transition: width 0.3s ease-out;
.my-footer {
text-align: right;
display: flex;
place-items: end;
justify-content: end;
.my-icon {
border-radius: 5px;
width: 30px;
height: 30px;
font-size: 16px;
color: #666666;
background-color: #efefef;
display: flex;
place-items: center;
justify-content: center;
cursor: pointer;
&:hover {
background-color: #666666;
color: #ffffff;
}
svg {
fill: currentColor;
width: 100%;
height: 100%;
}
}
.my-icon-close {
}
}
.c-title{
color: #333333;
font-size: 14px;
line-height: 40px;
padding-left:10px;
padding-right:10px;
}
.c-content{
color: #666666;
font-size: 14px;
line-height: 20px;
padding:6px;
}
.c-button {
line-height: 18px;
display: inline-block;
background-color: #035a8a;
color: #ffffff;
font-size: 12px;
padding: 5px 15px;
text-align: center;
cursor: pointer;
border-radius: 5px;
&:hover {
background-color: rgba(3, 90, 138, 0.68);
}
}
.c-link {
color: #167fb7;
cursor: pointer;
padding: 0px 15px;
&:hover {
text-decoration: underline #167fb7;
}
}
.c-my-options {
text-align: center;
.c-my-option-item {
text-align: left;
color: #1da9f5;
cursor: pointer;
border-radius: 5px;
padding-left: 10px;
margin-top: 5px;
line-height: 25px;
&:hover{
background-color: rgba(29, 169, 245, 0.2);
}
}
}
}
.c-my-demo-panel-closed {
width: 50px;
height: 50px;
.my-body {
opacity: 0;
display: none;
}
}
.c-my-demo-panel-r {
.my-footer {
place-items: end;
justify-content: start;
}
}
</style>
Vue3 版本
gee-line-edit-2.vue
javascript
<template>
<div>
<div style="height:calc(100vh);">
<RelationGraph
ref="$graphRef"
:options="graphOptions"
@canvas-selection-end="onCanvasSelectionEnd"
@canvas-click="onCanvasClick"
@node-click="onNodeClick"
@line-click="onLineClick">
<template #graph-plug>
<MyDemoPanel>
<div class="c-content">
After selecting a single node, click the small buttons around the node to create a line from the corresponding direction. You can also customize the shape, color, thickness, and other properties of the line.
</div>
<div class="c-content">
In addition, when selecting the endpoint of the line, you can also specify the position of the line at the endpoint.
</div>
</MyDemoPanel>
<RGEditingController>
<RGEditingNearNodeWidget position="top">
<RGEditingCreateLineHandle
:line-template="{
lineWidth: 3,
color: '#e85f84',
fromJunctionPoint: 'top',
lineShape: 6,
text: 'New Line'
}"
>
<div class="rel-gee-icon" :style="{backgroundColor: '#e85f84'}">
T
</div>
</RGEditingCreateLineHandle>
<RGEditingCreateLineHandle
:line-template="{
lineWidth: 3,
color: 'rgba(214,103,239,0.59)',
fromJunctionPoint: 'top',
lineShape: 6,
text: 'New Line'
}"
>
<div class="rel-gee-icon" :style="{backgroundColor: 'rgba(214,103,239,0.59)'}">
T
</div>
</RGEditingCreateLineHandle>
<RGEditingCreateLineHandle
:line-template="{
lineWidth: 3,
color: '#1894d7',
fromJunctionPoint: 'top',
lineShape: 6,
text: 'New Line'
}"
>
<div class="rel-gee-icon" :style="{backgroundColor: '#1894d7'}">
T
</div>
</RGEditingCreateLineHandle>
</RGEditingNearNodeWidget>
<RGEditingNearNodeWidget position="bottom">
<RGEditingCreateLineHandle
:line-template="{
lineWidth: 3,
color: '#5fa903c9',
fromJunctionPoint: 'bottom',
lineShape: 6,
text: 'New Line'
}"
>
<div class="rel-gee-icon" :style="{backgroundColor: '#5fa903c9'}">
B
</div>
</RGEditingCreateLineHandle>
</RGEditingNearNodeWidget>
<RGEditingNearNodeWidget position="left">
<RGEditingCreateLineHandle
:line-template="{
lineWidth: 3,
color: '#af7802cc',
fromJunctionPoint: 'left',
lineShape: 6,
text: 'New Line'
}"
>
<div class="rel-gee-icon" :style="{backgroundColor: '#af7802cc'}">
L
</div>
</RGEditingCreateLineHandle>
</RGEditingNearNodeWidget>
<RGEditingNearNodeWidget position="right">
<RGEditingCreateLineHandle
:line-template="{
lineWidth: 3,
color: '#4f1e1ecc',
fromJunctionPoint: 'right',
lineShape: 6,
text: 'New Line'
}"
>
<div class="rel-gee-icon" :style="{backgroundColor: '#4f1e1ecc'}">
R
</div>
</RGEditingCreateLineHandle>
</RGEditingNearNodeWidget>
</RGEditingController>
<RGEditingConnectController />
</template>
</RelationGraph>
</div>
</div>
</template>
<script lang="ts" setup>
import {ref, onMounted, computed} from 'vue';
import RelationGraph, { RGEditingController, RGEditingConnectController, RGEditingNearNodeWidget, RGEditingCreateLineHandle } from 'relation-graph-vue3';
import MyDemoPanel from './RGDemoComponents/MyDemoPanel.vue';
import type { RGJsonData, RGNode, RGLine, RGLink, RGUserEvent, RGOptions, RelationGraphComponent } from 'relation-graph-vue3';
import {RelationGraphInstance} from "relation-graph-vue3";
const $graphRef = ref<RelationGraphComponent>(null);
const graphInstance = computed<RelationGraphInstance>(() => $graphRef.value?.getInstance());
const graphOptions: RGOptions = {
allowShowMiniToolBar: false
};
const showGraph = () => {
const __graph_json_data: RGJsonData = {
rootId: 'a',
nodes: [
{ id: 'a', text: 'Border color', borderColor: 'yellow' },
{ id: 'a1', text: 'No border', borderWidth: -1, color: '#ff8c00' },
{ id: 'a2', text: 'Plain', borderWidth: 3, color: 'transparent', borderColor: '#ff8c00', fontColor: '#ff8c00' },
{ id: 'a1-1', text: 'Text Node' },
{ id: 'a1-4', text: 'XXX', nodeShape: 0 },
{ id: 'b', text: 'Font color', color: '#43a2f1', fontColor: '#ffd700' },
{ id: 'd', text: 'Node Size', width: 150, height: 150, color: '#ff8c00', borderWidth: 5, borderColor: '#ffd700', fontColor: '#ffffff' },
{ id: 'e', text: 'Rectangular node', nodeShape: 1 },
{ id: 'f', text: 'Rectangular', borderWidth: 1, nodeShape: 1, width: 300, height: 60 },
{ id: 'f1', text: 'Fixed', fixed: true, x: 60, y: 60 },
{ id: 'g', text: 'Css Flash', styleClass: 'my-node-flash-style' }
],
lines: [
{ from: 'a', to: 'b' },
{ from: 'a', to: 'a1' },
{ from: 'a1', to: 'a1-1' },
{ from: 'a', to: 'a2' },
{ from: 'a1', to: 'a1-4' },
{ from: 'a', to: 'f1' },
{ from: 'a', to: 'd' },
{ from: 'd', to: 'f' },
{ from: 'a', to: 'g' },
{ from: 'a', to: 'e' },
{ from: 'b', to: 'e' }
]
};
$graphRef.value.setJsonData(__graph_json_data, () => {
// These are the codes that need to be executed after the graph is initialized
});
};
const onNodeClick = (nodeObject: RGNode, $event: RGUserEvent) => {
console.log('onNodeClick:', nodeObject);
if ($event.shiftKey || $event.ctrlKey || ($event.metaKey && !$event.altKey)) {
graphInstance.value.value.toggleEditingNode(nodeObject);
} else {
graphInstance.value.setEditingNodes([nodeObject]);
}
graphInstance.value.setEditingLine(null, null);
};
const onLineClick = (lineObject: RGLine, linkObject: RGLink, $event: RGUserEvent) => {
console.log('onLineClick:', lineObject);
graphInstance.value.setEditingLine(lineObject, linkObject);
};
const onCanvasSelectionEnd = (selectionView: any, $event: RGUserEvent) => {
console.log('onCanvasSelectionEnd:', selectionView);
const willSelectedNodes = graphInstance.value.getNodesInSelectionView(selectionView);
graphInstance.value.getNodes().forEach(node => {
node.selected = willSelectedNodes.includes(node);
});
updateSelectedNodes();
};
const onCanvasClick = () => {
clearSelection();
graphInstance.value.setEditingLine(null, null);
};
const clearSelection = () => {
graphInstance.value.getNodes().forEach(node => {
node.selected = false;
});
updateSelectedNodes();
};
const updateSelectedNodes = () => {
const selectedNodes: RGNode[] = [];
graphInstance.value.getNodes().forEach(node => {
if (node.selected) selectedNodes.push(node);
});
graphInstance.value.setEditingNodes(selectedNodes);
};
onMounted(() => {
showGraph();
});
</script>
<style scoped lang="scss">
::v-deep(.relation-graph) {
.rel-map {
background-size: 30px 30px;
background-image: linear-gradient(90deg,rgba(0,0,0,.1) 1px,transparent 0),linear-gradient(180deg,rgba(0,0,0,.1) 1px,transparent 0);
}
}
</style>
📂 RGDemoComponents
MyDemoPanel.vue
javascript
<template>
<div
class="c-my-demo-panel"
:class="[(closed ? 'c-my-demo-panel-closed' : ''), (right ? 'c-my-demo-panel-r' : '')]"
:style="{
'--my-panel-width': width,
'--my-panel-top': top,
left: right ? undefined : left,
right: right ? right : undefined
}"
>
<div class="my-footer">
<div v-if="closed" class="my-icon my-icon-open" @click="togglePanel">{{ right ? '↙' : '↘' }}</div>
<div v-else class="my-icon my-icon-close" @click="togglePanel">{{ right ? '➡' : '⬅' }}</div>
</div>
<div class="my-body">
<slot />
</div>
</div>
</template>
<script setup>
import { ref } from 'vue';
const props = defineProps({
width: {
type: String,
default: '400px'
},
left: {
type: String,
default: '10px'
},
right: {
type: String,
default: ''
},
top: {
type: String,
default: '10px'
}
});
const closed = ref(false);
function togglePanel() {
closed.value = !closed.value;
}
</script>
<style lang="scss" scoped>
.c-my-demo-panel{
position: absolute;
border-radius: 5px;
z-index: 800;
width: var(--my-panel-width);
top: var(--my-panel-top);
background-color: #ffffff;
border: #999999 solid 1px;
box-shadow: 0 2px 6px rgba(0,21,41,.3);
padding: 10px;
box-sizing: border-box;
font-size: 14px;
color: #666666;
transition: width 0.3s ease-out;
.my-footer {
text-align: right;
display: flex;
place-items: end;
justify-content: end;
.my-icon {
border-radius: 5px;
width: 30px;
height: 30px;
font-size: 16px;
color: #666666;
background-color: #efefef;
display: flex;
place-items: center;
justify-content: center;
cursor: pointer;
&:hover {
background-color: #666666;
color: #ffffff;
}
svg {
fill: currentColor;
width: 100%;
height: 100%;
}
}
.my-icon-close {
}
}
.c-title{
color: #333333;
font-size: 14px;
line-height: 40px;
padding-left:10px;
padding-right:10px;
}
.c-my-options {
text-align: center;
.c-my-option-item {
text-align: left;
color: #1da9f5;
cursor: pointer;
border-radius: 5px;
padding-left: 10px;
margin-top: 5px;
line-height: 25px;
&:hover{
background-color: rgba(29, 169, 245, 0.2);
}
}
}
}
.c-my-demo-panel-closed {
width: 50px;
height: 50px;
.my-body {
opacity: 0;
display: none;
}
}
.c-my-demo-panel-r {
.my-footer {
place-items: end;
justify-content: start;
}
}
::v-deep(.c-content) {
color: #666666;
font-size: 14px;
line-height: 20px;
padding:6px;
}
::v-deep(.c-button) {
line-height: 18px;
display: inline-block;
background-color: #035a8a;
color: #ffffff;
font-size: 12px;
padding: 5px 15px;
text-align: center;
cursor: pointer;
border-radius: 5px;
&:hover {
background-color: rgba(3, 90, 138, 0.68);
}
}
::v-deep(.c-link) {
color: #167fb7;
cursor: pointer;
padding: 0px 15px;
&:hover {
text-decoration: underline #167fb7;
}
}
</style>
React 版本
gee-line-edit-2.tsx
javascript
import React, { useRef, useEffect } from 'react';
import type { RGJsonData, RGNode, RGLine, RGLink, RGUserEvent, RGOptions, RelationGraphComponent } from 'relation-graph-react';
import RelationGraph, { RGEditingController, RGEditingConnectController, RGEditingNearNodeWidget, RGEditingCreateLineHandle, RGSlotOnGraph } from 'relation-graph-react';
import MyDemoPanel from './RGDemoComponents/MyDemoPanel';
import './gee-line-edit-2.scss';
const GeeLineEdit2 = () => {
const graphRef = useRef<RelationGraphComponent>(null);
useEffect(() => {
showGraph();
}, []);
const graphOptions: RGOptions = {
allowShowMiniToolBar: false
};
const showGraph = async() => {
const __graph_json_data: RGJsonData = {
rootId: 'a',
nodes: [
{ id: 'a', text: 'Border color', borderColor: 'yellow' },
{ id: 'a1', text: 'No border', borderWidth: -1, color: '#ff8c00' },
{ id: 'a2', text: 'Plain', borderWidth: 3, color: 'transparent', borderColor: '#ff8c00', fontColor: '#ff8c00' },
{ id: 'a1-1', text: 'Text Node' },
{ id: 'a1-4', text: 'XXX', nodeShape: 0 },
{ id: 'b', text: 'Font color', color: '#43a2f1', fontColor: '#ffd700' },
{ id: 'd', text: 'Node Size', width: 150, height: 150, color: '#ff8c00', borderWidth: 5, borderColor: '#ffd700', fontColor: '#ffffff' },
{ id: 'e', text: 'Rectangular node', nodeShape: 1 },
{ id: 'f', text: 'Rectangular', borderWidth: 1, nodeShape: 1, width: 300, height: 60 },
{ id: 'f1', text: 'Fixed', fixed: true, x: 60, y: 60 },
{ id: 'g', text: 'Css Flash', styleClass: 'my-node-flash-style' }
],
lines: [
{ from: 'a', to: 'b' },
{ from: 'a', to: 'a1' },
{ from: 'a1', to: 'a1-1' },
{ from: 'a', to: 'a2' },
{ from: 'a1', to: 'a1-4' },
{ from: 'a', to: 'f1' },
{ from: 'a', to: 'd' },
{ from: 'd', to: 'f' },
{ from: 'a', to: 'g' },
{ from: 'a', to: 'e' },
{ from: 'b', to: 'e' }
]
};
const graphInstance = graphRef.current!.getInstance();
await graphInstance.setJsonData(__graph_json_data);
};
const onNodeClick = (nodeObject: RGNode, $event: RGUserEvent) => {
console.log('onNodeClick:', nodeObject);
const graphInstance = graphRef.current!.getInstance();
if ($event.shiftKey || $event.ctrlKey || ($event.metaKey && !$event.altKey)) {
graphInstance.toggleEditingNode(nodeObject);
} else {
graphInstance.setEditingNodes([nodeObject]);
}
graphInstance.setEditingLine(null, null);
};
const onLineClick = (lineObject: RGLine, linkObject: RGLink, $event: RGUserEvent) => {
console.log('onLineClick:', lineObject);
const graphInstance = graphRef.current!.getInstance();
graphInstance.setEditingLine(lineObject, linkObject);
};
const onCanvasSelectionEnd = (selectionView: any, $event: RGUserEvent) => {
console.log('onCanvasSelectionEnd:', selectionView);
const graphInstance = graphRef.current!.getInstance();
const willSelectedNodes = graphInstance.getNodesInSelectionView(selectionView) || [];
graphInstance.getNodes().forEach(node => {
node.selected = willSelectedNodes.includes(node);
});
updateSelectedNodes();
};
const onCanvasClick = () => {
const graphInstance = graphRef.current!.getInstance();
clearSelection();
graphInstance.setEditingLine(null, null);
};
const clearSelection = () => {
const graphInstance = graphRef.current!.getInstance();
graphInstance.getNodes().forEach(node => {
node.selected = false;
});
updateSelectedNodes();
};
const updateSelectedNodes = () => {
const graphInstance = graphRef.current!.getInstance();
const selectedNodes: RGNode[] = [];
graphInstance.getNodes().forEach(node => {
if (node.selected) selectedNodes.push(node);
});
graphInstance.setEditingNodes(selectedNodes);
};
return (
<div>
<div style={{ height: '100vh' }}>
<RelationGraph
ref={graphRef}
options={graphOptions}
onCanvasSelectionEnd={onCanvasSelectionEnd}
onCanvasClick={onCanvasClick}
onNodeClick={onNodeClick}
onLineClick={onLineClick}
>
<RGSlotOnGraph>
<MyDemoPanel>
<div className="c-content">
After selecting a single node, click the small buttons around the node to create a line from the corresponding direction. You can also customize the shape, color, thickness, and other properties of the line.
</div>
<div className="c-content">
In addition, when selecting the endpoint of the line, you can also specify the position of the line at the endpoint.
</div>
</MyDemoPanel>
<RGEditingController>
<RGEditingNearNodeWidget position="top">
<RGEditingCreateLineHandle
lineTemplate={{
lineWidth: 3,
color: '#e85f84',
fromJunctionPoint: 'top',
lineShape: 6,
text: 'New Line'
}}
>
<div className="rel-gee-icon" style={{ backgroundColor: '#e85f84' }}>
T
</div>
</RGEditingCreateLineHandle>
<RGEditingCreateLineHandle
lineTemplate={{
lineWidth: 3,
color: 'rgba(214,103,239,0.59)',
fromJunctionPoint: 'top',
lineShape: 6,
text: 'New Line'
}}
>
<div className="rel-gee-icon" style={{ backgroundColor: 'rgba(214,103,239,0.59)' }}>
T
</div>
</RGEditingCreateLineHandle>
<RGEditingCreateLineHandle
lineTemplate={{
lineWidth: 3,
color: '#1894d7',
fromJunctionPoint: 'top',
lineShape: 6,
text: 'New Line'
}}
>
<div className="rel-gee-icon" style={{ backgroundColor: '#1894d7' }}>
T
</div>
</RGEditingCreateLineHandle>
</RGEditingNearNodeWidget>
<RGEditingNearNodeWidget position="bottom">
<RGEditingCreateLineHandle
lineTemplate={{
lineWidth: 3,
color: '#5fa903c9',
fromJunctionPoint: 'bottom',
lineShape: 6,
text: 'New Line'
}}
>
<div className="rel-gee-icon" style={{ backgroundColor: '#5fa903c9' }}>
B
</div>
</RGEditingCreateLineHandle>
</RGEditingNearNodeWidget>
<RGEditingNearNodeWidget position="left">
<RGEditingCreateLineHandle
lineTemplate={{
lineWidth: 3,
color: '#af7802cc',
fromJunctionPoint: 'left',
lineShape: 6,
text: 'New Line'
}}
>
<div className="rel-gee-icon" style={{ backgroundColor: '#af7802cc' }}>
L
</div>
</RGEditingCreateLineHandle>
</RGEditingNearNodeWidget>
<RGEditingNearNodeWidget position="right">
<RGEditingCreateLineHandle
lineTemplate={{
lineWidth: 3,
color: '#4f1e1ecc',
fromJunctionPoint: 'right',
lineShape: 6,
text: 'New Line'
}}
>
<div className="rel-gee-icon" style={{ backgroundColor: '#4f1e1ecc' }}>
R
</div>
</RGEditingCreateLineHandle>
</RGEditingNearNodeWidget>
</RGEditingController>
<RGEditingConnectController />
</RGSlotOnGraph>
</RelationGraph>
</div>
</div>
);
};
export default GeeLineEdit2;
gee-line-edit-2.scss
scss
.relation-graph {
.rel-map {
background-size: 30px 30px;
background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.1) 1px, transparent 0), linear-gradient(180deg, rgba(
0,
0,
0,
0.1
) 1px, transparent 0);
}
}
📂 RGDemoComponents
MyDemoPanel.tsx
javascript
import React, { useState } from 'react';
import './MyDemoPanel.scss';
declare module 'react' {
interface CSSProperties {
// 这里可以添加任意数量的自定义属性
'--my-panel-width'?: string;
'--my-panel-top'?: string;
}
}
const MyDemoPanel:React.FC<{ width?:string, left?:string, right?:string, top?:string }> = ({ children, width = '400px', left = '10px', right = '', top = '10px' }) => {
const [closed, setClosed] = useState(false);
const togglePanel = () => {
setClosed(!closed);
};
const panelClasses = `c-my-demo-panel ${closed ? 'c-my-demo-panel-closed' : ''} ${right ? 'c-my-demo-panel-r' : ''}`;
const iconClasses = `my-icon ${closed ? 'my-icon-open' : 'my-icon-close'}`;
return (
<div
className={panelClasses}
style={{
'--my-panel-width': width,
'--my-panel-top': top,
left: right ? undefined : left,
right: right || undefined
}}
>
<div className="my-footer">
<div className={iconClasses} onClick={togglePanel}>
{closed ? (right ? '↙' : '↘') : (right ? '➡' : '⬅')}
</div>
</div>
<div className="my-body">
{children}
</div>
</div>
);
};
export default MyDemoPanel;
MyDemoPanel.scss
scss
.c-my-demo-panel {
position: absolute;
border-radius: 5px;
z-index: 800;
width: var(--my-panel-width);
top: var(--my-panel-top);
background-color: #ffffff;
border: #999999 solid 1px;
box-shadow: 0 2px 6px rgba(0, 21, 41, 0.3);
padding: 10px;
box-sizing: border-box;
font-size: 14px;
color: #666666;
//transition: width 0.3s ease-out;
.my-footer {
text-align: right;
display: flex;
place-items: end;
justify-content: end;
.my-icon {
border-radius: 5px;
width: 30px;
height: 30px;
font-size: 16px;
color: #666666;
background-color: #efefef;
display: flex;
place-items: center;
justify-content: center;
cursor: pointer;
&:hover {
background-color: #666666;
color: #ffffff;
}
svg {
fill: currentColor;
width: 100%;
height: 100%;
}
}
.my-icon-close {
}
}
.c-title {
color: #333333;
font-size: 14px;
line-height: 40px;
padding-left: 10px;
padding-right: 10px;
}
.c-my-options {
text-align: center;
.c-my-option-item {
text-align: left;
color: #1da9f5;
cursor: pointer;
border-radius: 5px;
padding-left: 10px;
margin-top: 5px;
line-height: 25px;
&:hover {
background-color: rgba(29, 169, 245, 0.2);
}
}
}
}
.c-my-demo-panel-closed {
width: 50px;
height: 50px;
.my-body {
opacity: 0;
display: none;
}
}
.c-my-demo-panel-r {
.my-footer {
place-items: end;
justify-content: start;
}
}
.c-content {
color: #666666;
font-size: 14px;
line-height: 20px;
padding: 6px;
}
.c-button {
line-height: 18px;
display: inline-block;
background-color: #035a8a;
color: #ffffff;
font-size: 12px;
padding: 5px 15px;
text-align: center;
cursor: pointer;
border-radius: 5px;
&:hover {
background-color: rgba(3, 90, 138, 0.68);
}
}
.c-link {
color: #167fb7;
cursor: pointer;
padding: 0px 15px;
&:hover {
text-decoration: underline #167fb7;
}
}