Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F8222840
CompanionappList.vue
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
3 KB
Referenced Files
None
Subscribers
None
CompanionappList.vue
View Options
<template>
<div>
<btn icon="trash-can" class="btn-outline-danger button-delete float-end" @click="showDeleteConfirmation()">
{{ $t('companion.delete') }}
</btn>
<table class="table table-sm m-0 entries">
<thead>
<tr>
<th scope="col">{{ $t('companion.name') }}</th>
<th scope="col">{{ $t('companion.deviceid') }}</th>
</tr>
</thead>
<tbody>
<tr v-for="entry in entries" :id="'entry' + entry.id" :key="entry.id">
<td class="description">{{ entry.name }}</td>
<td class="description">{{ entry.device_id }}</td>
</tr>
</tbody>
<list-foot :text="$t('companion.nodevices')" :colspan="2"></list-foot>
</table>
<list-more v-if="hasMore" :on-click="loadMore"></list-more>
<div id="delete-warning" class="modal" tabindex="-1" role="dialog">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">{{ $t('companion.remove-devices') }}</h5>
<btn class="btn-close" data-bs-dismiss="modal" :aria-label="$t('btn.close')"></btn>
</div>
<div class="modal-body">
<p>{{ $t('companion.remove-devices-text') }}</p>
</div>
<div class="modal-footer">
<btn class="btn-secondary modal-cancel" data-bs-dismiss="modal">{{ $t('btn.cancel') }}</btn>
<btn class="btn-danger modal-action" data-bs-dismiss="modal" @click="removeDevices()" icon="trash-can">{{ $t('btn.delete') }}</btn>
</div>
</div>
</div>
</div>
</div>
</template>
<script>
import { Modal } from 'bootstrap'
import ListTools from './ListTools'
export default {
mixins: [ ListTools ],
props: {
},
data() {
return {
entries: []
}
},
mounted() {
this.loadMore({ reset: true })
$('#delete-warning')[0].addEventListener('shown.bs.modal', event => {
$(event.target).find('button.modal-cancel').focus()
})
},
methods: {
loadMore(params) {
this.listSearch('entries', '/api/v4/companion/', params)
},
removeDevices() {
axios.post('/api/v4/companion/revoke')
.then(response => {
if (response.data.status == 'success') {
this.$toast.success(response.data.message)
}
this.loadMore({ reset: true })
})
.catch(this.$root.errorHandler)
},
showDeleteConfirmation() {
// Display the warning
new Modal('#delete-warning').show()
},
}
}
</script>
File Metadata
Details
Attached
Mime Type
text/html
Expires
Thu, Jul 9, 9:11 PM (21 h, 44 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1057161
Default Alt Text
CompanionappList.vue (3 KB)
Attached To
Mode
R2 kolab
Attached
Detach File
Event Timeline
Log In to Comment