blob: 6813c43578ea5d0422faa010f899ba448c880ba8 [file] [log] [blame]
<!--
- Licensed to the Apache Software Foundation (ASF) under one or more
- contributor license agreements. See the NOTICE file distributed with
- this work for additional information regarding copyright ownership.
- The ASF licenses this file to You under the Apache License, Version 2.0
- (the "License"); you may not use this file except in compliance with
- the License. You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
-->
<template>
<el-row class="box-card">
<div class="btn-group" style="">
<el-autocomplete
:placeholder="$t('historyTrace.searchForm.jobName')"
:fetch-suggestions="fetchJobNameSuggestions"
v-model="searchForm.jobName"
clearable>
</el-autocomplete>
<el-autocomplete
:placeholder="$t('historyTrace.searchForm.serverIp')"
:fetch-suggestions="fetchIpSuggestions"
v-model="searchForm.ip"
clearable>
</el-autocomplete>
<el-date-picker
:placeholder="$t('historyTrace.searchForm.startTime')"
v-model="searchForm.start"
type="datetime"
clearable>
</el-date-picker>
<el-date-picker
:placeholder="$t('historyTrace.searchForm.CompleteTime')"
v-model="searchForm.end"
type="datetime"
clearable>
</el-date-picker>
<el-select
:placeholder="$t('historyTrace.searchForm.executeResult')"
v-model="searchForm.isSuccess"
clearable>
<el-option
v-for="item in executeResultItems"
:key="item.value"
:label="item.label"
:value="item.value">
</el-option>
</el-select>
<el-button
icon="el-icon-search"
@click="getJobTrace"
></el-button>
</div>
<div class="table-wrap">
<el-table :data="tableData" border style="width: 100%">
<el-table-column
v-for="(item, index) in column"
:key="index"
:prop="item.prop"
:label="item.label"
:width="item.width"
:formatter = "item.formatter"
/>
</el-table>
<div class="pagination">
<el-pagination
:total="total"
:current-page="currentPage"
background
layout="prev, pager, next"
@current-change="handleCurrentChange"
/>
</div>
</div>
</el-row>
</template>
<script>
import { mapActions } from 'vuex'
import API from '../api'
export default {
name: 'HistoryTrace',
data() {
return {
column: [
{
label: this.$t('historyTrace').column.jobName,
prop: 'jobName'
},
{
label: this.$t('historyTrace').column.serverIp,
prop: 'ip'
},
{
label: this.$t('historyTrace').column.shardingItem,
prop: 'shardingItem'
},
{
label: this.$t('historyTrace').column.executeResult,
prop: 'success',
formatter: function(row, cell, value) {
return value + ''
}
},
{
label: this.$t('historyTrace').column.failureCause,
prop: 'failureCause'
},
{
label: this.$t('historyTrace').column.startTime,
prop: 'startTime',
formatter: function(row, cell, value) {
var t = new Date(value)
if (!t) {
return ''
}
return t.getFullYear() + '-' + (t.getMonth() + 1) + '-' + t.getDate() + ' ' + t.getHours() + ':' + t.getMinutes() + ':' + t.getSeconds()
}
},
{
label: this.$t('historyTrace').column.completeTime,
prop: 'completeTime',
formatter: function(row, cell, value) {
var t = new Date(value)
if (!t) {
return ''
}
return t.getFullYear() + '-' + (t.getMonth() + 1) + '-' + t.getDate() + ' ' + t.getHours() + ':' + t.getMinutes() + ':' + t.getSeconds()
}
}
],
executeResultItems: [
{
value: true,
label: this.$t('historyTrace').searchForm.executeSuccess
}, {
value: false,
label: this.$t('historyTrace').searchForm.executeFailed
}
],
searchForm: {
jobName: '',
ip: '',
start: '',
end: '',
isSuccess: ''
},
tableData: [],
cloneTableData: [],
currentPage: 1,
pageSize: 10,
total: null
}
},
created() {
this.getJobTrace()
},
methods: {
...mapActions(['setRegCenterActivated']),
fetchJobNameSuggestions(jobNamePrefix, callback) {
API.getExecutionJobNameSuggestions(jobNamePrefix).then(res => {
const jobNames = res.model
const suggestions = jobNames.map(jobName => ({ value: jobName }))
callback(suggestions)
})
},
fetchIpSuggestions(ipPrefix, callback) {
API.getExecutionIpSuggestions(ipPrefix).then(res => {
const ips = res.model
const suggestions = ips.map(ip => ({ value: ip }))
callback(suggestions)
})
},
handleCurrentChange(val) {
const page = {
pageSize: this.pageSize,
pageNumber: val
}
API.loadExecution(Object.assign(this.getSearchForm(), page)).then(res => {
const data = res.model.rows
this.total = res.model.total
this.tableData = data
})
},
getJobTrace() {
API.loadExecution(this.getSearchForm()).then(res => {
const data = res.model.rows
this.total = res.model.total
this.tableData = data
})
},
getSearchForm() {
const requestBody = Object.assign({}, this.searchForm)
requestBody.jobName = this.getNullIfEmpty(requestBody.jobName)
requestBody.ip = this.getNullIfEmpty(requestBody.ip)
return requestBody
},
getNullIfEmpty(value) {
return value === '' ? null : value
}
}
}
</script>
<style lang='scss' scoped>
.btn-group {
margin-bottom: 20px;
}
.pagination {
float: right;
margin: 10px -10px 10px 0;
}
.el-input {
width: 200px;
}
</style>