| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185 |
- <template>
- <div
- class="widget-inline widget-view"
- :class="{
- active: selectWidget.key && selectWidget.key == element.key,
- 'is_hidden': element.options.hidden
- }"
- @click.stop="handleSelectWidget(index)"
- :size="element.options.size"
- @mouseover.stop="handleMouseover"
- @mouseout="handleMouseout"
- ref="widgetInline"
- >
- <div class="widget-inline-content">
- <draggable
- v-model="element.list"
- v-bind="{group:{name: 'people', put: handlePut}, ghostClass: 'ghost',animation: 200, handle: '.drag-widget'}"
- :no-transition-on-drag="true"
- @add="handleWidgetInlineAdd($event, element)"
- @update="handleWidgetInlineUpdate"
- @start="setDragging(true)"
- @end="setDragging(false)"
- class="widget-inline-list"
- :class="{
- [element.options && element.options.customClass]: element.options.customClass ? true : false
- }"
- :style="{
- display: element.options.flex ? 'flex' : 'block',
- 'flex-direction': 'row',
- 'flex-wrap': 'wrap',
- 'justify-content': element.options.flexJustify || 'normal',
- 'align-items': element.options.flexAlign || 'normal'
- }"
- >
- <template v-for="(item, index) in element.list" v-if="item && item.key">
- <widget-form-item
- :key="item.key"
- :element="item"
- :select.sync="selectWidget"
- :index="index" :data="element"
- @select-change="handleSelectChange($event, element)"
- :form-key="formKey"
- :style="{'margin-right': element.options.spaceSize+'px'}"
- >
- </widget-form-item>
- </template>
- </draggable>
- </div>
- <div class="widget-view-action widget-inline-action" v-if="selectWidget.key == element.key">
- <i class="fm-iconfont icon-icon_clone" @click.stop="handleInlineClone(index)" :title="$t('fm.tooltip.clone')"></i>
- <i class="fm-iconfont icon-trash" @click.stop="handleWidgetDelete(index)" :title="$t('fm.tooltip.trash')"></i>
- </div>
- <div class="widget-view-drag widget-inline-drag" v-if="selectWidget.key == element.key">
- <i class="fm-iconfont icon-drag drag-widget"></i>
- </div>
- <div class="widget-view-model " :style="{'color': element.options.dataBind ? '' : '#666'}">
- <span>{{element.model}}</span>
- </div>
- <div class="widget-view-type ">
- <span>{{element.type ? this.$t('fm.components.fields.' + element.type) : ''}}</span>
- </div>
- </div>
- </template>
- <script>
- import WidgetFormItem from './WidgetFormItem'
- import Draggable from 'vuedraggable'
- import _ from 'lodash'
- import { CloneLayout } from '../util/layout-clone.js'
- import { EventBus } from '../util/event-bus.js'
- import { addClass, removeClass } from '../util'
- export default {
- name: 'widget-inline',
- components: {
- Draggable,
- WidgetFormItem
- },
- props: ['element', 'select', 'index', 'data', 'platform', 'formKey', 'subform'],
- inject: ['setDragging', 'getDragging'],
- data () {
- return {
- selectWidget: this.select || {}
- }
- },
- methods: {
- handleMouseover (e) {
- !this.getDragging() && addClass(this.$refs['widgetInline'], 'is-hover')
- },
- handleMouseout (e) {
- removeClass(this.$refs['widgetInline'], 'is-hover')
- },
- handleSelectWidget (index) {
- this.selectWidget = this.data.list[index]
- },
- handlePut (a, b, c) {
-
- if (c.className.split(' ').indexOf('widget-col') >=0 ||
- c.className.split(' ').indexOf('widget-table') >= 0 ||
- c.className.split(' ').indexOf('widget-tab') >= 0 ||
- c.className.split(' ').indexOf('widget-inline') >= 0 ||
- c.className.split(' ').indexOf('widget-report') >=0 ||
- c.className.split(' ').indexOf('widget-dialog') >= 0 ||
- c.className.split(' ').indexOf('widget-card') >= 0 ||
- c.className.split(' ').indexOf('no-put') >= 0 ||
- c.children[0].className.split(' ').indexOf('no-put') >= 0) {
- return false
- }
- return true
- },
- handleWidgetInlineAdd ($event, table) {
- const newIndex = $event.newIndex
- const key = Math.random().toString(36).slice(-8)
- this.$set(table.list, newIndex, _.cloneDeep(table.list[newIndex]))
- this.$set(table.list, newIndex, {
- ...table.list[newIndex],
- options: {
- ...table.list[newIndex].options,
- remoteFunc: table.list[newIndex].options.remoteFunc || 'func_'+key,
- remoteOption: table.list[newIndex].options.remoteOption || 'option_'+key,
- subform: this.subform ? true : false,
- tableColumn: false
- },
- key: table.list[newIndex].key ? table.list[newIndex].key : key,
- model: table.list[newIndex].model ? table.list[newIndex].model : table.list[newIndex].type + '_' + key,
- rules: table.list[newIndex].rules ? [...table.list[newIndex].rules] : []
- })
- this.selectWidget = table.list[newIndex]
- this.$nextTick(() => { EventBus.$emit('on-history-add-' + this.formKey) })
- },
- handleInlineClone (index) {
- let cloneData = _.cloneDeep(this.data.list[index])
- this.data.list.splice(index + 1, 0, CloneLayout(cloneData))
- this.$nextTick(() => {
- this.selectWidget = this.data.list[index + 1]
- this.$nextTick(() => { EventBus.$emit('on-history-add-' + this.formKey) })
- })
- },
- handleWidgetDelete (index) {
- if (this.data.list.length == 1) {
- this.$emit('select-change', -1)
- } else {
- if (this.data.list.length - 1 == index) {
- this.$emit('select-change', index - 1)
- } else {
- this.$emit('select-change', index)
- }
- }
-
- this.data.list.splice(index, 1)
- setTimeout(() => {
- EventBus.$emit('on-history-add-' + this.formKey)
- }, 20)
- },
- handleWidgetInlineUpdate () {
- this.$nextTick(() => { EventBus.$emit('on-history-add-' + this.formKey) })
- },
- handleSelectChange (index, item) {
- setTimeout(() => {
- index >=0 ? (this.selectWidget = item.list[index]) : (this.selectWidget = this.data.list[this.index])
- })
- }
- },
- watch: {
- select (val) {
- this.selectWidget = val
- },
- selectWidget: {
- deep: false,
- handler (val) {
- this.$emit('update:select', val)
- }
- },
- }
- }
- </script>
|