blob: c83182dcfe0f6f6fe238a9fdcbe8d404ad751872 [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>
<a-table
class="table"
size="small"
:columns="columns"
:dataSource="hostAgents"
:rowKey="item => item.id"
:pagination="false" >
<template #name="{ text, record }">
<router-link v-if="record.type === 'Routing'" :to="{ path: '/host/' + record.id }">{{ text }}</router-link>
<router-link v-else :to="{ path: '/systemvm/' + record.virtualmachineid }">{{ text }}</router-link>
</template>
</a-table>
</template>
<script>
import { getAPI } from '@/api'
import Status from '@/components/widgets/Status'
export default {
name: 'ConnectedAgentsTab',
components: {
Status
},
props: {
resource: {
type: Object,
required: true
}
},
data () {
return {
hostAgents: [],
columns: [
{
title: this.$t('label.name'),
dataIndex: 'name',
slots: { customRender: 'name' }
},
{
title: this.$t('label.ipaddress'),
dataIndex: 'ipaddress'
},
{
title: this.$t('label.state'),
dataIndex: 'state'
}
]
}
},
created () {
this.fetchData()
},
watch: {
resource: function (newItem) {
this.fetchData()
}
},
methods: {
fetchData () {
this.hostAgents = []
getAPI('listHosts', {
listall: true,
managementserverid: this.resource.id
}).then(json => {
this.hostAgents = json.listhostsresponse.host || []
})
}
}
}
</script>