From ee1bd2b2b876cdcdc21fcf6b6866b8d14a4b11d7 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E5=A5=94=E8=B7=91=E7=9A=84=E9=9D=A2=E6=9D=A1?=
<1262327911@qq.com>
Date: Sat, 16 Dec 2023 21:26:16 +0800
Subject: [PATCH 1/7] =?UTF-8?q?fix:=20=E8=A7=A3=E5=86=B3=E9=AB=98=E7=89=88?=
=?UTF-8?q?=E6=9C=ACTS=E9=94=99=E8=AF=AF=E9=97=AE=E9=A2=98?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../components/Charts/Mores/Funnel/index.vue | 96 +++++----
.../components/Charts/Mores/Graph/index.vue | 3 +-
.../components/Charts/Mores/Heatmap/index.vue | 198 +++++++++---------
3 files changed, 157 insertions(+), 140 deletions(-)
diff --git a/src/packages/components/Charts/Mores/Funnel/index.vue b/src/packages/components/Charts/Mores/Funnel/index.vue
index 35ba86fd..7965a058 100644
--- a/src/packages/components/Charts/Mores/Funnel/index.vue
+++ b/src/packages/components/Charts/Mores/Funnel/index.vue
@@ -1,44 +1,52 @@
-
-
-
-
-
+
+
+
+
+
diff --git a/src/packages/components/Charts/Mores/Graph/index.vue b/src/packages/components/Charts/Mores/Graph/index.vue
index 378c968e..b0e49837 100644
--- a/src/packages/components/Charts/Mores/Graph/index.vue
+++ b/src/packages/components/Charts/Mores/Graph/index.vue
@@ -3,7 +3,7 @@
ref="vChartRef"
:init-options="initOptions"
:theme="themeColor"
- :option="option"
+ :option="(option as EChartsOption)"
:manual-update="isPreview()"
autoresize
>
@@ -12,6 +12,7 @@
+
+
+
+
+
From c0c68e8b5958e09e18c1af243eb1130885d8b991 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E5=A5=94=E8=B7=91=E7=9A=84=E9=9D=A2=E6=9D=A1?=
<1262327911@qq.com>
Date: Sat, 16 Dec 2023 21:43:45 +0800
Subject: [PATCH 2/7] =?UTF-8?q?perf:=20=E4=BC=98=E5=8C=96=E5=85=AC?=
=?UTF-8?q?=E5=85=B1=E6=8E=A5=E5=8F=A3=E6=9B=B4=E6=96=B0=E6=95=B0=E6=8D=AE?=
=?UTF-8?q?=E7=9A=84=E9=80=BB=E8=BE=91?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/hooks/useChartDataFetch.hook.ts | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/src/hooks/useChartDataFetch.hook.ts b/src/hooks/useChartDataFetch.hook.ts
index 5fc84554..8eb47d90 100644
--- a/src/hooks/useChartDataFetch.hook.ts
+++ b/src/hooks/useChartDataFetch.hook.ts
@@ -119,7 +119,10 @@ export const useChartDataFetch = (
if (isPreview()) {
targetComponent.request.requestDataType === RequestDataTypeEnum.Pond
- ? addGlobalDataInterface(targetComponent, useChartEditStore, updateCallback || echartsUpdateHandle)
+ ? addGlobalDataInterface(targetComponent, useChartEditStore, (newData: any) => {
+ echartsUpdateHandle(newData)
+ if (updateCallback) updateCallback(newData)
+ })
: requestIntervalFn()
} else {
requestIntervalFn()
From b5750246f161125c646842aec3f82bfe351e0ef4 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E5=A5=94=E8=B7=91=E7=9A=84=E9=9D=A2=E6=9D=A1?=
<1262327911@qq.com>
Date: Sat, 16 Dec 2023 21:44:12 +0800
Subject: [PATCH 3/7] =?UTF-8?q?fix:=20=E8=A7=A3=E5=86=B3=E9=A5=BC=E5=9B=BE?=
=?UTF-8?q?=E4=BC=9A=E8=87=AA=E5=8A=A8=E8=BD=AE=E6=92=AD=E7=9A=84=E9=97=AE?=
=?UTF-8?q?=E9=A2=98?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/packages/components/Charts/Pies/PieCommon/index.vue | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/src/packages/components/Charts/Pies/PieCommon/index.vue b/src/packages/components/Charts/Pies/PieCommon/index.vue
index a662df38..ecb4e673 100644
--- a/src/packages/components/Charts/Pies/PieCommon/index.vue
+++ b/src/packages/components/Charts/Pies/PieCommon/index.vue
@@ -134,7 +134,10 @@ watch(
)
const { vChartRef } = useChartDataFetch(props.chartConfig, useChartEditStore, (newData: typeof dataJson) => {
- addPieInterval(newData)
+ clearPieInterval()
+ if (props.chartConfig.option.isCarousel) {
+ addPieInterval(newData)
+ }
})
onMounted(() => {
From eb804cbb5f74922f832b7a4ff4ffb6af91d344a0 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E5=A5=94=E8=B7=91=E7=9A=84=E9=9D=A2=E6=9D=A1?=
<1262327911@qq.com>
Date: Sat, 16 Dec 2023 21:50:51 +0800
Subject: [PATCH 4/7] =?UTF-8?q?fix:=20=E8=A7=A3=E5=86=B3=E6=96=87=E6=9C=AC?=
=?UTF-8?q?=E7=BB=84=E4=BB=B6=E5=86=85=E8=BE=B9=E8=B7=9D=E9=A2=84=E8=A7=88?=
=?UTF-8?q?=E7=9A=84=E6=97=B6=E5=80=99=E4=BC=9A=E6=92=91=E5=BC=80=E7=9A=84?=
=?UTF-8?q?=E9=97=AE=E9=A2=98?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/packages/components/Informations/Texts/TextCommon/index.vue | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/packages/components/Informations/Texts/TextCommon/index.vue b/src/packages/components/Informations/Texts/TextCommon/index.vue
index 6732df8c..70c31f3b 100644
--- a/src/packages/components/Informations/Texts/TextCommon/index.vue
+++ b/src/packages/components/Informations/Texts/TextCommon/index.vue
@@ -70,6 +70,7 @@ const click = () => {
display: flex;
align-items: center;
justify-content: v-bind('textAlign');
+ overflow: hidden;
.content {
color: v-bind('fontColor');
From ce1a5476d63fa2264b53bf0d22b9c073ef94eda7 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E5=A5=94=E8=B7=91=E7=9A=84=E9=9D=A2=E6=9D=A1?=
<1262327911@qq.com>
Date: Sat, 16 Dec 2023 22:04:04 +0800
Subject: [PATCH 5/7] =?UTF-8?q?style:=20=E5=A2=9E=E5=BC=BA=E4=BB=A3?=
=?UTF-8?q?=E7=A0=81=E5=81=A5=E5=A3=AE=E6=80=A7?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/preview/wrapper.vue | 19 ++++++++++++-------
1 file changed, 12 insertions(+), 7 deletions(-)
diff --git a/src/views/preview/wrapper.vue b/src/views/preview/wrapper.vue
index ef1d4ca3..8bf03702 100644
--- a/src/views/preview/wrapper.vue
+++ b/src/views/preview/wrapper.vue
@@ -14,12 +14,17 @@ import Preview from './index.vue'
let key = ref(Date.now())
// 数据变更 -> 组件销毁重建
-;[SavePageEnum.JSON, SavePageEnum.CHART_TO_PREVIEW].forEach((saveEvent: string) => {
- if (!window.opener || !window.opener.addEventListener) return
- window.opener.addEventListener(saveEvent, async (e: any) => {
- const localStorageInfo: ChartEditStorageType = await getSessionStorageInfo() as unknown as ChartEditStorageType
- setSessionStorage(StorageEnum.GO_CHART_STORAGE_LIST, [{ ...e.detail, id: localStorageInfo.id }])
- key.value = Date.now()
+try {
+ const listenerArr = [SavePageEnum.JSON, SavePageEnum.CHART_TO_PREVIEW]
+ listenerArr.forEach((saveEvent: string) => {
+ if (!window.opener || !window.opener.addEventListener) return
+ window.opener.addEventListener(saveEvent, async (e: any) => {
+ const localStorageInfo: ChartEditStorageType = (await getSessionStorageInfo()) as unknown as ChartEditStorageType
+ setSessionStorage(StorageEnum.GO_CHART_STORAGE_LIST, [{ ...e.detail, id: localStorageInfo.id }])
+ key.value = Date.now()
+ })
})
-})
+} catch (error) {
+ console.log(error)
+}
From 4c7c5cf4ba232369b71e6f401f386ed8a95c7391 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E5=A5=94=E8=B7=91=E7=9A=84=E9=9D=A2=E6=9D=A1?=
<1262327911@qq.com>
Date: Sun, 17 Dec 2023 00:12:50 +0800
Subject: [PATCH 6/7] =?UTF-8?q?feat:=20iconify=E5=9B=BE=E6=A0=87=E6=96=B0?=
=?UTF-8?q?=E5=A2=9E=E7=A6=BB=E7=BA=BF=E5=8A=9F=E8=83=BD?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
package.json | 4 +-
pnpm-lock.yaml | 42 +++---
src/components/GoIconify/index.ts | 3 +
src/components/GoIconify/index.vue | 34 +++++
src/main.ts | 126 ++++++++++--------
.../components/Icons/Default/Icon/index.vue | 4 +-
.../components/ChartsItemBox/index.vue | 4 +-
.../components/ChartsSearch/index.vue | 4 +-
types/shims-vue.d.ts | 3 +-
vite.config.ts | 11 +-
10 files changed, 147 insertions(+), 88 deletions(-)
create mode 100644 src/components/GoIconify/index.ts
create mode 100644 src/components/GoIconify/index.vue
diff --git a/package.json b/package.json
index 3636ceb3..4ab857b3 100644
--- a/package.json
+++ b/package.json
@@ -16,6 +16,7 @@
"dependencies": {
"@amap/amap-jsapi-loader": "^1.0.1",
"@amap/amap-jsapi-types": "^0.0.8",
+ "@iconify/json": "^2.2.158",
"@types/color": "^3.0.3",
"@types/crypto-js": "^4.1.1",
"@types/keymaster": "^1.6.30",
@@ -32,6 +33,7 @@
"gsap": "^3.11.3",
"highlight.js": "^11.5.0",
"html2canvas": "^1.4.1",
+ "iconify-icon": "^1.0.8",
"keymaster": "^1.6.2",
"mitt": "^3.0.0",
"monaco-editor": "^0.33.0",
@@ -50,8 +52,6 @@
"devDependencies": {
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
- "@iconify/types": "^2.0.0",
- "@iconify/vue": "^4.1.1",
"@types/node": "^16.11.26",
"@types/three": "^0.144.0",
"@typescript-eslint/eslint-plugin": "^5.18.0",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 8d00e0ef..4cc6ff8c 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -11,6 +11,9 @@ dependencies:
'@amap/amap-jsapi-types':
specifier: ^0.0.8
version: 0.0.8
+ '@iconify/json':
+ specifier: ^2.2.158
+ version: 2.2.158
'@types/color':
specifier: ^3.0.3
version: 3.0.3
@@ -59,6 +62,9 @@ dependencies:
html2canvas:
specifier: ^1.4.1
version: 1.4.1
+ iconify-icon:
+ specifier: ^1.0.8
+ version: 1.0.8
keymaster:
specifier: ^1.6.2
version: 1.6.2
@@ -87,7 +93,7 @@ dependencies:
specifier: ^0.13.1
version: 0.13.1(vue@3.2.37)
vue-i18n:
- specifier: ^9.2.2
+ specifier: 9.2.2
version: 9.2.2(vue@3.2.37)
vue-router:
specifier: 4.0.12
@@ -109,12 +115,6 @@ devDependencies:
'@commitlint/config-conventional':
specifier: ^17.0.2
version: 17.0.2
- '@iconify/types':
- specifier: ^2.0.0
- version: 2.0.0
- '@iconify/vue':
- specifier: ^4.1.1
- version: 4.1.1(vue@3.2.37)
'@types/node':
specifier: ^16.11.26
version: 16.11.40
@@ -1122,18 +1122,16 @@ packages:
resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==}
dev: true
- /@iconify/types@2.0.0:
- resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==}
- dev: true
-
- /@iconify/vue@4.1.1(vue@3.2.37):
- resolution: {integrity: sha512-RL85Bm/DAe8y6rT6pux7D2FJSiUEM/TPfyK7GrbAOfTSwrhvwJW+S5yijdGcmtXouA8MtuH9C7l4hiSE4mLMjg==}
- peerDependencies:
- vue: '>=3'
+ /@iconify/json@2.2.158:
+ resolution: {integrity: sha512-6foGYcG97nmYpJ7N0MAbtfH7SKf7RvoOCYYSBi8gs+8qopXzplIP2F4lQiLrjpbPQihAoTercmGYWi4ABxLX1A==}
dependencies:
'@iconify/types': 2.0.0
- vue: 3.2.37
- dev: true
+ pathe: 1.1.1
+ dev: false
+
+ /@iconify/types@2.0.0:
+ resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==}
+ dev: false
/@intlify/core-base@9.2.2:
resolution: {integrity: sha512-JjUpQtNfn+joMbrXvpR4hTF8iJQ2sEFzzK3KIESOx+f+uwIjgw20igOyaIdhfsVVBCds8ZM64MoeNSx+PHQMkA==}
@@ -3668,6 +3666,12 @@ packages:
hasBin: true
dev: true
+ /iconify-icon@1.0.8:
+ resolution: {integrity: sha512-jvbUKHXf8EnGGArmhlP2IG8VqQLFFyTvTqb9LVL2TKTh7/eCCD1o2HHE9thpbJJb6B8hzhcFb6rOKhvo7reNKA==}
+ dependencies:
+ '@iconify/types': 2.0.0
+ dev: false
+
/iconv-lite@0.4.24:
resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==}
engines: {node: '>=0.10.0'}
@@ -4741,6 +4745,10 @@ packages:
engines: {node: '>=8'}
dev: true
+ /pathe@1.1.1:
+ resolution: {integrity: sha512-d+RQGp0MAYTIaDBIMmOfMwz3E+LOZnxx1HZd5R18mmCZY0QBlK0LDZfPc8FW8Ed2DlvsuE6PRjroDY+wg4+j/Q==}
+ dev: false
+
/picocolors@1.0.0:
resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
diff --git a/src/components/GoIconify/index.ts b/src/components/GoIconify/index.ts
new file mode 100644
index 00000000..a333d9a2
--- /dev/null
+++ b/src/components/GoIconify/index.ts
@@ -0,0 +1,3 @@
+import GoIconify from './index.vue';
+
+export { GoIconify };
diff --git a/src/components/GoIconify/index.vue b/src/components/GoIconify/index.vue
new file mode 100644
index 00000000..750b8267
--- /dev/null
+++ b/src/components/GoIconify/index.vue
@@ -0,0 +1,34 @@
+
+
+
+
+
diff --git a/src/main.ts b/src/main.ts
index 550bc63c..dcd249d4 100644
--- a/src/main.ts
+++ b/src/main.ts
@@ -1,59 +1,67 @@
-import { createApp } from 'vue'
-import App from './App.vue'
-import router, { setupRouter } from '@/router'
-import i18n from '@/i18n/index'
-import { setupStore } from '@/store'
-import { setupNaive, setupDirectives, setupCustomComponents, initFunction } from '@/plugins'
-import { GoAppProvider } from '@/components/GoAppProvider/index'
-import { setHtmlTheme } from '@/utils'
-
-// 引入全局样式
-import '@/styles/pages/index.scss'
-// 引入动画
-import 'animate.css/animate.min.css'
-// 引入标尺
-import 'vue3-sketch-ruler/lib/style.css'
-
-async function appInit() {
- const goAppProvider = createApp(GoAppProvider)
-
- const app = createApp(App)
-
- // 注册全局常用的 naive-ui 组件
- setupNaive(app)
-
- // 注册全局自定义指令
- setupDirectives(app)
-
- // 注册全局自定义组件
- setupCustomComponents(app)
-
- // 挂载状态管理
- setupStore(app)
-
- // 解决路由守卫,Axios中可使用,Dialog,Message 等全局组件
- goAppProvider.mount('#appProvider', true)
-
- // 挂载路由
- setupRouter(app)
-
- // 路由准备就绪后挂载APP实例
- await router.isReady()
-
- // Store 准备就绪后处理主题色
- setHtmlTheme()
-
- // 语言注册
- app.use(i18n)
-
- // 挂载到页面
- app.mount('#app', true)
-
- // 挂载到 window
- window['$vue'] = app
-}
-
-appInit().then(() => {
- initFunction()
-})
-
+import { createApp } from 'vue'
+import App from './App.vue'
+import router, { setupRouter } from '@/router'
+import i18n from '@/i18n/index'
+import { setupStore } from '@/store'
+import { setupNaive, setupDirectives, setupCustomComponents, initFunction } from '@/plugins'
+import { GoAppProvider } from '@/components/GoAppProvider/index'
+import { setHtmlTheme } from '@/utils'
+import { addCollection } from 'iconify-icon'
+import uimIcons from '@iconify/json/json/uim.json'
+import lineMdIcons from '@iconify/json/json/line-md.json'
+import wiIcons from '@iconify/json/json/wi.json'
+
+// 引入全局样式
+import '@/styles/pages/index.scss'
+// 引入动画
+import 'animate.css/animate.min.css'
+// 引入标尺
+import 'vue3-sketch-ruler/lib/style.css'
+// 注册图标
+addCollection(uimIcons)
+addCollection(lineMdIcons)
+addCollection(wiIcons)
+
+async function appInit() {
+ const goAppProvider = createApp(GoAppProvider)
+
+ const app = createApp(App)
+
+ // 注册全局常用的 naive-ui 组件
+ setupNaive(app)
+
+ // 注册全局自定义指令
+ setupDirectives(app)
+
+ // 注册全局自定义组件
+ setupCustomComponents(app)
+
+ // 挂载状态管理
+ setupStore(app)
+
+ // 解决路由守卫,Axios中可使用,Dialog,Message 等全局组件
+ goAppProvider.mount('#appProvider', true)
+
+ // 挂载路由
+ setupRouter(app)
+
+ // 路由准备就绪后挂载APP实例
+ await router.isReady()
+
+ // Store 准备就绪后处理主题色
+ setHtmlTheme()
+
+ // 语言注册
+ app.use(i18n)
+
+ // 挂载到页面
+ app.mount('#app', true)
+
+ // 挂载到 window
+ window['$vue'] = app
+}
+
+appInit().then(() => {
+ initFunction()
+})
+
diff --git a/src/packages/components/Icons/Default/Icon/index.vue b/src/packages/components/Icons/Default/Icon/index.vue
index 2c139a8a..cbfc81ae 100644
--- a/src/packages/components/Icons/Default/Icon/index.vue
+++ b/src/packages/components/Icons/Default/Icon/index.vue
@@ -1,13 +1,13 @@
-
+