How to generate Vue user interface by dragging and dropping

How to generate Vue user interface by dragging and dropping

Preface

I visited some friends a while ago, and they all said that they had been working on the front-end for too long and needed to spend a lot of time on front-end development. Based on the principle of improving development efficiency as much as possible without sacrificing flexibility, the author tried to integrate the function of generating Vue user interface by dragging and dropping in the framework as a supplement, so as to facilitate the rapid generation of add, delete, modify and query interface, which can also be used for large-screen display and simple web page production.

1. Technical Principle

1.1 Layout

Currently, only the grid layout based on vue-grid-layout is implemented. Each component on the design canvas is dynamically loaded into the corresponding GridItem, and the corresponding props and events are bound according to the component configuration.

<!--src/components/Designers/View/VueVisualDesigner.vue-->
<grid-layout ref="gridLayout" class="editorCanvas" :layout.sync="layout"
        :col-num="layoutOption.colNum" :row-height="layoutOption.rowHeight"
        :is-draggable="!preview" :is-resizable="!preview" @dragover.native="onDragOverGrid">
 <grid-item class="widgetPanel" v-for="item in layout" :x="item.x" :y="item.y" :w="item.w"
    :h="item.h" :i="item.i" :key="item.i"
    @resize="onItemResize(item)" @container-resized="onItemResize(item)">
  <div v-if="!preview" class="widgetOverlay" @click="onSelectWidget(item)"></div>
  <!-- Dynamic widget -->
  <component :ref="item.i" :is="item.c" :style="makeWidgetStyle(item)"
     v-model="runState[item.m]" v-bind="item.p" v-on="item.a">
   {{ item.t }}
  </component>
 </grid-item>
</grid-layout>

1.2 Components

The configuration of each component is abstracted into the interface shown in the following example, which is used to describe the properties of the component and related layout position information. Note that it is divided into design-time and runtime properties. The runtime properties are only dynamically generated during preview and runtime.

//src/runtime/IVueVisual.ts
export interface IVueLayoutItem {
 /** Component name eg: Input */
 n: string;
 /** v-text */
 t?: string;
 /** v-model */
 m?: string;
 /** Component Props eg: {size: 'mini'} */
 p: object;
 /** Component bound Props eg: {data:':data'} */
 b?: object;
 /** Design-time event definition eg: {click: {IVueEventAction}} */
 e?: object;
 /** Event handler generated at runtime, used for v-on binding eg: {click: function(){...}} */
 a?: object;
 /** Vue components dynamically loaded at runtime*/
 c?: any;
}

/** Grid-based layout items*/
export interface IVueGridLayoutItem extends IVueLayoutItem {
 i: string;
 x: number;
 y: number;
 w: number;
 h: number;
}

1.3 Status

Components and layouts alone can only be presented on the interface, and business data must also be bound. Therefore, each view model has a corresponding state setting (that is, Vue's data), which describes the state name, type, and corresponding setting value operations. The state of the view will load data from the backend or set it to the default value according to the settings at runtime.

/** Design-time view state items */
export interface IVueState {
 Name: string;
 Type: string;
 /**Operation to set the status value, eg: set the status value after calling the service*/
 Value: IVueEventAction;
}

1.4 Events

Some components such as Button can be bound to corresponding event processing. Currently, event processing is mainly divided into two categories: loading data (LoadData) and submitting data (PostData), which correspond to reading data from the backend to the current state and submitting the current state data to the backend for processing.

export type EventAction = 'LoadData' | 'PostData' | 'RunScript';

export interface IVueEventAction {
 /** Operation type, eg: LoadData */
 readonly Type: EventAction;
}

export interface IVueLoadDataAction extends IVueEventAction {
 /** State target eg: State = LoadService() */
 State: string;
 Service: string; //Backend service: eg: sys.OrderService.listAll
 ServiceArgs: any[]; //eg: [{Name:'arg1', Type:'string', Value:'"rick"'}], Value is an expression}

1.5 Toolbox

The components that can be dragged and dropped onto the canvas are defined by the global configuration "VueWidgets", which are divided into globally registered components and custom components. Custom components can be view models in code or in visual form.

//Custom Widget configuration definition {
 "Name": "Table", //Component name "Component": "sys.ExTable", //Points to a custom view model or global component name (eg: ElInput)
 "Icon": "fa fa-table", //Toolbox icon "Width": 12, //Default grid width "Height": 6, //Default grid height "Props": [ //Component props
 {
  "Name": "columns",
  "Type": "array",
  "Default": [],
  "Editor": "sys.ExTableColumnEditor" //points to the custom attribute editor},
 {
  "Name": "rows",
  "Type": "array",
  "Default": []
 }
 ]
}

2. Effect Demonstration

Note that when creating a new view model, the type selection is: Vue Visual, and the original code method is Vue Code.

The functional area of ​​the design interface is shown in the figure below:

Please watch the short video for specific operation demonstration

Summarize

This is the end of this article on how to generate a Vue user interface by dragging and dropping. For more relevant content about generating a Vue user interface by dragging and dropping, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Realizing drag effect based on Vue
  • Vue suspended draggable floating button example code
  • Vue.Draggable realizes the drag effect
  • Implementing drag and drop function based on Vue
  • How to configure and use the Vue.Draggable drag function
  • Vue custom directive drag function example
  • Vue example code for using drag and drop to implement drag
  • Vue implements div drag and drop
  • Implementing smooth transition drag and drop sorting function based on Vue
  • Detailed explanation of Vue drag component development example

<<:  Detailed explanation of Docker+Jenkins+Gitlab+Django application deployment practice

>>:  Two ways to correctly clean up mysql binlog logs

Recommend

Summary of Common Terms in CSS (Cascading Style Sheet)

If you use CSS don't forget to write DOCTYPE, ...

Vue3 based on script setup syntax $refs usage

Table of contents 1. Vue2 syntax 2. Use of Vue3 1...

React configuration px conversion rem method

Install related dependencies npm i lib-flexible -...

How to solve the high concurrency problem in MySQL database

Preface We all know that startups initially use m...

Tomcat first deployment web project process diagram

Put your own web project in the webapps directory...

Tips and precautions for using MySQL index

1. The role of index In general application syste...

Analysis of product status in interactive design that cannot be ignored in design

In the process of product design, designers always...

Mobile front-end adaptation solution (summary)

I searched online and found that many interviews ...

CSS code abbreviation div+css layout code abbreviation specification

Using abbreviations can help reduce the size of yo...

How to use docker to build redis master-slave

1. Build a Docker environment 1. Create a Dockerf...

The process of using vxe-table to make editable tables in vue

There is a table in the project that needs to be ...