123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235 |
- <template>
- <div
- class="node-item"
- ref="node"
- :class="[isActive || isSelected ? 'active' : '']"
- :style="flowNodeContainer"
- v-click-outside="setNotActive"
- @click="setActive"
- @mouseenter="showAnchor"
- @mouseleave="hideAnchor"
- @dblclick.prevent="editNode"
- @contextmenu.prevent="onContextmenu"
- >
- <div class="log-wrap">
- <img :src="node.logImg" alt="" />
- </div>
- <div class="nodeName">{{ node.nodeName }}</div>
- <!--连线用--//触发连线的区域-->
- <div class="node-anchor anchor-top" v-show="mouseEnter"></div>
- <div class="node-anchor anchor-right" v-show="mouseEnter"></div>
- <div class="node-anchor anchor-bottom" v-show="mouseEnter"></div>
- <div class="node-anchor anchor-left" v-show="mouseEnter"></div>
- <el-dialog
- :title="disabled ? '节点详情' : '节点编辑'"
- :visible.sync="dialog.visible"
- :modal="true"
- :append-to-body="true"
- width="30%"
- >
- <nodeEdit
- ref="nodeEdit"
- :data="dialog.data"
- :disabled="disabled"
- ></nodeEdit>
- <div slot="footer" class="dialog-footer">
- <el-button @click="dialog.visible = false">取 消</el-button>
- <el-button v-if="!disabled" type="primary" @click="dialogSubmit"
- >确 定</el-button
- >
- </div>
- </el-dialog>
- </div>
- </template>
- <script>
- import ClickOutside from "vue-click-outside";
- import nodeEdit from "./node-edit";
- export default {
- name: "nodeItem",
- components: {
- nodeEdit
- },
- props: {
- node: {
- type: Object,
- default: () => {}
- },
- disabled: {
- type: Boolean,
- default: false
- }
- },
- directives: {
- ClickOutside
- },
- computed: {
- // 节点容器样式
- flowNodeContainer: {
- get() {
- return {
- top: this.node.top,
- left: this.node.left
- };
- }
- }
- },
- data() {
- return {
- mouseEnter: false,
- isActive: false,
- isSelected: false,
- //对话框
- dialog: {
- visible: false,
- disabled: false,
- data: {}
- }
- };
- },
- methods: {
- showAnchor() {
- this.mouseEnter = true;
- },
- hideAnchor() {
- this.mouseEnter = false;
- },
- onContextmenu() {
- this.$contextmenu({
- items: [
- {
- label: "删除",
- disabled: false,
- icon: "",
- onClick: () => {
- this.deleteNode();
- }
- }
- ],
- event,
- customClass: "custom-class",
- zIndex: 9999,
- minWidth: 180
- });
- },
- setActive() {
- if (window.event.ctrlKey) {
- this.isSelected = !this.isSelected;
- return false;
- }
- this.isActive = true;
- this.isSelected = false;
- setTimeout(() => {
- this.$emit("changeLineState", this.node.id, true);
- }, 0);
- },
- setNotActive() {
- if (!window.event.ctrlKey) {
- this.isSelected = false;
- }
- if (!this.isActive) {
- return;
- }
- this.$emit("changeLineState", this.node.id, false);
- this.isActive = false;
- },
- editNode() {
- // 编辑节点
- this.newNodeName = this.node.nodeName;
- console.log("节点数据:");
- console.log(this.node);
- this.dialog.data = this.node;
- this.dialog.visible = true;
- },
- deleteNode() {
- this.$emit("deleteNode", this.node);
- },
- // 节点编辑提交
- dialogSubmit() {
- this.$refs.nodeEdit
- .validateFormData()
- .then(() => {
- let formData = this.$refs.nodeEdit.formData();
- console.log("表单数据: ");
- console.log(formData);
- this.$emit("setNode", this.node.id, formData);
- this.dialog.visible = false;
- })
- .catch(() => {});
- }
- }
- };
- </script>
- <style lang="less" scoped>
- @labelColor: #409eff;
- @nodeSize: 20px;
- @viewSize: 10px;
- .node-item {
- position: absolute;
- display: flex;
- height: 40px;
- width: 120px;
- justify-content: center;
- align-items: center;
- border: 1px solid #b7b6b6;
- border-radius: 4px;
- cursor: move;
- box-sizing: content-box;
- z-index: 9995;
- &:hover {
- z-index: 9998;
- .delete-btn {
- display: block;
- }
- }
- .log-wrap {
- width: 40px;
- height: 40px;
- border-right: 1px solid #b7b6b6;
- }
- .nodeName {
- flex-grow: 1;
- width: 0;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .node-anchor {
- display: flex;
- position: absolute;
- width: @nodeSize;
- height: @nodeSize;
- align-items: center;
- justify-content: center;
- border-radius: 10px;
- cursor: crosshair;
- z-index: 9999;
- background: -webkit-radial-gradient(sandybrown 10%, white 30%, #9a54ff 60%);
- }
- .anchor-top {
- top: calc((@nodeSize / 2) * -1);
- left: 50%;
- margin-left: calc((@nodeSize / 2) * -1);
- }
- .anchor-right {
- top: 50%;
- right: calc((@nodeSize / 2) * -1);
- margin-top: calc((@nodeSize / 2) * -1);
- }
- .anchor-bottom {
- bottom: calc((@nodeSize / 2) * -1);
- left: 50%;
- margin-left: calc((@nodeSize / 2) * -1);
- }
- .anchor-left {
- top: 50%;
- left: calc((@nodeSize / 2) * -1);
- margin-top: calc((@nodeSize / 2) * -1);
- }
- }
- .active {
- border: 1px dashed @labelColor;
- box-shadow: 0px 5px 9px 0px rgba(0, 0, 0, 0.5);
- }
- </style>
|