AppLinkSelectDialog.vue 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  1. <template>
  2. <Dialog v-model="dialogVisible" title="选择链接" width="65%">
  3. <div class="h-500px flex gap-8px">
  4. <!-- 左侧分组列表 -->
  5. <el-scrollbar wrap-class="h-full" ref="groupScrollbar" view-class="flex flex-col">
  6. <el-button
  7. v-for="(group, groupIndex) in APP_LINK_GROUP_LIST"
  8. :key="groupIndex"
  9. :class="[
  10. 'm-r-16px m-l-0px! justify-start! w-90px',
  11. { active: activeGroup === group.name }
  12. ]"
  13. ref="groupBtnRefs"
  14. :text="activeGroup !== group.name"
  15. :type="activeGroup === group.name ? 'primary' : 'default'"
  16. @click="handleGroupSelected(group.name)"
  17. >
  18. {{ group.name }}
  19. </el-button>
  20. </el-scrollbar>
  21. <!-- 右侧链接列表 -->
  22. <el-scrollbar class="h-full flex-1" @scroll="handleScroll" ref="linkScrollbar">
  23. <div v-for="(group, groupIndex) in APP_LINK_GROUP_LIST" :key="groupIndex">
  24. <!-- 分组标题 -->
  25. <div class="font-bold" ref="groupTitleRefs">{{ group.name }}</div>
  26. <!-- 链接列表 -->
  27. <el-tooltip
  28. v-for="(appLink, appLinkIndex) in group.links"
  29. :key="appLinkIndex"
  30. :content="appLink.path"
  31. placement="bottom"
  32. >
  33. <el-button
  34. class="m-b-8px m-r-8px m-l-0px!"
  35. :type="isSameLink(appLink.path, activeAppLink) ? 'primary' : 'default'"
  36. @click="handleAppLinkSelected(appLink)"
  37. >
  38. {{ appLink.name }}
  39. </el-button>
  40. </el-tooltip>
  41. </div>
  42. </el-scrollbar>
  43. </div>
  44. <!-- 底部对话框操作按钮 -->
  45. <template #footer>
  46. <el-button type="primary" @click="handleSubmit">确 定</el-button>
  47. <el-button @click="dialogVisible = false">取 消</el-button>
  48. </template>
  49. </Dialog>
  50. <Dialog v-model="detailSelectDialog.visible" title="" width="50%">
  51. <el-form class="min-h-200px">
  52. <el-form-item
  53. label="选择分类"
  54. v-if="detailSelectDialog.type === APP_LINK_TYPE_ENUM.PRODUCT_CATEGORY_LIST"
  55. >
  56. <ProductCategorySelect
  57. v-model="detailSelectDialog.id"
  58. :parent-id="0"
  59. @update:model-value="handleProductCategorySelected"
  60. />
  61. </el-form-item>
  62. </el-form>
  63. </Dialog>
  64. </template>
  65. <script lang="ts" setup>
  66. import { APP_LINK_GROUP_LIST, APP_LINK_TYPE_ENUM } from './data'
  67. import { ButtonInstance, ScrollbarInstance } from 'element-plus'
  68. import { split } from 'lodash-es'
  69. import ProductCategorySelect from '@/views/mall/product/category/components/ProductCategorySelect.vue'
  70. import { getUrlNumberValue } from '@/utils'
  71. // APP 链接选择弹框
  72. defineOptions({ name: 'AppLinkSelectDialog' })
  73. // 选中的分组,默认选中第一个
  74. const activeGroup = ref(APP_LINK_GROUP_LIST[0].name)
  75. // 选中的 APP 链接
  76. const activeAppLink = ref('')
  77. /** 打开弹窗 */
  78. const dialogVisible = ref(false)
  79. const open = (link: string) => {
  80. activeAppLink.value = link
  81. dialogVisible.value = true
  82. // 滚动到当前的链接
  83. const group = APP_LINK_GROUP_LIST.find((group) =>
  84. group.links.some((linkItem) => isSameLink(linkItem.path, link))
  85. )
  86. if (group) {
  87. // 使用 nextTick 的原因:可能 Dom 还没生成,导致滚动失败
  88. nextTick(() => handleGroupSelected(group.name))
  89. }
  90. }
  91. defineExpose({ open })
  92. // 处理 APP 链接选中
  93. const handleAppLinkSelected = (appLink: any) => {
  94. if (!isSameLink(appLink.path, activeAppLink.value)) {
  95. activeAppLink.value = appLink.path
  96. }
  97. switch (appLink.type) {
  98. case APP_LINK_TYPE_ENUM.PRODUCT_CATEGORY_LIST:
  99. detailSelectDialog.value.visible = true
  100. detailSelectDialog.value.type = appLink.type
  101. // 返显
  102. detailSelectDialog.value.id =
  103. getUrlNumberValue('id', 'http://127.0.0.1' + activeAppLink.value) || undefined
  104. break
  105. default:
  106. break
  107. }
  108. }
  109. // 处理绑定值更新
  110. const emit = defineEmits<{
  111. change: [link: string]
  112. }>()
  113. const handleSubmit = () => {
  114. dialogVisible.value = false
  115. emit('change', activeAppLink.value)
  116. }
  117. // 分组标题引用列表
  118. const groupTitleRefs = ref<HTMLInputElement[]>([])
  119. /**
  120. * 处理右侧链接列表滚动
  121. * @param scrollTop 滚动条的位置
  122. */
  123. const handleScroll = ({ scrollTop }: { scrollTop: number }) => {
  124. const titleEl = groupTitleRefs.value.find((titleEl) => {
  125. // 获取标题的位置信息
  126. const { offsetHeight, offsetTop } = titleEl
  127. // 判断标题是否在可视范围内
  128. return scrollTop >= offsetTop && scrollTop < offsetTop + offsetHeight
  129. })
  130. // 只需处理一次
  131. if (titleEl && activeGroup.value !== titleEl.textContent) {
  132. activeGroup.value = titleEl.textContent || ''
  133. // 同步左侧的滚动条位置
  134. scrollToGroupBtn(activeGroup.value)
  135. }
  136. }
  137. // 右侧滚动条
  138. const linkScrollbar = ref<ScrollbarInstance>()
  139. // 处理分组选中
  140. const handleGroupSelected = (group: string) => {
  141. activeGroup.value = group
  142. const titleRef = groupTitleRefs.value.find((item) => item.textContent === group)
  143. if (titleRef) {
  144. // 滚动分组标题
  145. linkScrollbar.value?.setScrollTop(titleRef.offsetTop)
  146. }
  147. }
  148. // 分组滚动条
  149. const groupScrollbar = ref<ScrollbarInstance>()
  150. // 分组引用列表
  151. const groupBtnRefs = ref<ButtonInstance[]>([])
  152. // 自动滚动分组按钮,确保分组按钮保持在可视区域内
  153. const scrollToGroupBtn = (group: string) => {
  154. const groupBtn = groupBtnRefs.value
  155. .map((btn) => btn['ref'])
  156. .find((ref) => ref.textContent === group)
  157. if (groupBtn) {
  158. groupScrollbar.value?.setScrollTop(groupBtn.offsetTop)
  159. }
  160. }
  161. // 是否为相同的链接(不比较参数,只比较链接)
  162. const isSameLink = (link1: string, link2: string) => {
  163. return split(link1, '?', 1)[0] === split(link2, '?', 1)[0]
  164. }
  165. // 详情选择对话框
  166. const detailSelectDialog = ref<{
  167. visible: boolean
  168. id?: number
  169. type?: APP_LINK_TYPE_ENUM
  170. }>({
  171. visible: false,
  172. id: undefined,
  173. type: undefined
  174. })
  175. // 处理详情选择
  176. const handleProductCategorySelected = (id: number) => {
  177. const url = new URL(activeAppLink.value, 'http://127.0.0.1')
  178. // 修改 id 参数
  179. url.searchParams.set('id', `${id}`)
  180. // 排除域名
  181. activeAppLink.value = `${url.pathname}${url.search}`
  182. // 关闭对话框
  183. detailSelectDialog.value.visible = false
  184. // 重置 id
  185. detailSelectDialog.value.id = undefined
  186. }
  187. </script>
  188. <style lang="scss" scoped></style>