460 lines
16 KiB
Vue
460 lines
16 KiB
Vue
<template>
|
|
<div class="app-container">
|
|
<div class="filter-container">
|
|
<!--<el-input v-model="listQuery.name" placeholder="Server 名称" style="width: 200px;" class="filter-item" />-->
|
|
<el-select v-model="listQuery.clusterId" placeholder="所属集群" class="filter-item">
|
|
<el-option key="" label="所属集群" value="" />
|
|
<el-option key="-1" label="单机" value="-1" />
|
|
<el-option v-for="item in canalClusters" :key="item.id" :label="item.name" :value="item.id" />
|
|
</el-select>
|
|
<el-input v-model="listQuery.ip" placeholder="Server IP" style="width: 200px;" class="filter-item" />
|
|
<el-button class="filter-item" type="primary" icon="el-icon-search" plain @click="queryData()">查询</el-button>
|
|
<el-button class="filter-item" type="primary" @click="handleCreate()">新建Server</el-button>
|
|
<el-button class="filter-item" type="info" @click="fetchData()">刷新列表</el-button>
|
|
</div>
|
|
<el-table
|
|
v-loading="listLoading"
|
|
:data="list"
|
|
element-loading-text="Loading"
|
|
border
|
|
fit
|
|
highlight-current-row
|
|
>
|
|
<el-table-column label="所属集群" min-width="200" align="center">
|
|
<template slot-scope="scope">
|
|
<span v-if="scope.row.canalCluster !== null">
|
|
{{ scope.row.canalCluster.name }}
|
|
</span>
|
|
<span v-else>
|
|
-
|
|
</span>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="Server 名称" min-width="200" align="center">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.name }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="Server IP" min-width="200" align="center">
|
|
<template slot-scope="scope">
|
|
<span>{{ scope.row.ip }}</span>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="admin 端口" min-width="100" align="center">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.adminPort }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="tcp 端口" min-width="100" align="center">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.tcpPort }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="metric 端口" min-width="100" align="center">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.metricPort }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column class-name="status-col" label="状态" min-width="150" align="center">
|
|
<template slot-scope="scope">
|
|
<el-tag :type="scope.row.status | statusFilter">{{ scope.row.status | statusLabel }}</el-tag>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column align="center" prop="created_at" label="操作" min-width="150">
|
|
<template slot-scope="scope">
|
|
<el-dropdown trigger="click">
|
|
<el-button type="primary" size="mini">
|
|
操作<i class="el-icon-arrow-down el-icon--right" />
|
|
</el-button>
|
|
<el-dropdown-menu slot="dropdown">
|
|
<el-dropdown-item @click.native="handleConfig(scope.row)">配置</el-dropdown-item>
|
|
<el-dropdown-item @click.native="handleUpdate(scope.row)">修改</el-dropdown-item>
|
|
<el-dropdown-item @click.native="handleDelete(scope.row)">删除</el-dropdown-item>
|
|
<el-dropdown-item @click.native="handleStart(scope.row)">启动</el-dropdown-item>
|
|
<el-dropdown-item @click.native="handleStop(scope.row)">停止</el-dropdown-item>
|
|
<el-dropdown-item @click.native="handleInstances(scope.row)">详情</el-dropdown-item>
|
|
<el-dropdown-item @click.native="handleLog(scope.row)">日志</el-dropdown-item>
|
|
</el-dropdown-menu>
|
|
</el-dropdown>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
<pagination v-show="count>0" :total="count" :page.sync="listQuery.page" :limit.sync="listQuery.size" @pagination="fetchData()" />
|
|
<el-dialog :visible.sync="dialogFormVisible" :title="textMap[dialogStatus]" width="600px">
|
|
<el-form ref="dataForm" :rules="rules" :model="nodeModel" label-position="left" label-width="120px" style="width: 400px; margin-left:30px;">
|
|
<el-form-item label="所属集群" prop="clusterId">
|
|
<el-select v-if="dialogStatus === 'create'" v-model="nodeModel.clusterId" placeholder="选择所属集群">
|
|
<el-option key="" label="单机" value="" />
|
|
<el-option v-for="item in canalClusters" :key="item.id" :label="item.name" :value="item.id" />
|
|
</el-select>
|
|
<el-select v-else v-model="nodeModel.clusterId" placeholder="选择所属集群" disabled="disabled">
|
|
<el-option key="" label="单机" value="" />
|
|
<el-option v-for="item in canalClusters" :key="item.id" :label="item.name" :value="item.id" />
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item label="Server 名称" prop="name">
|
|
<el-input v-model="nodeModel.name" />
|
|
</el-form-item>
|
|
<el-form-item label="Server IP" prop="ip">
|
|
<el-input v-model="nodeModel.ip" />
|
|
</el-form-item>
|
|
<el-form-item label="admin 端口" prop="adminPort">
|
|
<el-input v-model="nodeModel.adminPort" placeholder="11110" type="number" />
|
|
</el-form-item>
|
|
<el-form-item label="tcp 端口" prop="tcpPort">
|
|
<el-input v-model="nodeModel.tcpPort" placeholder="11111" type="number" />
|
|
</el-form-item>
|
|
<el-form-item label="metric 端口" prop="metricPort">
|
|
<el-input v-model="nodeModel.metricPort" placeholder="11112" type="number" />
|
|
</el-form-item>
|
|
</el-form>
|
|
<div slot="footer" class="dialog-footer">
|
|
<el-button @click="dialogFormVisible = false">取消</el-button>
|
|
<el-button type="primary" @click="dataOperation()">确定</el-button>
|
|
</div>
|
|
</el-dialog>
|
|
<el-dialog :visible.sync="dialogInstances" title="instance 列表" width="800px">
|
|
<div class="filter-container">
|
|
<el-button class="filter-item" type="info" @click="activeInstances()">刷新列表</el-button>
|
|
</div>
|
|
<el-table
|
|
v-loading="listLoading2"
|
|
:data="instanceList"
|
|
element-loading-text="Loading"
|
|
border
|
|
fit
|
|
highlight-current-row
|
|
>
|
|
<el-table-column label="Instance 名称" min-width="200" align="center">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.name }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="状态" min-width="200" align="center">
|
|
<template slot-scope="scope">
|
|
<el-tag :type="scope.row.runningStatus | statusFilter">{{ scope.row.runningStatus | statusLabel }}</el-tag>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="操作" min-width="200" align="center">
|
|
<template slot-scope="scope">
|
|
<el-dropdown trigger="click">
|
|
<el-button type="primary" size="mini">
|
|
操作<i class="el-icon-arrow-down el-icon--right" />
|
|
</el-button>
|
|
<el-dropdown-menu slot="dropdown">
|
|
<el-dropdown-item @click.native="handleStartInstance(scope.row)">启动</el-dropdown-item>
|
|
<el-dropdown-item @click.native="handleStopInstance(scope.row)">停止</el-dropdown-item>
|
|
</el-dropdown-menu>
|
|
</el-dropdown>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
</el-dialog>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { addNodeServer, getNodeServers, updateNodeServer, deleteNodeServer, startNodeServer, stopNodeServer } from '@/api/nodeServer'
|
|
import { getActiveInstances, stopInstance, startInstance } from '@/api/canalInstance'
|
|
import { getCanalClusters } from '@/api/canalCluster'
|
|
import Pagination from '@/components/Pagination'
|
|
|
|
export default {
|
|
components: { Pagination },
|
|
filters: {
|
|
statusFilter(status) {
|
|
const statusMap = {
|
|
'1': 'success',
|
|
'0': 'gray',
|
|
'-1': 'danger'
|
|
}
|
|
return statusMap[status]
|
|
},
|
|
statusLabel(status) {
|
|
const statusMap = {
|
|
'1': '启动',
|
|
'0': '停止',
|
|
'-1': '断开'
|
|
}
|
|
return statusMap[status]
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
list: null,
|
|
instanceList: null,
|
|
listLoading: true,
|
|
listLoading2: true,
|
|
serverIdTmp: null,
|
|
canalClusters: [],
|
|
count: 0,
|
|
listQuery: {
|
|
name: '',
|
|
ip: '',
|
|
clusterId: null,
|
|
page: 1,
|
|
size: 20
|
|
},
|
|
dialogFormVisible: false,
|
|
dialogInstances: false,
|
|
textMap: {
|
|
create: '新建Server信息',
|
|
update: '修改Server信息'
|
|
},
|
|
nodeModel: {
|
|
id: undefined,
|
|
clusterId: null,
|
|
name: null,
|
|
ip: null,
|
|
adminPort: 11110,
|
|
tcpPort: 11111,
|
|
metricPort: 11112
|
|
},
|
|
rules: {
|
|
name: [{ required: true, message: 'Server 名称不能为空', trigger: 'change' }],
|
|
ip: [{ required: true, message: 'Server IP不能为空', trigger: 'change' }],
|
|
adminPort: [{ required: true, message: 'Server admin端口不能为空', trigger: 'change' }]
|
|
},
|
|
dialogStatus: 'create'
|
|
}
|
|
},
|
|
// { min: 2, max: 5, message: '长度在 2 到 5 个字符', trigger: 'change' }
|
|
created() {
|
|
getCanalClusters().then((res) => {
|
|
this.canalClusters = res.data
|
|
})
|
|
if (this.$route.query.clusterId) {
|
|
try {
|
|
this.listQuery.clusterId = Number(this.$route.query.clusterId)
|
|
} catch (e) {
|
|
console.log(e)
|
|
}
|
|
}
|
|
this.fetchData()
|
|
},
|
|
methods: {
|
|
fetchData() {
|
|
this.listLoading = true
|
|
getNodeServers(this.listQuery).then(res => {
|
|
this.list = res.data.items
|
|
this.count = res.data.count
|
|
}).finally(() => {
|
|
this.listLoading = false
|
|
})
|
|
},
|
|
queryData() {
|
|
this.listQuery.page = 1
|
|
this.fetchData()
|
|
},
|
|
resetModel() {
|
|
this.nodeModel = {
|
|
id: undefined,
|
|
clusterId: null,
|
|
name: null,
|
|
ip: null,
|
|
adminPort: null,
|
|
tcpPort: null,
|
|
metricPort: null
|
|
}
|
|
},
|
|
handleCreate() {
|
|
this.resetModel()
|
|
this.dialogStatus = 'create'
|
|
this.dialogFormVisible = true
|
|
this.$nextTick(() => {
|
|
this.$refs['dataForm'].clearValidate()
|
|
})
|
|
},
|
|
handleInstances(row) {
|
|
this.serverIdTmp = row.id
|
|
this.activeInstances()
|
|
},
|
|
activeInstances() {
|
|
this.listLoading2 = true
|
|
this.dialogInstances = true
|
|
getActiveInstances(this.serverIdTmp).then(res => {
|
|
this.instanceList = res.data
|
|
}).finally(() => {
|
|
this.listLoading2 = false
|
|
})
|
|
},
|
|
dataOperation() {
|
|
this.$refs['dataForm'].validate((valid) => {
|
|
if (valid) {
|
|
if (this.dialogStatus === 'create') {
|
|
addNodeServer(this.nodeModel).then(res => {
|
|
this.operationRes(res)
|
|
})
|
|
}
|
|
if (this.dialogStatus === 'update') {
|
|
updateNodeServer(this.nodeModel).then(res => {
|
|
this.operationRes(res)
|
|
})
|
|
}
|
|
}
|
|
})
|
|
},
|
|
operationRes(res) {
|
|
if (res.data === 'success') {
|
|
this.fetchData()
|
|
this.dialogFormVisible = false
|
|
this.$message({
|
|
message: this.textMap[this.dialogStatus] + '成功',
|
|
type: 'success'
|
|
})
|
|
} else {
|
|
this.$message({
|
|
message: this.textMap[this.dialogStatus] + '失败',
|
|
type: 'error'
|
|
})
|
|
}
|
|
},
|
|
handleConfig(row) {
|
|
if (row.canalCluster !== null) {
|
|
this.$message({ message: '集群模式Server不允许单独变更配置,请在集群配置变更', type: 'error' })
|
|
return
|
|
}
|
|
this.$router.push('/canalServer/nodeServer/config?serverId=' + row.id)
|
|
},
|
|
handleUpdate(row) {
|
|
this.resetModel()
|
|
this.nodeModel = Object.assign({}, row)
|
|
this.dialogStatus = 'update'
|
|
this.dialogFormVisible = true
|
|
this.$nextTick(() => {
|
|
this.$refs['dataForm'].clearValidate()
|
|
})
|
|
},
|
|
handleDelete(row) {
|
|
this.$confirm('删除Server信息会导致节点服务停止', '确定删除Server信息', {
|
|
confirmButtonText: '确定',
|
|
cancelButtonText: '取消',
|
|
type: 'warning'
|
|
}).then(() => {
|
|
deleteNodeServer(row.id).then((res) => {
|
|
if (res.data === 'success') {
|
|
this.fetchData()
|
|
this.$message({
|
|
message: '删除Server信息成功',
|
|
type: 'success'
|
|
})
|
|
} else {
|
|
this.$message({
|
|
message: '删除Server信息失败',
|
|
type: 'error'
|
|
})
|
|
}
|
|
})
|
|
})
|
|
},
|
|
handleStart(row) {
|
|
if (row.status !== '0') {
|
|
this.$message({ message: '当前Server不是停止状态,无法启动', type: 'error' })
|
|
return
|
|
}
|
|
this.$confirm('启动Server服务', '确定启动Server服务', {
|
|
confirmButtonText: '确定',
|
|
cancelButtonText: '取消',
|
|
type: 'warning'
|
|
}).then(() => {
|
|
startNodeServer(row.id).then((res) => {
|
|
if (res.data) {
|
|
this.fetchData()
|
|
this.$message({
|
|
message: '启动成功',
|
|
type: 'success'
|
|
})
|
|
} else {
|
|
this.$message({
|
|
message: '启动Server服务出现异常',
|
|
type: 'error'
|
|
})
|
|
}
|
|
})
|
|
})
|
|
},
|
|
handleStop(row) {
|
|
if (row.status !== '1') {
|
|
this.$message({ message: '当前Server不是启动状态,无法停止', type: 'error' })
|
|
return
|
|
}
|
|
this.$confirm('停止Server服务会导致所有Instance都停止服务', '确定停止Server服务', {
|
|
confirmButtonText: '确定',
|
|
cancelButtonText: '取消',
|
|
type: 'warning'
|
|
}).then(() => {
|
|
stopNodeServer(row.id).then((res) => {
|
|
if (res.data) {
|
|
this.fetchData()
|
|
this.$message({
|
|
message: '停止成功',
|
|
type: 'success'
|
|
})
|
|
} else {
|
|
this.$message({
|
|
message: '停止Server服务出现异常',
|
|
type: 'error'
|
|
})
|
|
}
|
|
})
|
|
})
|
|
},
|
|
handleLog(row) {
|
|
this.$router.push('nodeServer/log?id=' + row.id)
|
|
},
|
|
handleStartInstance(row) {
|
|
if (row.runningStatus !== '0') {
|
|
this.$message({ message: '当前Instance不是停止状态,无法启动', type: 'error' })
|
|
return
|
|
}
|
|
this.$confirm('启动Instance服务', '确定启动Instance服务', {
|
|
confirmButtonText: '确定',
|
|
cancelButtonText: '取消',
|
|
type: 'warning'
|
|
}).then(() => {
|
|
startInstance(row.id, this.serverIdTmp).then((res) => {
|
|
if (res.data) {
|
|
this.activeInstances()
|
|
this.$message({
|
|
message: '启动成功, 稍后请刷新列表查看状态',
|
|
type: 'success'
|
|
})
|
|
} else {
|
|
this.$message({
|
|
message: '启动Instance服务出现异常',
|
|
type: 'error'
|
|
})
|
|
}
|
|
})
|
|
})
|
|
},
|
|
handleStopInstance(row) {
|
|
if (row.runningStatus !== '1') {
|
|
this.$message({ message: '当前Instance不是运行状态,无法停止', type: 'error' })
|
|
return
|
|
}
|
|
this.$confirm('集群模式下停止实例其它主机将会抢占执行该实例', '停止 Instance 服务', {
|
|
confirmButtonText: '确定',
|
|
cancelButtonText: '取消',
|
|
type: 'warning'
|
|
}).then(() => {
|
|
stopInstance(row.id, this.serverIdTmp).then((res) => {
|
|
if (res.data) {
|
|
this.activeInstances()
|
|
this.$message({
|
|
message: '停止成功, 稍后请刷新列表查看状态',
|
|
type: 'success'
|
|
})
|
|
} else {
|
|
this.$message({
|
|
message: '停止Instance服务出现异常',
|
|
type: 'error'
|
|
})
|
|
}
|
|
})
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</script>
|