blob: 433ba02e2354ec32b8f548288efe7bfc7b3f8690 [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>
<v-container grid-list-xl fluid >
<v-layout row wrap>
<v-flex lg12>
<v-card flat color="transparent">
<v-card-text>
<v-form>
<v-layout row wrap>
<v-combobox
id="serviceSearch"
v-model="filter"
flat
append-icon=""
hide-no-data
:suffix="queryBy"
label="Search Routing Rule"
></v-combobox>
<v-menu class="hidden-xs-only">
<v-btn slot="activator" large icon>
<v-icon>unfold_more</v-icon>
</v-btn>
<v-list>
<v-list-tile
v-for="(item, i) in items"
:key="i"
@click="selected = i">
<v-list-tile-title>{{ item.title }}</v-list-tile-title>
</v-list-tile>
</v-list>
</v-menu>
<v-btn @click="submit" color="primary" large>Search</v-btn>
</v-layout>
</v-form>
</v-card-text>
</v-card>
</v-flex>
</v-layout>
<v-flex lg12>
<v-card>
<v-toolbar flat color="transparent" class="elevation-0">
<v-toolbar-title><span class="headline">Search Result</span></v-toolbar-title>
<v-spacer></v-spacer>
<v-btn outline color="primary" @click.stop="openDialog" class="mb-2">CREATE</v-btn>
</v-toolbar>
<v-card-text class="pa-0" v-if="selected == 0">
<v-data-table
:headers="serviceHeaders"
:items="weights"
hide-actions
class="elevation-0"
>
<template slot="items" slot-scope="props">
<td class="text-xs-left">{{ props.item.service }}</td>
<td class="text-xs-left">{{ props.item.weight }}</td>
<td class="text-xs-center px-0">
<v-tooltip bottom v-for="op in operations" :key="op.id">
<v-icon small class="mr-2" slot="activator" @click="itemOperation(op.icon, props.item)">
{{op.icon}}
</v-icon>
<span>{{op.tooltip}}</span>
</v-tooltip>
</td>
</template>
</v-data-table>
</v-card-text>
<v-card-text class="pa-0" v-if="selected == 1">
<v-data-table
:headers="appHeaders"
:items="weights"
hide-actions
class="elevation-0"
>
<template slot="items" slot-scope="props">
<td class="text-xs-left">{{ props.item.application }}</td>
<td class="text-xs-left">{{ props.item.weight }}</td>
<td class="text-xs-center px-0">
<v-tooltip bottom v-for="op in operations" :key="op.id">
<v-icon small class="mr-2" slot="activator" @click="itemOperation(op.icon, props.item)">
{{op.icon}}
</v-icon>
<span>{{op.tooltip}}</span>
</v-tooltip>
</td>
</template>
</v-data-table>
</v-card-text>
</v-card>
</v-flex>
<v-dialog v-model="dialog" width="800px" persistent >
<v-card>
<v-card-title class="justify-center">
<span class="headline">Create New Weight Rule</span>
</v-card-title>
<v-card-text >
<v-text-field
label="Service Unique ID"
hint="A service ID in form of group/service:version, group and version are optional"
v-model="service"
></v-text-field>
<v-text-field
label="Application Name"
hint="Application name the service belongs to"
v-model="application"
></v-text-field>
<v-subheader class="pa-0 mt-3">RULE CONTENT</v-subheader>
<ace-editor v-model="ruleText" :readonly="readonly"></ace-editor>
</v-card-text>
<v-card-actions>
<v-spacer></v-spacer>
<v-btn color="darken-1" flat @click.native="closeDialog">Close</v-btn>
<v-btn color="primary darken-1" depressed @click.native="saveItem">Save</v-btn>
</v-card-actions>
</v-card>
</v-dialog>
<v-dialog v-model="warn" persistent max-width="500px">
<v-card>
<v-card-title class="headline">{{this.warnTitle}}</v-card-title>
<v-card-text >{{this.warnText}}</v-card-text>
<v-card-actions>
<v-spacer></v-spacer>
<v-btn color="darken-1" flat @click.native="closeWarn">CANCLE</v-btn>
<v-btn color="primary darken-1" depressed @click.native="deleteItem(warnStatus)">CONFIRM</v-btn>
</v-card-actions>
</v-card>
</v-dialog>
</v-container>
</template>
<script>
import AceEditor from '@/components/public/AceEditor'
import yaml from 'js-yaml'
import Search from '@/components/public/Search'
export default {
components: {
AceEditor,
Search
},
data: () => ({
items: [
{id: 0, title: 'service name', value: 'service'},
{id: 1, title: 'application', value: 'application'}
],
selected: 0,
dropdown_font: [ 'Service', 'App', 'IP' ],
ruleKeys: ['weight', 'address'],
pattern: 'Service',
filter: '',
dialog: false,
warn: false,
application: '',
updateId: '',
service: '',
warnTitle: '',
warnText: '',
warnStatus: {},
height: 0,
operations: [
{id: 0, icon: 'visibility', tooltip: 'View'},
{id: 1, icon: 'edit', tooltip: 'Edit'},
{id: 3, icon: 'delete', tooltip: 'Delete'}
],
weights: [
],
template:
'weight: 100 # 100 for default\n' +
'addresses: # addresses\'s ip\n' +
' - 192.168.0.1\n' +
' - 192.168.0.2',
ruleText: '',
readonly: false,
serviceHeaders: [
{
text: 'Service Name',
value: 'service',
align: 'left'
},
{
text: 'Weight',
value: 'weight',
align: 'left'
},
{
text: 'Operation',
value: 'operation',
sortable: false,
width: '115px'
}
],
appHeaders: [
{
text: 'Application Name',
value: 'application',
align: 'left'
},
{
text: 'Weight',
value: 'weight',
align: 'left'
},
{
text: 'Operation',
value: 'operation',
sortable: false,
width: '115px'
}
]
}),
methods: {
submit: function () {
this.filter = document.querySelector('#serviceSearch').value.trim()
this.search(this.filter, true)
},
search: function (filter, rewrite) {
let type = this.items[this.selected].value
let url = '/rules/weight/?' + type + '=' + filter
this.$axios.get(url)
.then(response => {
this.weights = response.data
if (rewrite) {
if (this.selected === 0) {
this.$router.push({path: 'weight', query: {service: filter}})
} else if (this.selected === 1) {
this.$router.push({path: 'weight', query: {application: filter}})
}
}
})
},
closeDialog: function () {
this.ruleText = this.template
this.service = ''
this.dialog = false
this.readonly = false
},
openDialog: function () {
this.dialog = true
},
openWarn: function (title, text) {
this.warnTitle = title
this.warnText = text
this.warn = true
},
closeWarn: function () {
this.warnTitle = ''
this.warnText = ''
this.warn = false
},
saveItem: function () {
let weight = yaml.safeLoad(this.ruleText)
if (!this.service && !this.application) {
this.$notify.error('Either service or application is needed')
return
}
weight.service = this.service
weight.application = this.application
let vm = this
if (this.updateId) {
if (this.updateId === 'close') {
this.closeDialog()
} else {
weight.id = this.updateId
this.$axios.put('/rules/weight/' + weight.id, weight)
.then(response => {
if (response.status === 200) {
if (vm.service) {
vm.selected = 0
vm.search(vm.service, true)
vm.filter = vm.service
} else {
vm.selected = 1
vm.search(vm.application, true)
vm.filter = vm.application
}
this.closeDialog()
this.$notify.success('Update success')
}
})
}
} else {
this.$axios.post('/rules/weight', weight)
.then(response => {
if (response.status === 201) {
if (this.service) {
vm.selected = 0
vm.search(vm.service, true)
vm.filter = vm.service
} else {
vm.selected = 1
vm.search(vm.application, true)
vm.filter = vm.application
}
vm.closeDialog()
vm.$notify.success('Create success')
}
})
}
},
itemOperation: function (icon, item) {
let itemId = ''
if (this.selected === 0) {
itemId = item.service
} else {
itemId = item.application
}
if (itemId.includes('/')) {
itemId = itemId.replace('/', '*')
}
switch (icon) {
case 'visibility':
this.$axios.get('/rules/weight/' + itemId)
.then(response => {
let weight = response.data
this.handleWeight(weight, true)
this.updateId = 'close'
})
break
case 'edit':
this.$axios.get('/rules/weight/' + itemId)
.then(response => {
let weight = response.data
this.handleWeight(weight, false)
this.updateId = itemId
})
break
case 'delete':
this.openWarn(' Are you sure to Delete Routing Rule', 'service: ' + itemId)
this.warnStatus.operation = 'delete'
this.warnStatus.id = itemId
}
},
handleWeight: function (weight, readonly) {
this.service = weight.service
this.application = weight.application
delete weight.service
delete weight.application
this.ruleText = yaml.safeDump(weight)
this.readonly = readonly
this.dialog = true
},
setHeight: function () {
this.height = window.innerHeight * 0.5
},
deleteItem: function (warnStatus) {
this.$axios.delete('/rules/weight/' + warnStatus.id)
.then(response => {
if (response.status === 200) {
this.warn = false
this.search(this.filter, false)
this.$notify.success('Delete success')
}
})
}
},
created () {
this.setHeight()
},
computed: {
queryBy () {
return 'by ' + this.items[this.selected].title
}
},
mounted: function () {
this.ruleText = this.template
let query = this.$route.query
let filter = null
let vm = this
Object.keys(query).forEach(function (key) {
if (key === 'service') {
filter = query[key]
vm.selected = 0
}
if (key === 'application') {
filter = query[key]
vm.selected = 1
}
})
if (filter !== null) {
this.filter = filter
this.search(filter, false)
}
}
}
</script>
<style scoped>
</style>