gaoluyang
2026-06-24 712aa51536236d43e87273e4ce45ac5691dffad8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
<script lang="ts" setup>
import type { DiyComponent, DiyComponentLibrary, PageConfig } from './util';
 
import { onMounted, ref, unref, watch } from 'vue';
 
import { Page, useVbenModal } from '..\..\..\..\..\packages\effects\common-ui\src';
import { IconifyIcon } from '..\..\..\..\..\packages\icons\src';
import { cloneDeep, isEmpty, isString } from '..\..\..\..\..\packages\utils\src';
 
import { Button, Card, Col, QRCode, Row, Tag, Tooltip } from 'ant-design-vue';
import draggable from 'vuedraggable';
 
import statusBarImg from '#/assets/imgs/diy/statusBar.png';
 
import ComponentContainer from './components/component-container.vue';
import ComponentLibrary from './components/component-library.vue';
import { componentConfigs, components } from './components/mobile';
import { component as NAVIGATION_BAR_COMPONENT } from './components/mobile/navigation-bar/config';
import { component as PAGE_CONFIG_COMPONENT } from './components/mobile/page-config/config';
import { component as TAB_BAR_COMPONENT } from './components/mobile/tab-bar/config';
 
/** 页面装修详情页 */
defineOptions({
  name: 'DiyPageDetail',
  components,
});
 
/** 定义属性 */
const props = defineProps({
  modelValue: { type: [String, Object], required: true }, // 页面配置,支持 Json 字符串
  title: { type: String, default: '' }, // 标题
  libs: { type: Array<DiyComponentLibrary>, default: () => [] }, // 组件库
  showNavigationBar: { type: Boolean, default: true }, // 是否显示顶部导航栏
  showTabBar: { type: Boolean, default: false }, // 是否显示底部导航菜单
  showPageConfig: { type: Boolean, default: true }, // 是否显示页面配置
  previewUrl: { type: String, default: '' }, // 预览地址:提供了预览地址,才会显示预览按钮
});
 
const emits = defineEmits(['reset', 'save', 'update:modelValue']); // 工具栏操作
 
// TODO @xingyu:要不要加这个?ele 里是有这个的。
// const qrcode = useQRCode(props.previewUrl, {
//   errorCorrectionLevel: 'H',
//   margin: 4,
// }); // 预览二维码
 
const pageConfigComponent = ref<DiyComponent<any>>(
  cloneDeep(PAGE_CONFIG_COMPONENT),
); // 页面设置组件
const navigationBarComponent = ref<DiyComponent<any>>(
  cloneDeep(NAVIGATION_BAR_COMPONENT),
); // 顶部导航栏
const tabBarComponent = ref<DiyComponent<any>>(cloneDeep(TAB_BAR_COMPONENT)); // 底部导航菜单
 
const selectedComponent = ref<DiyComponent<any>>(); // 选中的组件,默认选中顶部导航栏
const selectedComponentIndex = ref<number>(-1); // 选中的组件索引
const pageComponents = ref<DiyComponent<any>[]>([]); // 组件列表
 
/**
 * 监听传入的页面配置
 * 解析出 pageConfigComponent 页面整体的配置,navigationBarComponent、pageComponents、tabBarComponent 页面上、中、下的配置
 */
watch(
  () => props.modelValue,
  () => {
    const modelValue =
      isString(props.modelValue) && !isEmpty(props.modelValue)
        ? (JSON.parse(props.modelValue) as PageConfig)
        : props.modelValue;
    // noinspection SuspiciousTypeOfGuard
    pageConfigComponent.value.property =
      (typeof modelValue !== 'string' && modelValue?.page) ||
      PAGE_CONFIG_COMPONENT.property;
    // noinspection SuspiciousTypeOfGuard
    navigationBarComponent.value.property =
      (typeof modelValue !== 'string' && modelValue?.navigationBar) ||
      NAVIGATION_BAR_COMPONENT.property;
    // noinspection SuspiciousTypeOfGuard
    tabBarComponent.value.property =
      (typeof modelValue !== 'string' && modelValue?.tabBar) ||
      TAB_BAR_COMPONENT.property;
    // 查找对应的页面组件
    // noinspection SuspiciousTypeOfGuard
    pageComponents.value = (
      (typeof modelValue !== 'string' && modelValue?.components) ||
      []
    ).map((item: any) => {
      const component = componentConfigs[item.id];
      return { ...component, property: item.property };
    });
  },
  {
    immediate: true,
  },
);
 
/** 选择组件修改其属性后更新它的配置 */
watch(
  selectedComponent,
  (val: any) => {
    if (!val || selectedComponentIndex.value === -1) {
      return;
    }
    // 如果是基础设置页,默认选中的索引改成 -1,为了防止删除组件后切换到此页导致报错
    // https://gitee.com/yudaocode/yudao-ui-admin-vue3/pulls/792
    if (props.showTabBar) {
      selectedComponentIndex.value = -1;
    }
    pageComponents.value[selectedComponentIndex.value] =
      selectedComponent.value!;
  },
  { deep: true },
);
 
/** 保存 */
function handleSave() {
  // 发送保存通知,由外部保存
  emits('save');
}
 
/** 监听配置修改 */
function pageConfigChange() {
  const pageConfig = {
    page: pageConfigComponent.value.property,
    navigationBar: navigationBarComponent.value.property,
    tabBar: tabBarComponent.value.property,
    components: pageComponents.value.map((component) => {
      // 只保留 APP 有用的字段
      return { id: component.id, property: component.property };
    }),
  } as PageConfig;
  if (!props.showTabBar) {
    delete pageConfig.tabBar;
  }
  // 发送数据更新通知
  const modelValue = isString(props.modelValue)
    ? JSON.stringify(pageConfig)
    : pageConfig;
  emits('update:modelValue', modelValue);
}
 
watch(
  () => [
    pageConfigComponent.value.property,
    navigationBarComponent.value.property,
    tabBarComponent.value.property,
    pageComponents.value,
  ],
  () => {
    pageConfigChange();
  },
  { deep: true },
);
 
/** 处理页面选中:显示属性表单 */
function handlePageSelected(event: any) {
  if (!props.showPageConfig) {
    return;
  }
  // 配置了样式 page-prop-area 的元素,才显示页面设置
  if (event?.target?.classList?.contains('page-prop-area')) {
    handleComponentSelected(unref(pageConfigComponent));
  }
}
 
/**
 * 选中组件
 *
 * @param component 组件
 * @param index 组件的索引
 */
function handleComponentSelected(
  component: DiyComponent<any>,
  index: number = -1,
) {
  // 使用深拷贝避免响应式追踪循环警告
  selectedComponent.value = component;
  selectedComponentIndex.value = index;
}
 
/** 选中顶部导航栏 */
function handleNavigationBarSelected() {
  handleComponentSelected(unref(navigationBarComponent));
}
 
/** 选中底部导航菜单 */
function handleTabBarSelected() {
  handleComponentSelected(unref(tabBarComponent));
}
 
/** 组件变动(拖拽) */
function handleComponentChange(dragEvent: any) {
  // 新增,即从组件库拖拽添加组件
  if (dragEvent.added) {
    const { element, newIndex } = dragEvent.added;
    handleComponentSelected(element, newIndex);
  } else if (dragEvent.moved) {
    // 拖拽排序
    const { newIndex } = dragEvent.moved;
    // 保持选中
    selectedComponentIndex.value = newIndex;
  }
}
 
/** 交换组件 */
function swapComponent(oldIndex: number, newIndex: number) {
  const temp = pageComponents.value[oldIndex]!;
  pageComponents.value[oldIndex] = pageComponents.value[newIndex]!;
  pageComponents.value[newIndex] = temp;
  // 保持选中
  selectedComponentIndex.value = newIndex;
}
 
/** 移动组件(上移、下移) */
function handleMoveComponent(index: number, direction: number) {
  const newIndex = index + direction;
  if (newIndex < 0 || newIndex >= pageComponents.value.length) {
    return;
  }
  swapComponent(index, newIndex);
}
 
/** 复制组件 */
function handleCopyComponent(index: number) {
  const component = pageComponents.value[index];
  if (component) {
    const clonedComponent = cloneDeep(component);
    clonedComponent.uid = Date.now();
    pageComponents.value.splice(index + 1, 0, clonedComponent);
  }
}
 
/** 删除组件 */
function handleDeleteComponent(index: number) {
  pageComponents.value.splice(index, 1);
  if (index < pageComponents.value.length) {
    // 1. 不是最后一个组件时,删除后选中下面的组件
    const bottomIndex = index;
    const component = pageComponents.value[bottomIndex];
    if (component) {
      handleComponentSelected(component, bottomIndex);
    }
  } else if (pageComponents.value.length > 0) {
    // 2. 不是第一个组件时,删除后选中上面的组件
    const topIndex = index - 1;
    const component = pageComponents.value[topIndex];
    if (component) {
      handleComponentSelected(component, topIndex);
    }
  } else {
    // 3. 组件全部删除之后,显示页面设置
    handleComponentSelected(unref(pageConfigComponent));
  }
}
 
/** 重置 */
function handleReset() {
  emits('reset');
}
 
const [PreviewModal, previewModalApi] = useVbenModal({
  showConfirmButton: false,
  showCancelButton: false,
  onCancel() {
    previewModalApi.close();
  },
});
 
/** 预览 */
function handlePreview() {
  previewModalApi.open();
}
 
/** 设置默认选中的组件 */
function setDefaultSelectedComponent() {
  if (props.showPageConfig) {
    selectedComponent.value = unref(pageConfigComponent);
  } else if (props.showNavigationBar) {
    selectedComponent.value = unref(navigationBarComponent);
  } else if (props.showTabBar) {
    selectedComponent.value = unref(tabBarComponent);
  }
}
 
watch(
  () => [props.showPageConfig, props.showNavigationBar, props.showTabBar],
  () => setDefaultSelectedComponent(),
);
 
/** 初始化 */
onMounted(() => {
  setDefaultSelectedComponent();
});
</script>
<template>
  <Page auto-content-height>
    <!-- 顶部:工具栏 -->
    <Row class="flex max-h-12 rounded-lg bg-card">
      <!-- 左侧操作区 -->
      <Col :span="8">
        <slot name="toolBarLeft"></slot>
      </Col>
      <!-- 中心操作区 -->
      <Col :span="8">
        <span class="flex h-full items-center justify-center">{{ title }}</span>
      </Col>
      <!-- 右侧操作区 -->
      <Col :span="8">
        <Button.Group
          direction="vertical"
          size="large"
          class="flex justify-end"
        >
          <Tooltip title="重置">
            <Button @click="handleReset">
              <IconifyIcon class="size-5" icon="lucide:refresh-cw" />
            </Button>
          </Tooltip>
          <Tooltip v-if="previewUrl" title="预览">
            <Button @click="handlePreview">
              <IconifyIcon class="size-5" icon="lucide:eye" />
            </Button>
          </Tooltip>
          <Tooltip title="保存">
            <Button @click="handleSave">
              <IconifyIcon class="size-5" icon="lucide:check" />
            </Button>
          </Tooltip>
        </Button.Group>
      </Col>
    </Row>
    <!-- 中心区域 -->
    <Row class="mt-4 h-[calc(80vh)]">
      <!-- 左侧:组件库(ComponentLibrary) -->
      <Col :span="6">
        <ComponentLibrary v-if="libs && libs.length > 0" :list="libs" />
      </Col>
      <!-- 中心:设计区域(ComponentContainer) -->
      <Col :span="12">
        <div
          class="editor-center relative flex max-h-[calc(80vh)] w-full flex-1 flex-col overflow-y-auto"
          @click="handlePageSelected"
        >
          <!-- 手机顶部 -->
          <div class="mx-auto flex w-96 flex-col">
            <!-- 手机顶部状态栏 -->
            <img alt="" class="h-6 bg-card" :src="statusBarImg" />
            <!-- 手机顶部导航栏 -->
            <ComponentContainer
              v-if="showNavigationBar"
              :active="selectedComponent?.id === navigationBarComponent.id"
              :component="navigationBarComponent"
              :show-toolbar="false"
              class="cursor-pointer"
              @click="handleNavigationBarSelected"
            />
          </div>
          <!-- 绝对定位的组件:例如 弹窗、浮动按钮等 -->
          <div
            v-for="(component, index) in pageComponents"
            :key="index"
            @click="handleComponentSelected(component, index)"
          >
            <component
              :is="component.id"
              v-if="
                component.position === 'fixed' &&
                selectedComponent?.uid === component.uid
              "
              :property="component.property"
            />
          </div>
          <!-- 手机页面编辑区域 -->
          <div
            class="mx-auto min-h-full w-96 bg-no-repeat"
            :style="{
              // backgroundColor: pageConfigComponent.property.backgroundColor,
              backgroundImage: `url(${pageConfigComponent.property.backgroundImage})`,
            }"
          >
            <div
              class="relative my-0 min-h-full w-full items-center justify-center bg-auto bg-no-repeat"
            >
              <draggable
                v-model="pageComponents"
                :animation="200"
                :force-fallback="false"
                class="min-h-[70vh] w-full"
                filter=".component-toolbar"
                ghost-class="draggable-ghost"
                group="component"
                item-key="index"
                @change="handleComponentChange"
              >
                <template #item="{ element, index }">
                  <ComponentContainer
                    v-if="!element.position || element.position === 'center'"
                    :active="selectedComponentIndex === index"
                    :can-move-down="index < pageComponents.length - 1"
                    :can-move-up="index > 0"
                    :component="element"
                    @click="handleComponentSelected(element, index)"
                    @copy="handleCopyComponent(index)"
                    @delete="handleDeleteComponent(index)"
                    @move="
                      (direction: number) =>
                        handleMoveComponent(index, direction)
                    "
                  />
                </template>
              </draggable>
            </div>
          </div>
          <!-- 手机底部导航 -->
          <div
            v-if="showTabBar"
            class="bottom-2 mx-auto mb-2 w-96 cursor-pointer"
          >
            <ComponentContainer
              :active="selectedComponent?.id === tabBarComponent.id"
              :component="tabBarComponent"
              :show-toolbar="false"
              @click="handleTabBarSelected"
            />
          </div>
          <!-- 固定布局的组件 操作按钮区 -->
          <div class="absolute right-4 top-0 flex flex-col gap-2">
            <Tag
              v-if="showPageConfig"
              :color="
                selectedComponent?.uid === pageConfigComponent.uid
                  ? 'blue'
                  : 'default'
              "
              class="cursor-pointer"
              size="large"
              @click="handleComponentSelected(pageConfigComponent)"
            >
              <IconifyIcon
                :icon="pageConfigComponent.icon"
                class="mr-2 size-4"
              />
              <span>{{ pageConfigComponent.name }}</span>
            </Tag>
            <template v-for="(component, index) in pageComponents" :key="index">
              <Tag
                v-if="component.position === 'fixed'"
                :color="
                  selectedComponent?.uid === component.uid ? 'blue' : 'default'
                "
                closable
                class="cursor-pointer"
                size="large"
                @click="handleComponentSelected(component)"
                @close="handleDeleteComponent(index)"
              >
                <IconifyIcon :icon="component.icon" class="size-4" />
                <span>{{ component.name }}</span>
              </Tag>
            </template>
          </div>
        </div>
      </Col>
      <!-- 右侧:属性面板(ComponentContainerProperty) -->
      <Col :span="6" v-if="selectedComponent?.property">
        <Card
          class="h-[calc(80vh)] px-2 py-4"
          :body-style="{ padding: 0 }"
          :head-style="{ padding: 0, minHeight: '40px' }"
        >
          <!-- 组件名称 -->
          <template #title>
            <div class="flex h-8 items-center gap-1">
              <IconifyIcon :icon="selectedComponent?.icon" color="gray" />
              <span>{{ selectedComponent?.name }}</span>
            </div>
          </template>
          <div
            class="property mt-0 max-h-[calc(80vh-100px)] overflow-y-auto p-4"
          >
            <component
              :is="`${selectedComponent?.id}Property`"
              :key="selectedComponent?.uid || selectedComponent?.id"
              v-model="selectedComponent.property"
            />
          </div>
        </Card>
      </Col>
    </Row>
 
    <!-- 预览弹框 -->
    <PreviewModal title="预览" class="w-[700px]">
      <div class="flex justify-around">
        <iframe
          :src="previewUrl"
          class="h-[667px] w-96 rounded-lg border-4 border-solid p-0.5"
        ></iframe>
        <div class="flex flex-col">
          <div class="text-base">手机扫码预览</div>
          <QRCode :value="previewUrl" error-level="H" />
        </div>
      </div>
    </PreviewModal>
  </Page>
</template>