From 0775a815107ffee638bb746d7f60daa7c05674ab Mon Sep 17 00:00:00 2001
From: handsomewu <562390063@qq.com>
Date: Thu, 14 Nov 2024 00:23:58 +0800
Subject: [PATCH] add yaml editor in pod and service deploy page
---
package.json | 1 +
src/views/deploy/app.vue | 37 +++++++++++++++++++++++-
src/views/deploy/service.vue | 55 +++++++++++++++++++++++++++++++++++-
3 files changed, 91 insertions(+), 2 deletions(-)
diff --git a/package.json b/package.json
index 57912ffe..aaa3fd66 100644
--- a/package.json
+++ b/package.json
@@ -26,6 +26,7 @@
"file-saver": "2.0.1",
"fuse.js": "3.4.4",
"js-cookie": "2.2.0",
+ "js-yaml": "^4.1.0",
"jsonlint": "1.6.3",
"jszip": "3.2.1",
"normalize.css": "7.0.0",
diff --git a/src/views/deploy/app.vue b/src/views/deploy/app.vue
index e086cd00..8ead89db 100644
--- a/src/views/deploy/app.vue
+++ b/src/views/deploy/app.vue
@@ -1,5 +1,6 @@
+
编辑 YAML
@@ -11,6 +12,25 @@
+
+
+
+
+
+
+
@@ -20,7 +40,9 @@ export default {
name: 'DashboardAdmin',
data() {
return {
- tableData: [] // 初始为空数组,将在 mounted 时获取数据
+ tableData: [], // 初始为空数组,将在 mounted 时获取数据
+ yamlEditorVisible: false, // 控制 YAML 编辑器弹框的显示
+ yamlContent: '' // YAML 编辑器中的内容
}
},
mounted() {
@@ -56,6 +78,19 @@ export default {
}))
})
.catch(error => console.error('Error fetching table data:', error))
+ },
+ openYamlEditorDialog() {
+ // 打开 YAML 编辑器弹框
+ this.yamlEditorVisible = true
+ },
+ closeYamlEditorDialog() {
+ // 关闭 YAML 编辑器弹框
+ this.yamlEditorVisible = false
+ },
+ saveYamlChanges() {
+ // 保存 YAML 数据,无需转换为 JSON
+ console.log('保存的 YAML 数据:', this.yamlContent)
+ this.closeYamlEditorDialog() // 关闭弹框
}
}
}
diff --git a/src/views/deploy/service.vue b/src/views/deploy/service.vue
index 34b03095..41f013a4 100644
--- a/src/views/deploy/service.vue
+++ b/src/views/deploy/service.vue
@@ -1,5 +1,9 @@
+
+
编辑 YAML
+
+
@@ -10,16 +14,39 @@
+
+
+
+
+
+
+
+