1
0
mirror of https://github.com/PanJiaChen/vue-element-admin.git synced 2025-04-05 19:41:51 +08:00
This commit is contained in:
handsomewu 2024-11-14 13:56:10 +08:00
commit 326d4fd238
2 changed files with 158 additions and 82 deletions

View File

@ -1,7 +1,7 @@
<template> <template>
<div class="dashboard-editor-container"> <div v-loading="loading" class="dashboard-editor-container">
<el-button class="edit-yaml-button" type="primary" @click="openYamlEditorDialog">编辑 YAML</el-button> <el-button class="edit-yaml-button" type="primary" @click="openYamlEditorDialog">编辑 YAML</el-button>
<el-table :data="tableData" border style="width: 100%"> <el-table :data="tableData" border style="width: 100%" height="800">
<el-table-column prop="cluster" label="Cluster" /> <el-table-column prop="cluster" label="Cluster" />
<el-table-column prop="namespace" label="Namespace" /> <el-table-column prop="namespace" label="Namespace" />
<el-table-column prop="name" label="Name" /> <el-table-column prop="name" label="Name" />
@ -13,18 +13,9 @@
<el-table-column prop="age" label="Age" /> <el-table-column prop="age" label="Age" />
</el-table> </el-table>
<!-- YAML 编辑器弹框 --> <!-- YAML 编辑器弹框 -->
<el-dialog <el-dialog title="编辑 YAML" :visible.sync="yamlEditorVisible" width="50%" @close="closeYamlEditorDialog">
title="编辑 YAML"
:visible.sync="yamlEditorVisible"
width="50%"
@close="closeYamlEditorDialog"
>
<div class="editor-container"> <div class="editor-container">
<textarea <textarea v-model="yamlContent" style="width: 100%; height: 400px;" placeholder="编辑 YAML 内容" />
v-model="yamlContent"
style="width: 100%; height: 400px;"
placeholder="编辑 YAML 内容"
/>
</div> </div>
<span slot="footer" class="dialog-footer"> <span slot="footer" class="dialog-footer">
<el-button @click="closeYamlEditorDialog">取消</el-button> <el-button @click="closeYamlEditorDialog">取消</el-button>
@ -42,7 +33,8 @@ export default {
return { return {
tableData: [], // mounted tableData: [], // mounted
yamlEditorVisible: false, // YAML yamlEditorVisible: false, // YAML
yamlContent: '' // YAML yamlContent: '', // YAML
loading: false
} }
}, },
mounted() { mounted() {
@ -88,37 +80,81 @@ export default {
this.yamlEditorVisible = false this.yamlEditorVisible = false
}, },
saveYamlChanges() { saveYamlChanges() {
// YAML JSON
console.log('保存的 YAML 数据:', this.yamlContent) console.log('保存的 YAML 数据:', this.yamlContent)
this.closeYamlEditorDialog() // this.loading = true
fetch(API_URL + '/pod/deploy', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
yaml: this.yamlContent // YAML "yaml"
})
})
.then(response => {
console.log('meme')
if (!response.ok) {
throw new Error('请求失败,状态码: ' + response.status)
}
return response.json() // JSON
})
.then(data => {
//
console.log('后端响应数据:', data)
if (!data.error) {
console.log('部署输出:', data.stdout)
this.$notify({
title: '调度成功',
message: '该应用已被调度到集群' + data.dst + '上\n' + data.stdout,
type: 'success'
})
} else if (data.error) {
console.error('部署错误:', data.error)
this.$notify.error({
title: '调度失败',
message: '调度失败'
})
}
this.fetchTableData()
this.loading = false
})
.catch(error => {
//
console.error('请求出错:', error)
})
.finally(() => {
this.closeYamlEditorDialog() //
})
} }
} }
} }
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.dashboard-editor-container { .dashboard-editor-container {
padding: 32px; padding: 32px;
background-color: rgb(240, 242, 245); background-color: rgb(240, 242, 245);
position: relative; position: relative;
.github-corner { .github-corner {
position: absolute; position: absolute;
top: 0px; top: 0px;
border: 0; border: 0;
right: 0; right: 0;
}
.chart-wrapper {
background: #fff;
padding: 16px 16px 0;
margin-bottom: 32px;
}
} }
@media (max-width:1024px) { .chart-wrapper {
.chart-wrapper { background: #fff;
padding: 8px; padding: 16px 16px 0;
} margin-bottom: 32px;
} }
</style> }
@media (max-width:1024px) {
.chart-wrapper {
padding: 8px;
}
}
</style>

View File

@ -16,18 +16,12 @@
</el-table> </el-table>
<!-- YAML 编辑器弹框 --> <!-- YAML 编辑器弹框 -->
<el-dialog <el-dialog title="编辑 YAML" :visible.sync="yamlEditorVisible" width="50%" @close="closeYamlEditorDialog">
title="编辑 YAML" <el-select v-model="value" placeholder="请选择">
:visible.sync="yamlEditorVisible" <el-option v-for="item in ['a','b']" :key="item" :label="item" :value="item" />
width="50%" </el-select>
@close="closeYamlEditorDialog"
>
<div class="editor-container"> <div class="editor-container">
<textarea <textarea v-model="yamlContent" style="width: 100%; height: 400px;" placeholder="编辑 YAML 内容" />
v-model="yamlContent"
style="width: 100%; height: 400px;"
placeholder="编辑 YAML 内容"
/>
</div> </div>
<span slot="footer" class="dialog-footer"> <span slot="footer" class="dialog-footer">
<el-button @click="closeYamlEditorDialog">取消</el-button> <el-button @click="closeYamlEditorDialog">取消</el-button>
@ -46,7 +40,9 @@ export default {
return { return {
tableData: [], // mounted tableData: [], // mounted
yamlEditorVisible: false, // YAML yamlEditorVisible: false, // YAML
yamlContent: '' // YAML yamlContent: '', // YAML
loading: false,
value: ''
} }
}, },
mounted() { mounted() {
@ -94,47 +90,91 @@ export default {
this.yamlEditorVisible = false this.yamlEditorVisible = false
}, },
saveYamlChanges() { saveYamlChanges() {
// YAML JSON
console.log('保存的 YAML 数据:', this.yamlContent) console.log('保存的 YAML 数据:', this.yamlContent)
this.closeYamlEditorDialog() // console.log(this.value)
this.loading = true
fetch(API_URL + '/service/deploy', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
dst: this.value,
yaml: this.yamlContent // YAML "yaml"
})
})
.then(response => {
if (!response.ok) {
throw new Error('请求失败,状态码: ' + response.status)
}
return response.json() // JSON
})
.then(data => {
//
console.log('后端响应数据:', data)
if (!data.error) {
console.log('部署输出:', data.stdout)
this.$notify({
title: '调度成功',
message: '该服务已被部署到集群' + this.value + '上\n' + data.stdout,
type: 'success'
})
} else if (data.error) {
console.error('部署错误:', data.error)
this.$notify.error({
title: '调度失败',
message: '调度失败'
})
}
this.fetchTableData()
this.loading = false
})
.catch(error => {
//
console.error('请求出错:', error)
})
.finally(() => {
this.closeYamlEditorDialog() //
})
} }
} }
} }
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.dashboard-editor-container { .dashboard-editor-container {
padding: 32px; padding: 32px;
background-color: rgb(240, 242, 245); background-color: rgb(240, 242, 245);
position: relative; position: relative;
.edit-yaml-button { .edit-yaml-button {
top: 16px; top: 16px;
left: 16px; left: 16px;
}
.github-corner {
position: absolute;
top: 0px;
border: 0;
right: 0;
}
.chart-wrapper {
background: #fff;
padding: 16px 16px 0;
margin-bottom: 32px;
}
} }
.editor-container { .github-corner {
position: relative; position: absolute;
height: 100%; top: 0px;
border: 0;
right: 0;
} }
@media (max-width:1024px) { .chart-wrapper {
.chart-wrapper { background: #fff;
padding: 8px; padding: 16px 16px 0;
} margin-bottom: 32px;
} }
</style> }
.editor-container {
position: relative;
height: 100%;
}
@media (max-width:1024px) {
.chart-wrapper {
padding: 8px;
}
}
</style>