vue 에서 gojs 를 인용 하여 E-R 그림 을 그 리 는 방법 예시
tablePreview.vue 만 들 기
<style>
#sample{
position: relative;
margin: 20px;
}
#myOverviewDiv {
position: absolute;
width:225px;
height:100px;
top: 10px;
left: 10px;
background-color: aliceblue;
z-index: 300; /* make sure its in front */
border: solid 1px blue;
}
#mySearch{
width: 60%;
float: right;
margin-right: 20px;
}
.input_button{
margin: 20px;
}
#entityRelation{
width: 100%;
height: 700px;
border:1px solid #cccccc;
}
.returnShang{
color: #fff;
text-underline: none;
}
.returnShang:hover{
color: #fff;
text-underline: none;
}
</style>
<template>
<div>
<div class="input_button">
<Button type="success"><router-link to="/dataSourceAdmin" class="returnShang"> </router-link></Button>
<Button type="primary" @click="searchDiagram()" style="float: right">Search</Button>
<Input placeholder=" " id="mySearch" v-model="searchText" @keyup.enter.native="searchDiagram()"></Input>
</div>
<div id="sample">
<div id="entityRelation"></div>
<div id="myOverviewDiv"></div>
</div>
</div>
</template>
<script src="./tablePreview.js"></script>
js 파일 에 E-R 그림 을 그립 니 다.주의:초기 화 는 mounted 에서 호출 해 야 합 니 다.tablePreview.js 는 다음 과 같 습 니 다.
export default{
data() {
return {
myDiagram: '',
searchText: '',
tabViewList: '',
tabRelView: ''
}
},
mounted() {
var dataSoureId = JSON.parse(sessionStorage.getItem("previewInfo")).datasourceId
let _this = this
_this.$ajax.post(_this.cfg.api.dataPoolAdmin.tableRelView +'?datasourceId=' + dataSoureId)
.then(function (res) {
if(res.data.result) {
_this.tabViewList = res.data.data.tabViewList
_this.tabRelView = res.data.data.tabRelViewList
_this.init()
}
})
},
methods: {
init() {
var go = this.go
if (window.goSamples) goSamples(); // init for these samples -- you don't need to call this
var a = go.GraphObject.make; //
this.myDiagram =
a(go.Diagram, 'entityRelation', // div html
{
initialContentAlignment: go.Spot.Center,
allowDelete: false,
allowCopy: false,
layout: a(go.ForceDirectedLayout),
"undoManager.isEnabled": true
});
// define several shared Brushes
var bluegrad = a(go.Brush, "Linear", { 0: "rgb(150, 150, 250)", 0.5: "rgb(86, 86, 186)", 1: "rgb(86, 86, 186)" });
var greengrad = a(go.Brush, "Linear", { 0: "rgb(158, 209, 159)", 1: "rgb(67, 101, 56)" });
var redgrad = a(go.Brush, "Linear", { 0: "rgb(206, 106, 100)", 1: "rgb(180, 56, 50)" });
var yellowgrad = a(go.Brush, "Linear", { 0: "rgb(254, 221, 50)", 1: "rgb(254, 182, 50)" });
var lightgrad = a(go.Brush, "Linear", { 1: "#E6E6FA", 0: "#FFFAF0" });
// the template for each attribute in a node's array of item data
var itemTempl =
a(go.Panel, "Horizontal",
a(go.Shape,
{ desiredSize: new go.Size(10, 10) },
new go.Binding("figure", "figure"),
new go.Binding("fill", "color")),
a(go.TextBlock,//items
{ stroke: "#333333",
row: 0, alignment: go.Spot.Center,
margin: new go.Margin(0, 14, 0, 2),
font: "bold 14px sans-serif" },
new go.Binding("text", "name"))
);
// define the Node template, representing an entity
this.myDiagram.nodeTemplate =
a(go.Node, "Auto", // the whole node panel
{ selectionAdorned: true,
resizable: true,
layoutConditions: go.Part.LayoutStandard & ~go.Part.LayoutNodeSized,
fromSpot: go.Spot.AllSides,
toSpot: go.Spot.AllSides,
isShadowed: true,
shadowColor: "#CCAA" },
new go.Binding("location", "location").makeTwoWay(),
// whenever the PanelExpanderButton changes the visible property of the "LIST" panel,
// clear out any desiredSize set by the ResizingTool.
new go.Binding("desiredSize", "visible", function(v) { return new go.Size(NaN, NaN); }).ofObject("LIST"),
// define the node's outer shape, which will surround the Table
a(go.Shape, "Rectangle",
/*{ fill: lightgrad, stroke: "#756875", strokeWidth: 3 }),*/
new go.Binding("fill", "isHighlighted", function(h) { return h ? "#F44336" : "#A7E7FC"; }).ofObject()),
a(go.Panel, "Table",
{ margin: 15, stretch: go.GraphObject.Fill },
a(go.RowColumnDefinition, { row: 0, sizing: go.RowColumnDefinition.None }),
// the table header
a(go.TextBlock,
{
row: 0, alignment: go.Spot.Center,
margin: new go.Margin(0, 14, 0, 2), // leave room for Button
font: "bold 16px sans-serif"
},
new go.Binding("text", "key")),
// /
/*a("PanelExpanderButton", "LIST", // the name of the element whose visibility this button toggles
{ row: 0, alignment: go.Spot.TopRight }),*/
// the list of Panels, each showing an attribute
a(go.Panel, "Vertical",
{
name: "LIST",
row: 1,
padding: 0,//
alignment: go.Spot.TopLeft,
defaultAlignment: go.Spot.Left,
stretch: go.GraphObject.Horizontal,
itemTemplate: itemTempl
},
new go.Binding("itemArray", "items"))
) // end Table Panel
); // end Node
// define the Link template, representing a relationship
this.myDiagram.linkTemplate =
a(go.Link, // the whole link panel
{
selectionAdorned: true,
layerName: "Foreground",
reshapable: true,
routing: go.Link.AvoidsNodes,
corner: 5,
curve: go.Link.JumpOver,
toEndSegmentLength: 100
},
a(go.Shape, // the link shape
{ stroke: "#303B45", strokeWidth: 2.5 }),
a(go.TextBlock, // the "from" label
{
textAlign: "center",
font: "bold 14px sans-serif",
stroke: "#1967B3",
segmentIndex: 0,
segmentOffset: new go.Point(NaN, NaN),
segmentOrientation: go.Link.OrientUpright
},
new go.Binding("text", "text")),
a(go.TextBlock, // the "to" label
{
textAlign: "center",
font: "bold 14px sans-serif",
stroke: "#1967B3",
segmentIndex: -1,
segmentOffset: new go.Point(NaN, NaN),
segmentOrientation: go.Link.OrientUpright
},
new go.Binding("text", "toText"))
);
// create the model for the E-R diagram
var nodeDataArray = []
for(var i =0; i< this.tabViewList.length; i++){
nodeDataArray.push(JSON.parse(JSON.stringify(
{ key: this.tabViewList[i].tableName,
name: this.tabViewList[i].tableCnName,
items: [{name: this.tabViewList[i].tableCnName, isKey: false, figure: 'Decision', color: "#2d8cf0"}]
}
)))
}
var linkDataArray = []
for(var j =0; j< this.tabRelView.length; j++){
linkDataArray.push(JSON.parse(JSON.stringify(
{ from: this.tabRelView[j].fromTableName, to: this.tabRelView[j].toTableName,
text: this.tabRelView[j].fromText, toText: this.tabRelView[j].toText
})
))
}
/*var nodeDataArray = [
{ key: this.tabViewList[].tableName,
items: [ { name: " :BIGINT", iskey: true, figure: "Decision", color: yellowgrad },
{ name: " :BIGINT", iskey: false, figure: "Cube", color: bluegrad }] },
{ key: " ",
items: [ { name: " :BIGINT", iskey: true, figure: "Decision", color: yellowgrad },
{ name: " :VARCHAR(100)", iskey: false, figure: "Cube1", color: bluegrad },
{ name: " :VARCHAR(100)", iskey: false, figure: "Cube1", color: bluegrad },
{ name: " :VARCHAR(100)", iskey: false, figure: "Cube1", color: bluegrad } ] },
{ key: " ",
items: [ { name: "CategoryID", iskey: true, figure: "Decision", color: yellowgrad },
{ name: "CategoryName", iskey: false, figure: "Cube", color: bluegrad },
{ name: "Description", iskey: false, figure: "Cube", color: bluegrad },
{ name: "Picture", iskey: false, figure: "TriangleUp", color: redgrad } ] },
{ key: " ",
items: [ { name: "OrderID", iskey: true, figure: "Decision", color: yellowgrad },
{ name: "ProductID", iskey: true, figure: "Decision", color: yellowgrad },
{ name: "UnitPrice", iskey: false, figure: "MagneticData", color: greengrad },
{ name: "Quantity", iskey: false, figure: "MagneticData", color: greengrad },
{ name: "Discount", iskey: false, figure: "MagneticData", color: greengrad } ] },
{ key: " 1",
items: [ { name: "OrderID", iskey: true, figure: "Decision", color: yellowgrad },
{ name: "ProductID", iskey: true, figure: "Decision", color: yellowgrad },
{ name: "UnitPrice", iskey: false, figure: "MagneticData", color: greengrad },
{ name: "Quantity", iskey: false, figure: "MagneticData", color: greengrad },
{ name: "Discount", iskey: false, figure: "MagneticData", color: greengrad } ] },
{ key: " 2",
items: [ { name: "OrderID", iskey: true, figure: "Decision", color: yellowgrad },
{ name: "ProductID", iskey: true, figure: "Decision", color: yellowgrad },
{ name: "UnitPrice", iskey: false, figure: "MagneticData", color: greengrad },
{ name: "Quantity", iskey: false, figure: "MagneticData", color: greengrad },
{ name: "Discount", iskey: false, figure: "MagneticData", color: greengrad } ] },
{ key: " 3" },
{ key: " 4",
items: [ { name: "OrderID", iskey: true, figure: "Decision", color: yellowgrad },
{ name: "ProductID", iskey: true, figure: "Decision", color: yellowgrad },
{ name: "UnitPrice", iskey: false, figure: "MagneticData", color: greengrad },
{ name: "Quantity", iskey: false, figure: "MagneticData", color: greengrad },
{ name: "Discount", iskey: false, figure: "MagneticData", color: greengrad } ] },
];*/
/*var linkDataArray = [
{ from: " ", to: " ", text: "N", toText: "1" },
{ from: " ", to: " ", text: "N", toText: "1" },
{ from: " ", to: " ", text: "N", toText: "1" },
{ from: " 1", to: " ", text: "N", toText: "1" },
{ from: " ", to: " 1", text: "N", toText: "1" },
{ from: " 2", to: " ", text: "N", toText: "1" },
{ from: " 3", to: " ", text: "N", toText: "1" },
{ from: " 4", to: " ", text: "N", toText: "1" }
];*/
this.myDiagram.model = new go.GraphLinksModel(nodeDataArray, linkDataArray);
// Overview
var myOverview =
a(go.Overview, "myOverviewDiv", // the HTML DIV element for the Overview
{ observed: this.myDiagram, contentAlignment: go.Spot.Center });
},
searchDiagram() { // called by button
var input = document.getElementById("mySearch");
if (!input) return;
input.focus();
this.myDiagram.startTransaction("highlight search");
if (this.searchText) {
// search four different data properties for the string, any of which may match for success
// create a case insensitive RegExp from what the user typed
var regex = new RegExp(this.searchText, "i");
var results = this.myDiagram.findNodesByExample({ key: regex },{name: regex});
this.myDiagram.highlightCollection(results);
// try to center the diagram at the first node that was found
if (results.count > 0) this.myDiagram.centerRect(results.first().actualBounds);
} else { // empty string only clears highlighteds collection
this.myDiagram.clearHighlighteds();
}
this.myDiagram.commitTransaction("highlight search");
}
}
}
gojs 의 Entity Relationship 인 스 턴 스 를 바탕 으로 커버 그림 과 검색 후 하 이 라이트 디 스 플레이 기능 을 추가 합 니 다.커버 층 의 역할 은 데이터 가 많 을 때 드래그 커버 층 을 통 해 찾 을 수 있다 는 것 이다.
이 거 는 커버 층 의 div 입 니 다.
여 기 는 기 존 에 정 의 된 디 아 그램 을 커버 층 에 넣 는 겁 니 다.
검색 상자 의 역할 은 해당 데 이 터 를 빨리 찾 는 것 입 니 다.아래 그림 코드 는 검색 후 하 이 라 이 트 를 표시 하 는 데 이 터 를 설정 하 는 것 입 니 다.
효과 도 는 다음 과 같다.
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Fastapi websocket 및 vue 3(Composition API)1부: FastAPI virtualenv 만들기(선택 사항) FastAPI 및 필요한 모든 것을 다음과 같이 설치하십시오. 생성main.py 파일 및 실행 - 브라우저에서 이 링크 열기http://127.0.0.1:...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.