mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-02 17:00:10 +00:00
84 lines
2.2 KiB
Vue
84 lines
2.2 KiB
Vue
<!-- (C) 2022 - ntop.org -->
|
|
<template>
|
|
<modal ref="modal_id">
|
|
<template v-slot:title>
|
|
{{ _i18n("delete_inactive_host_title") }}
|
|
</template>
|
|
<template v-slot:body>
|
|
{{ message }}
|
|
<div v-if="show_return_msg" class="text-left">
|
|
<p class="text-sm-start fs-6 fw-medium pt-3 m-0" :class="(err) ? 'text-danger' : 'text-success'"><small>{{ return_message }}</small></p>
|
|
</div>
|
|
</template><!-- modal-body -->
|
|
<template v-slot:footer>
|
|
<button type="button" @click="delete_host" class="btn btn-primary">{{ _i18n("delete") }}</button>
|
|
</template>
|
|
</modal>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { ref, onMounted } from "vue";
|
|
import { default as modal } from "./modal.vue";
|
|
import { ntopng_utility } from "../services/context/ntopng_globals_services";
|
|
|
|
const _i18n = (t) => i18n(t);
|
|
const modal_id = ref(null);
|
|
const message = ref('')
|
|
const return_message = ref('')
|
|
const show_return_msg = ref(false)
|
|
const err = ref(false);
|
|
|
|
const emit = defineEmits(["delete_host"]);
|
|
const row_id = ref({});
|
|
|
|
const props = defineProps({
|
|
context: Object,
|
|
});
|
|
|
|
onMounted(() => {});
|
|
|
|
async function delete_host() {
|
|
const url = `${http_prefix}/lua/rest/v2/delete/host/inactive_host.lua`;
|
|
const params = {
|
|
csrf: props.context.csrf,
|
|
ifid: props.context.ifid,
|
|
serial_key: row_id.value,
|
|
};
|
|
|
|
let headers = {
|
|
'Content-Type': 'application/json'
|
|
};
|
|
const res = await ntopng_utility.http_request(url, { method: 'post', headers, body: JSON.stringify(params) });
|
|
if(res) {
|
|
err.value = false;
|
|
show_return_msg.value = true;
|
|
let num_hosts_msg = ''
|
|
if(res.deleted_hosts > 1) {
|
|
num_hosts_msg = '. Number hosts deleted: ' + res.deleted_hosts
|
|
}
|
|
return_message.value = i18n('succ_del_inactive_hosts') + num_hosts_msg
|
|
emit("delete_host");
|
|
close();
|
|
} else {
|
|
err.value = true;
|
|
show_return_msg.value = true;
|
|
return_message.value = i18n('err_del_inactive_hosts')
|
|
}
|
|
}
|
|
|
|
|
|
const show = (_row_id, _message) => {
|
|
row_id.value = _row_id;
|
|
message.value = _message;
|
|
modal_id.value.show();
|
|
};
|
|
|
|
const close = () => {
|
|
setTimeout(() => {
|
|
modal_id.value.close();
|
|
}, 3000 /* 3 seconds */)
|
|
};
|
|
|
|
defineExpose({ show, close });
|
|
|
|
</script>
|