JointJS Element with ports and tool items (delete, settings etc.)

后端 未结 1 714
野的像风
野的像风 2021-01-06 23:32

I managed to enhance my SVG-shape with ports via:

joint.shapes.devs.Element = joint.shapes.basic.Generic.extend(_.extend({},     
joint.shapes.basic.PortsMod         


        
1条回答
  •  天命终不由人
    2021-01-07 00:00

    Solution

    The key was this plugin. The author extended the PortsModelInterface with own code for a move-, resize- and ports-tool. I extended it further by implementing the delete functionality. This way the devs-model is open to any extension in case of functionality.

    How it´s done

    In tooledViewPlugin.js there is joint.plugins.TooledModelInterface = {}. In there I added:

    deleteToolMarkup: 'Remove this element from the model',
    

    Below in joint.plugins.TooledViewInterface = {} I wrote

    renderDeleteTool: function () {
        var deleteContainer = this.$('.deleteTool').empty();
        var markup = V(this.model.deleteToolMarkup);
        for(var id in markup)
            deleteContainer.append(markup[id].node);
    }
    

    An example shape with special SVG markup other than a simple rectangle. Note the in the markup:

    joint.shapes.devs.UnspecifiedProcess = joint.shapes.devs.Model.extend(_.extend({}, joint.plugins.TooledModelInterface, {
    
    markup: ['',
                '',
                    '',
                    '',
                        '',
                          '',
                            '',
                              '',
                            '',
                          '',
                        '',
                    '',
                '',
                '',
                '',
                '',
                '',
                '',
                '',
                '',
            '</g>'].join(''),
    
    defaults: joint.util.deepSupplement({
        type: 'devs.UnspecifiedProcess',
        inPorts: [''],
        outPorts: [''],
        moveTool: true,
        resizeTool: true,
        size: { width: 100, height: 31},
        attrs: {
            '.inPorts circle': { fill: '#fff' },
            '.outPorts circle': { fill: '#fff' },
            '.body': {
                width: 67, height: 21,
                stroke: 'none'
            },
        }
    }, joint.shapes.devs.Model.prototype.defaults),
    }));
    joint.shapes.devs.UnspecifiedProcessView = joint.shapes.devs.ModelView.extend(joint.plugins.TooledViewInterface);
    </code></pre>
    
    <p>The final part is instantiating the element with <code>new joint.shapes.devs.UnspecifiedProcess</code>. I present it to you with my drag and drop logic as it might be useful for you too:</p>
    
    <pre><code>//Drag and drop shapes
    if (Modernizr.draganddrop) {
        // Mouse position
        var posX = 0,
            posY = 0;
        // Selected Element with start of dragging
        var selectedEl = "";
        var selectedObj = null;
        var oldObj = null;
        //
        $(".draggable-svg").on("dragstart", function(e) {
            selectedEl = this.id;
            console.log(selectedEl);
        }); 
        $("#drawing-area").on("dragover", function(e) {
            e.preventDefault();
            posX = e.originalEvent.pageX - sideBarW;
            posY = e.originalEvent.pageY - topBarH;
        }); 
        $("#drawing-area").on("drop", function(e) {
            e.preventDefault();
            var element = new joint.shapes.devs[selectedEl]({
                position: { x: posX, y: posY }
            });
            graph.addCell(element);
            selectedEl = "";
            oldObj = selectedObj;
            selectedObj = element;
    
        }); 
    } else {
        alert("Your browser is very old. Please update.");
    }
    </code></pre>
        </p>
                 <div class="appendcontent">
                                                            </div>
                </div>
                <div class="jieda-reply">
                  <span class="jieda-zan button_agree" type="zan" data-id='1645686'>
                    <i class="iconfont icon-zan"></i>
                    <em>0</em>
                  </span>
                       <span type="reply" class="showpinglun" data-id="1645686">
                    <i class="iconfont icon-svgmoban53"></i>
                   讨论(0)
                  </span>
                                                      
                  
                  <div class="jieda-admin">
                              
                 
           
              
                  </div>
                                        </div>
                             <div class="comments-mod "  style="display: none; float:none;padding-top:10px;" id="comment_1645686">
                        <div class="areabox clearfix">
    
    <form class="layui-form" action="">
                   
                <div class="layui-form-item">
        <label class="layui-form-label" style="padding-left:0px;width:60px;">发布评论:</label>
        <div class="layui-input-block" style="margin-left:90px;">
             <input type="text" placeholder="不少于5个字" AUTOCOMPLETE="off" class="comment-input layui-input" name="content" />
                            <input type='hidden' value='0' name='replyauthor' />
        </div>
        <div class="mar-t10"><span class="fr layui-btn layui-btn-sm addhuidapinglun" data-id="1645686">提交评论 </span></div>
      </div>
      
    </form>
                        </div>
                        <hr>
                        <ul class="my-comments-list nav">
                            <li class="loading">
                            <img src='https://www.e-learn.cn/qa/static/css/default/loading.gif' align='absmiddle' />
                             加载中...
                            </li>
                        </ul>
                    </div>
              </li>
                                  			
            </ul>
            
            <div class="layui-form layui-form-pane">
              <form id="huidaform"  name="answerForm"  method="post">
                
                <div class="layui-form-item layui-form-text">
                  <a name="comment"></a>
                  <div class="layui-input-block">
                
        
    <script type="text/javascript" src="https://www.e-learn.cn/qa/static/js/neweditor/ueditor.config.js"></script>
    <script type="text/javascript" src="https://www.e-learn.cn/qa/static/js/neweditor/ueditor.all.js"></script>
    <script type="text/plain" id="editor"  name="content"  style="width:100%;height:200px;"></script>                                 
    <script type="text/javascript">
                                     var isueditor=1;
                var editor = UE.getEditor('editor',{
                    //这里可以选择自己需要的工具按钮名称,此处仅选择如下五个
                    toolbars:[['source','fullscreen',  '|', 'undo', 'redo', '|', 'bold', 'italic', 'underline', 'fontborder', 'strikethrough', 'removeformat', 'formatmatch', 'autotypeset', 'blockquote', 'pasteplain', '|', 'forecolor', 'backcolor', 'insertorderedlist', 'insertunorderedlist', 'selectall', 'cleardoc', '|', 'rowspacingtop', 'rowspacingbottom', 'lineheight', '|', 'customstyle', 'paragraph', 'fontfamily', 'fontsize', '|', 'indent', '|', 'justifyleft', 'justifycenter', 'justifyright', 'justifyjustify', '|', 'link', 'unlink', 'anchor', '|', 'simpleupload', 'insertimage', 'scrawl', 'insertvideo', 'attachment', 'map', 'insertcode', '|', 'horizontal', '|', 'preview', 'searchreplace', 'drafts']],
                
                    initialContent:'',
                    //关闭字数统计
                    wordCount:false,
                    zIndex:2,
                    //关闭elementPath
                    elementPathEnabled:false,
                    //默认的编辑区域高度
                    initialFrameHeight:250
                    //更多其他参数,请参考ueditor.config.js中的配置项
                    //更多其他参数,请参考ueditor.config.js中的配置项
                });
                            editor.ready(function() {
                	editor.setDisabled();
                	});
                                $("#editor").find("*").css("max-width","362px");
            </script>              </div>
                </div>
                              
        
    
            
             <div class="layui-form-item">
                    <label for="L_vercode" class="layui-form-label">验证码</label>
                    <div class="layui-input-inline">
                      <input type="text"  id="code" name="code"   value="" required lay-verify="required" placeholder="图片验证码" autocomplete="off" class="layui-input">
                    </div>
                    <div class="layui-form-mid">
                      <span style="color: #c00;"><img class="hand" src="https://www.e-learn.cn/qa/user/code.html" onclick="javascript:updatecode();" id="verifycode"><a class="changecode"  href="javascript:updatecode();"> 看不清?</a></span>
                    </div>
                  </div>
                                      <div class="layui-form-item">
                        <input type="hidden" value="679269" id="ans_qid" name="qid">
       <input type="hidden" id="tokenkey" name="tokenkey" value=''/>
                    <input type="hidden" value="JointJS Element with ports and tool items (delete, settings etc.)" id="ans_title" name="title"> 
                 
                  <div class="layui-btn    layui-btn-disabled"  id="ajaxsubmitasnwer" >提交回复</div>
                </div>
              </form>
            </div>
          </div>
          <input type="hidden" value="679269" id="adopt_qid"	name="qid" /> 
          <input type="hidden" id="adopt_answer" value="0"	name="aid" />
        </div>
        <div class="layui-col-md4">
              
     <!-- 热门讨论问题 -->
         
     <dl class="fly-panel fly-list-one">
            <dt class="fly-panel-title">热议问题</dt>
                <!-- 本周热门讨论问题显示10条-->