展开到指定层级
Vue2 版本
open-by-level.vue
javascript
<template>
<div>
<div style="height: calc(100vh)">
<relation-graph
ref="graphRef"
:options="graphOptions"
>
<template #graph-plug>
<div class="c-my-panel">
<div class="c-option-name">展开到层级:</div>
<el-radio-group v-model="openLevel" size="mini" @change="onLevelChange">
<el-radio-button :label="0">只展示根节点</el-radio-button>
<el-radio-button :label="1">1</el-radio-button>
<el-radio-button :label="2">2</el-radio-button>
<el-radio-button :label="3">3</el-radio-button>
</el-radio-group>
</div>
</template>
</relation-graph>
</div>
</div>
</template>
<script>
// 如果您没有在main.js文件中使用Vue.use(RelationGraph); 就需要使用下面这一行代码来引入relation-graph
// import RelationGraph from 'relation-graph';
const graphOptions = {
backgrounImageNoRepeat: true,
moveToCenterWhenRefresh: true,
zoomToFitWhenRefresh: true,
useAnimationWhenRefresh: false,
useAnimationWhenExpanded: true,
reLayoutWhenExpandedOrCollapsed: true,
defaultExpandHolderPosition: "right",
defaultNodeShape: 1,
defaultNodeBorderWidth: 0,
defaultLineShape: 2,
defaultNodeWidth: 150,
defaultNodeHeight:50,
lineUseTextPath: true,
layout:
{
label: '中心',
layoutName: 'tree',
from: 'left',
layoutClassName: 'seeks-layout-center',
levelDistance: '400,400,400,400'
}
};
export default {
name: 'Demo',
components: {},
data() {
return {
openLevel: 2,
graphOptions
};
},
mounted() {
this.showGraph();
},
methods: {
showGraph() {
const __graph_json_data = {"rootId":"2","nodes":[{"id":"2","text":"ALTXX","data":null},{"id":"3","text":"CH2 TTN","data":null},{"id":"4","text":"CH1 AlCu","data":null},{"id":"5","text":"MainFrame","data":null},{"id":"6","text":"TestMainSys","data":null},{"id":"7","text":"汽车部件","data":null},{"id":"8","text":"汽车工艺","data":null},{"id":"9","text":"过程质检","data":null},{"id":"10","text":"卓立制造","data":null},{"id":"11","text":"压电开关","data":null},{"id":"12","text":"电子产品","data":null},{"id":"13","text":"集成电路","data":null},{"id":"14","text":"ArHigh","data":null},{"id":"15","text":"ArLow","data":null},{"id":"16","text":"ShowerHead","data":null},{"id":"17","text":"CrypoPump","data":null},{"id":"18","text":"DryPump","data":null},{"id":"19","text":"Ti Target","data":null},{"id":"20","text":"N2","data":null},{"id":"21","text":"Shutter","data":null},{"id":"22","text":"Cool Chbr","data":null},{"id":"23","text":"Transfer Chbr","data":null},{"id":"24","text":"Alignment Unit","data":null},{"id":"25","text":"齿轮箱","data":null},{"id":"26","text":"车门内部人工涂蜡","data":null},{"id":"27","text":"原材料检验","data":null},{"id":"28","text":"地板RTV硅胶密封","data":null},{"id":"29","text":"热保护焊接","data":null},{"id":"30","text":"电热管导线焊接","data":null},{"id":"31","text":"温控器安装","data":null},{"id":"32","text":"蒸汽硅胶座配装","data":null},{"id":"33","text":"温度调试","data":null},{"id":"34","text":"压电开关的模型塑料外壳","data":null},{"id":"35","text":"安装开关","data":null},{"id":"36","text":"ASIC IC","data":null},{"id":"37","text":"SENSOR","data":null},{"id":"38","text":"CON","data":null},{"id":"39","text":"Flash","data":null},{"id":"40","text":"Flite","data":null}],"lines":[{"from":"2","to":"5","text":"子系统","data":null},{"from":"2","to":"6","text":"子系统","data":null},{"from":"2","to":"3","text":"子系统","data":null},{"from":"2","to":"4","text":"子系统","data":null},{"from":"3","to":"21","text":"子系统","data":null},{"from":"3","to":"20","text":"子系统","data":null},{"from":"3","to":"19","text":"子系统","data":null},{"from":"4","to":"18","text":"子系统","data":null},{"from":"4","to":"17","text":"子系统","data":null},{"from":"4","to":"16","text":"子系统","data":null},{"from":"4","to":"15","text":"子系统","data":null},{"from":"4","to":"14","text":"子系统","data":null},{"from":"5","to":"24","text":"子系统","data":null},{"from":"5","to":"23","text":"子系统","data":null},{"from":"5","to":"22","text":"子系统","data":null},{"from":"6","to":"13","text":"子系统","data":null},{"from":"6","to":"12","text":"子系统","data":null},{"from":"6","to":"11","text":"子系统","data":null},{"from":"6","to":"10","text":"子系统","data":null},{"from":"6","to":"9","text":"子系统","data":null},{"from":"6","to":"8","text":"子系统","data":null},{"from":"6","to":"7","text":"子系统","data":null},{"from":"7","to":"25","text":"子系统","data":null},{"from":"8","to":"26","text":"子系统","data":null},{"from":"9","to":"27","text":"子系统","data":null},{"from":"10","to":"33","text":"子系统","data":null},{"from":"10","to":"32","text":"子系统","data":null},{"from":"10","to":"31","text":"子系统","data":null},{"from":"10","to":"30","text":"子系统","data":null},{"from":"10","to":"29","text":"子系统","data":null},{"from":"10","to":"28","text":"子系统","data":null},{"from":"11","to":"35","text":"子系统","data":null},{"from":"11","to":"34","text":"子系统","data":null},{"from":"12","to":"39","text":"子系统","data":null},{"from":"12","to":"38","text":"子系统","data":null},{"from":"12","to":"37","text":"子系统","data":null},{"from":"12","to":"36","text":"子系统","data":null},{"from":"13","to":"40","text":"子系统","data":null}]};
this.$refs.graphRef.setJsonData(__graph_json_data, async (graphInstance) => {
// 这些写上当图谱初始化完成后需要执行的代码
// 根节点的为level=0)
await this.openByLevel(this.openLevel);
});
},
async onLevelChange() {
await this.openByLevel(this.openLevel);
},
async openByLevel(level) {
const graphInstance = this.$refs.graphRef.getInstance();
// 重置数据
graphInstance.getNodes().forEach(node => {
node.expanded = true;
});
graphInstance.getNodes().forEach(node => {
console.log(node.text, node.lot.level);
// 判断节点的级别(根节点为0)
if (Math.abs(node.lot.level) === level) { // 双向树结构的上半部分内容的层级为-1,-2,-3,所以这里用绝对值
// 收起节点:
node.expanded = false;
}
})
await graphInstance.doLayout();
}
}
};
</script>
<style lang="scss" scoped>
.c-my-panel {
position: absolute;
left: 10px;
top: 10px;
border-radius: 10px;
z-index: 800;
background-color: #efefef;
border: #eeeeee solid 1px;
padding: 20px;
.c-option-name{
color: #666666;
font-size: 14px;
line-height: 40px;
padding-left:10px;
padding-right:10px;
}
}
</style>
Vue3 版本
open-by-level.vue
javascript
<template>
<div>
<div style="height: calc(100vh)">
<RelationGraph ref="graphRef" :options="graphOptions">
<template #graph-plug>
<div class="c-my-panel">
<div class="c-option-name">Expand to level:</div>
<el-radio-group v-model="openLevel" size="small" @change="onLevelChange">
<el-radio-button :label="0">Root Node Only</el-radio-button>
<el-radio-button :label="1">1</el-radio-button>
<el-radio-button :label="2">2</el-radio-button>
<el-radio-button :label="3">3</el-radio-button>
</el-radio-group>
</div>
</template>
</RelationGraph>
</div>
</div>
</template>
<script lang="ts" setup>
import { ref, onMounted } from 'vue';
import RelationGraph from 'relation-graph-vue3';
import type { RGJsonData, RGOptions, RGNode, RGLine, RGLink, RGUserEvent, RelationGraphComponent } from 'relation-graph-vue3';
const graphOptions: RGOptions = {
backgrounImageNoRepeat: true,
moveToCenterWhenRefresh: true,
zoomToFitWhenRefresh: true,
useAnimationWhenRefresh: false,
useAnimationWhenExpanded: true,
reLayoutWhenExpandedOrCollapsed: true,
defaultExpandHolderPosition: 'right',
defaultNodeShape: 1,
defaultNodeBorderWidth: 0,
defaultLineShape: 2,
defaultNodeWidth: 150,
defaultNodeHeight: 50,
lineUseTextPath: true,
layouts: [
{
label: 'Center',
layoutName: 'tree',
from: 'left',
layoutClassName: 'seeks-layout-center',
levelDistance: '400,400,400,400'
}
]
};
const openLevel = ref(2);
const graphRef = ref<RelationGraphComponent>();
const showGraph = async() => {
const __graph_json_data: RGJsonData = {
rootId: '2',
nodes: [
{ id: '2', text: 'ALTXX', data: null },
{ id: '3', text: 'CH2 TTN', data: null },
{ id: '4', text: 'CH1 AlCu', data: null },
{ id: '5', text: 'MainFrame', data: null },
{ id: '6', text: 'TestMainSys', data: null },
{ id: '7', text: 'Automotive Parts', data: null },
{ id: '8', text: 'Automotive Process', data: null },
{ id: '9', text: 'Process Quality Inspection', data: null },
{ id: '10', text: 'Zhuoli Manufacturing', data: null },
{ id: '11', text: 'Piezoelectric Switch', data: null },
{ id: '12', text: 'Electronic Products', data: null },
{ id: '13', text: 'Integrated Circuit', data: null },
{ id: '14', text: 'ArHigh', data: null },
{ id: '15', text: 'ArLow', data: null },
{ id: '16', text: 'ShowerHead', data: null },
{ id: '17', text: 'CrypoPump', data: null },
{ id: '18', text: 'DryPump', data: null },
{ id: '19', text: 'Ti Target', data: null },
{ id: '20', text: 'N2', data: null },
{ id: '21', text: 'Shutter', data: null },
{ id: '22', text: 'Cool Chbr', data: null },
{ id: '23', text: 'Transfer Chbr', data: null },
{ id: '24', text: 'Alignment Unit', data: null },
{ id: '25', text: 'Gearbox', data: null },
{ id: '26', text: 'Car Door Interior Waxing', data: null },
{ id: '27', text: 'Raw Material Inspection', data: null },
{ id: '28', text: 'Floor RTV Silicone Sealing', data: null },
{ id: '29', text: 'Thermal Protection Welding', data: null },
{ id: '30', text: 'Electric Heating Tube Wire Welding', data: null },
{ id: '31', text: 'Temperature Controller Installation', data: null },
{ id: '32', text: 'Steam Silicone Seat Assembly', data: null },
{ id: '33', text: 'Temperature Debugging', data: null },
{ id: '34', text: 'Plastic Shell of Piezoelectric Switch', data: null },
{ id: '35', text: 'Switch Installation', data: null },
{ id: '36', text: 'ASIC IC', data: null },
{ id: '37', text: 'SENSOR', data: null },
{ id: '38', text: 'CON', data: null },
{ id: '39', text: 'Flash', data: null },
{ id: '40', text: 'Flite', data: null }
],
lines: [
{ from: '2', to: '5', text: 'Subsystem', data: null },
{ from: '2', to: '6', text: 'Subsystem', data: null },
{ from: '2', to: '3', text: 'Subsystem', data: null },
{ from: '2', to: '4', text: 'Subsystem', data: null },
{ from: '3', to: '21', text: 'Subsystem', data: null },
{ from: '3', to: '20', text: 'Subsystem', data: null },
{ from: '3', to: '19', text: 'Subsystem', data: null },
{ from: '4', to: '18', text: 'Subsystem', data: null },
{ from: '4', to: '17', text: 'Subsystem', data: null },
{ from: '4', to: '16', text: 'Subsystem', data: null },
{ from: '4', to: '15', text: 'Subsystem', data: null },
{ from: '4', to: '14', text: 'Subsystem', data: null },
{ from: '5', to: '24', text: 'Subsystem', data: null },
{ from: '5', to: '23', text: 'Subsystem', data: null },
{ from: '5', to: '22', text: 'Subsystem', data: null },
{ from: '6', to: '13', text: 'Subsystem', data: null },
{ from: '6', to: '12', text: 'Subsystem', data: null },
{ from: '6', to: '11', text: 'Subsystem', data: null },
{ from: '6', to: '10', text: 'Subsystem', data: null },
{ from: '6', to: '9', text: 'Subsystem', data: null },
{ from: '6', to: '8', text: 'Subsystem', data: null },
{ from: '6', to: '7', text: 'Subsystem', data: null },
{ from: '7', to: '25', text: 'Subsystem', data: null },
{ from: '8', to: '26', text: 'Subsystem', data: null },
{ from: '9', to: '27', text: 'Subsystem', data: null },
{ from: '10', to: '33', text: 'Subsystem', data: null },
{ from: '10', to: '32', text: 'Subsystem', data: null },
{ from: '10', to: '31', text: 'Subsystem', data: null },
{ from: '10', to: '30', text: 'Subsystem', data: null },
{ from: '10', to: '29', text: 'Subsystem', data: null },
{ from: '10', to: '28', text: 'Subsystem', data: null },
{ from: '11', to: '35', text: 'Subsystem', data: null },
{ from: '11', to: '34', text: 'Subsystem', data: null },
{ from: '12', to: '39', text: 'Subsystem', data: null },
{ from: '12', to: '38', text: 'Subsystem', data: null },
{ from: '12', to: '37', text: 'Subsystem', data: null },
{ from: '12', to: '36', text: 'Subsystem', data: null },
{ from: '13', to: '40', text: 'Subsystem', data: null }
]
};
const graphInstance = graphRef.value.getInstance();
await graphInstance.setJsonData(__graph_json_data);
await graphInstance.playShowEffect();
await openByLevel(openLevel.value);
};
const onLevelChange = async () => {
await openByLevel(openLevel.value);
};
const openByLevel = async (level) => {
const graphInstance = graphRef.value.getInstance();
graphInstance.getNodes().forEach((node) => {
node.expanded = true;
});
graphInstance.getNodes().forEach((node) => {
console.log(node.text, node.lot.level);
if (Math.abs(node.lot.level) === level) {
node.expanded = false;
}
});
await graphInstance.doLayout();
};
onMounted(() => {
showGraph();
});
</script>
<style lang="scss" scoped>
.c-my-panel {
position: absolute;
left: 10px;
top: 10px;
border-radius: 10px;
z-index: 800;
background-color: #efefef;
border: #eeeeee solid 1px;
padding: 20px;
.c-option-name {
color: #666666;
font-size: 14px;
line-height: 40px;
padding-left: 10px;
padding-right: 10px;
}
}
</style>
React 版本
open-by-level.tsx
javascript
import React, {useEffect, useRef, useState} from 'react';
import RelationGraph from 'relation-graph-react';
import { RGJsonData, RGOptions, RGNode, RGLine, RGLink, RGUserEvent, RelationGraphComponent } from 'relation-graph-react';
import {MySelector} from "./RGDemoComponents/MyUIComponents";
const OpenByLevel = () => {
const graphOptions: RGOptions = {
backgrounImageNoRepeat: true,
moveToCenterWhenRefresh: true,
zoomToFitWhenRefresh: true,
useAnimationWhenRefresh: false,
useAnimationWhenExpanded: true,
reLayoutWhenExpandedOrCollapsed: true,
defaultExpandHolderPosition: 'right',
defaultNodeShape: 1,
defaultNodeBorderWidth: 0,
defaultLineShape: 2,
defaultNodeWidth: 150,
defaultNodeHeight: 50,
lineUseTextPath: true,
layout: {
label: 'Center',
layoutName: 'tree',
from: 'left',
layoutClassName: 'seeks-layout-center',
levelDistance: '400,400,400,400'
}
};
const [openLevel, setOpenLevel] = useState(2);
const graphRef = useRef<RelationGraphComponent>(null);
const showGraph = async () => {
const __graph_json_data: RGJsonData = {
rootId: '2',
nodes: [
{ id: '2', text: 'ALTXX' },
{ id: '3', text: 'CH2 TTN' },
{ id: '4', text: 'CH1 AlCu' },
{ id: '5', text: 'MainFrame' },
{ id: '6', text: 'TestMainSys' },
{ id: '7', text: 'Automotive Parts' },
{ id: '8', text: 'Automotive Process' },
{ id: '9', text: 'Process Quality Inspection' },
{ id: '10', text: 'Zhuoli Manufacturing' },
{ id: '11', text: 'Piezoelectric Switch' },
{ id: '12', text: 'Electronic Products' },
{ id: '13', text: 'Integrated Circuit' },
{ id: '14', text: 'ArHigh' },
{ id: '15', text: 'ArLow' },
{ id: '16', text: 'ShowerHead' },
{ id: '17', text: 'CrypoPump' },
{ id: '18', text: 'DryPump' },
{ id: '19', text: 'Ti Target' },
{ id: '20', text: 'N2' },
{ id: '21', text: 'Shutter' },
{ id: '22', text: 'Cool Chbr' },
{ id: '23', text: 'Transfer Chbr' },
{ id: '24', text: 'Alignment Unit' },
{ id: '25', text: 'Gearbox' },
{ id: '26', text: 'Car Door Interior Waxing' },
{ id: '27', text: 'Raw Material Inspection' },
{ id: '28', text: 'Floor RTV Silicone Sealing' },
{ id: '29', text: 'Thermal Protection Welding' },
{ id: '30', text: 'Electric Heating Tube Wire Welding' },
{ id: '31', text: 'Temperature Controller Installation' },
{ id: '32', text: 'Steam Silicone Seat Assembly' },
{ id: '33', text: 'Temperature Debugging' },
{ id: '34', text: 'Plastic Shell of Piezoelectric Switch' },
{ id: '35', text: 'Switch Installation' },
{ id: '36', text: 'ASIC IC' },
{ id: '37', text: 'SENSOR' },
{ id: '38', text: 'CON' },
{ id: '39', text: 'Flash' },
{ id: '40', text: 'Flite' }
],
lines: [
{ from: '2', to: '5', text: 'Subsystem' },
{ from: '2', to: '6', text: 'Subsystem' },
{ from: '2', to: '3', text: 'Subsystem' },
{ from: '2', to: '4', text: 'Subsystem' },
{ from: '3', to: '21', text: 'Subsystem' },
{ from: '3', to: '20', text: 'Subsystem' },
{ from: '3', to: '19', text: 'Subsystem' },
{ from: '4', to: '18', text: 'Subsystem' },
{ from: '4', to: '17', text: 'Subsystem' },
{ from: '4', to: '16', text: 'Subsystem' },
{ from: '4', to: '15', text: 'Subsystem' },
{ from: '4', to: '14', text: 'Subsystem' },
{ from: '5', to: '24', text: 'Subsystem' },
{ from: '5', to: '23', text: 'Subsystem' },
{ from: '5', to: '22', text: 'Subsystem' },
{ from: '6', to: '13', text: 'Subsystem' },
{ from: '6', to: '12', text: 'Subsystem' },
{ from: '6', to: '11', text: 'Subsystem' },
{ from: '6', to: '10', text: 'Subsystem' },
{ from: '6', to: '9', text: 'Subsystem' },
{ from: '6', to: '8', text: 'Subsystem' },
{ from: '6', to: '7', text: 'Subsystem' },
{ from: '7', to: '25', text: 'Subsystem' },
{ from: '8', to: '26', text: 'Subsystem' },
{ from: '9', to: '27', text: 'Subsystem' },
{ from: '10', to: '33', text: 'Subsystem' },
{ from: '10', to: '32', text: 'Subsystem' },
{ from: '10', to: '31', text: 'Subsystem' },
{ from: '10', to: '30', text: 'Subsystem' },
{ from: '10', to: '29', text: 'Subsystem' },
{ from: '10', to: '28', text: 'Subsystem' },
{ from: '11', to: '35', text: 'Subsystem' },
{ from: '11', to: '34', text: 'Subsystem' },
{ from: '12', to: '39', text: 'Subsystem' },
{ from: '12', to: '38', text: 'Subsystem' },
{ from: '12', to: '37', text: 'Subsystem' },
{ from: '12', to: '36', text: 'Subsystem' },
{ from: '13', to: '40', text: 'Subsystem' }
]
};
const graphInstance = graphRef.current?.getInstance();
await graphInstance?.setJsonData(__graph_json_data);
await graphInstance?.playShowEffect();
await openByLevel(openLevel.current);
};
const onLevelChange = async () => {
await openByLevel(openLevel);
};
const openByLevel = async (level: number) => {
const graphInstance = graphRef.current!.getInstance();
graphInstance?.getNodes().forEach((node: RGNode) => {
node.expanded = true;
});
graphInstance?.getNodes().forEach((node: RGNode) => {
console.log(node.text, node.lot.level);
if (Math.abs(node.lot.level) === level) {
node.expanded = false;
}
});
await graphInstance?.doLayout();
};
useEffect(() => {
showGraph();
}, []);
useEffect(() => {
onLevelChange();
}, [openLevel]);
return (
<div>
<div style={{ height: '100vh' }}>
<div className="w-96 rounded-lg absolute left-20 top-20 z-20 p-4 bg-white border-solid border-2 border-black shadow-lg">
<div className="c-option-name">Expand to level:</div>
<MySelector
data={[
{ value: '0', text: 'Root Node Only' },
{ value: '1', text: '1' },
{ value: '2', text: '2' },
{ value: '3', text: '3' }
]}
currentValue={openLevel.toString()}
onChange={(newValue: string, label: string) => {
setOpenLevel(parseInt(newValue));
}}
/>
</div>
<RelationGraph ref={graphRef} options={graphOptions}>
</RelationGraph>
</div>
</div>
);
};
export default OpenByLevel;
📂 RGDemoComponents
MyUIComponents.tsx
javascript
import React from "react";
export interface MySelectorProps {
small?: boolean
currentValue: string|number
data:{value: string|number, text:string}[]
onChange: (newValue:string|number, label:string) => void
}
export const MySelector:React.FC<MySelectorProps> = ({small, data, onChange, currentValue}) => {
return (
<div className="flex flex-wrap justify-center rounded-lg border border-gray-900 overflow-hidden">
{
data.map(item =>
<div key={item.value}
className={`border-r w-auto text-xs cursor-pointer whitespace-nowrap ${currentValue === item.value && 'bg-blue-500 text-white'} ${small?' px-2 h-6 leading-6':'h-8 px-3 leading-8'}`}
onClick={() => {onChange(item.value, item.text);}}
>
{item.text}
</div>)
}
</div>
);
};
export interface MySwitchProps {
currentValue: boolean
onChange: (newValue:boolean) => void
}
export const MySwitch:React.FC<MySwitchProps> = ({onChange, currentValue}) => {
return (
<div className={`w-14 flex rounded-full border p-0.5 ${currentValue ? 'justify-end border-blue-500' : 'justify-start border-gray-500'}`}>
<div
className={`w-8 h-5 leading-8 rounded-full w-auto px-3 text-xs cursor-pointer whitespace-nowrap ${currentValue ? 'bg-blue-500' : 'bg-gray-500'}`} onClick={() => {onChange(!currentValue);}}>
</div>
</div>
);
};
export interface MySliderProps {
min: number
max: number
step: number
currentValue: number
onChange: (newValue:number) => void
}
export const MySlider:React.FC<MySliderProps> = ({min, max, step, currentValue, onChange}) => {
return (
<div>
<input
type="range"
className="w-72"
min={min}
max={max}
step={step}
value={currentValue}
onChange={(e) => { onChange(parseFloat(e.target.value))}}
/>
</div>
);
};
export interface MyRangeSliderProps {
min: number
max: number
step: number
currentValue: [number, number]
onChange: (newValue:[number, number]) => void
}
export const MyRangeSlider:React.FC<MyRangeSliderProps> = ({min, max, step, currentValue, onChange}) => {
return (
<div className="w-72">
<div>Min:</div>
<input
type="range"
className="w-full"
min={min}
max={max}
step={step}
value={currentValue[0]}
onChange={(e) => { if (parseFloat(e.target.value) < currentValue[1]) onChange([parseFloat(e.target.value), currentValue[1]])}}
/>
<div>Max:</div>
<input
type="range"
className="w-full"
min={min}
max={max}
step={step}
value={currentValue[1]}
onChange={(e) => { if (parseFloat(e.target.value) > currentValue[0]) onChange([currentValue[0], parseFloat(e.target.value)])}}
/>
</div>
);
};
export interface MyButtonProps {
onClick: () => void
disabled?: boolean
}
export const MyButton:React.FC<MyButtonProps> = ({children, onClick, disabled}) => {
return (
<button className={`mr-2 px-2 py-1 rounded ${disabled===true ? 'bg-gray-300 text-black cursor-not-allowed':'bg-blue-500 hover:bg-blue-700 text-white'}`}
onClick={()=>{onClick();}}>{children}</button>
);
};
export interface MyLinkButtonProps {
onClick: () => void
}
export const MyLinkButton:React.FC<MyLinkButtonProps> = ({children, onClick}) => {
return (
<div className="text-blue-600 cursor-pointer underline decoration-1" onClick={()=>{onClick();}}>
{children}
</div>
);
};
export interface MyCheckBoxProps {
currentValue: string|number
data:{value: string|number, text:string}[]
onChange: (newValue:string|number, label:string) => void
}
export const MyCheckBox:React.FC<MyCheckBoxProps> = ({data, onChange, currentValue}) => {
// console.log(data);
return (
<div className="flex gap-2 flex-wrap">
{
data.map(thisItem =>
<div
key={thisItem.value}
className={`px-1 py-0.5 flex justify-center place-items-center rounded-sm text-sm cursor-pointer hover:bg-gray-300 ${currentValue === thisItem.value ? 'text-blue-600':'text-gray-500'}`}
onClick={()=>{onChange(thisItem.value, thisItem.text);}}
>
<div className={`w-4 h-4 mr-1 rounded-full ${currentValue === thisItem.value ? 'border border-blue-500 bg-blue-500 text-blue-600':'border border-gray-500 text-gray-500'}`}></div>
{thisItem.text}
</div>
)
}
</div>
);
};
export interface CheckboxOption {
value: string | number;
text: string;
}
export interface MyMultiCheckBoxProps {
currentValue: (string | number)[];
checkboxOptions: CheckboxOption[];
onChange: (newValue: (string | number)[]) => void;
}
export const MyMultiCheckBox:React.FC<MyMultiCheckBoxProps> = ({data, onChange, currentValue}) => {
// console.log(data);
const onClickItem = (item: string | number) => {
const newValue = currentValue.includes(item)
? currentValue.filter((value) => value !== item)
: [...currentValue, item];
onChange(newValue);
};
return (
<div className="flex gap-2 flex-wrap">
{
data.map(thisItem =>
<div
key={thisItem.value}
className={`px-1 py-0.5 flex justify-center place-items-center rounded-sm text-sm cursor-pointer hover:bg-gray-300 ${currentValue === thisItem.value ? 'text-blue-600':'text-gray-500'}`}
onClick={()=>{onClickItem(thisItem.value);}}
>
<div className={`w-4 h-4 mr-1 rounded-full ${currentValue.includes(thisItem.value) ? 'border border-blue-500 bg-blue-500 text-blue-600':'border border-gray-500 text-gray-500'}`}></div>
{thisItem.text}
</div>
)
}
</div>
);
};
export const ElMessage = (messageObject) => {
console.warn(messageObject);
}
export const ElNotification = (messageObject) => {
console.warn(messageObject);
}