mirror of
https://github.com/acepanel/panel.git
synced 2026-02-04 06:47:20 +08:00
103 lines
2.8 KiB
Vue
103 lines
2.8 KiB
Vue
<script setup lang="ts">
|
|
defineOptions({
|
|
name: 'apps-nginx-index'
|
|
})
|
|
|
|
import { NButton, NDataTable } from 'naive-ui'
|
|
import { useGettext } from 'vue3-gettext'
|
|
|
|
import nginx from '@/api/apps/nginx'
|
|
import ServiceStatus from '@/components/common/ServiceStatus.vue'
|
|
|
|
const { $gettext } = useGettext()
|
|
const currentTab = ref('status')
|
|
|
|
const { data: config } = useRequest(nginx.config, {
|
|
initialData: ''
|
|
})
|
|
const { data: errorLog } = useRequest(nginx.errorLog, {
|
|
initialData: ''
|
|
})
|
|
const { data: load } = useRequest(nginx.load, {
|
|
initialData: []
|
|
})
|
|
|
|
const columns: any = [
|
|
{
|
|
title: $gettext('Property'),
|
|
key: 'name',
|
|
minWidth: 200,
|
|
resizable: true,
|
|
ellipsis: { tooltip: true }
|
|
},
|
|
{
|
|
title: $gettext('Current Value'),
|
|
key: 'value',
|
|
minWidth: 200,
|
|
ellipsis: { tooltip: true }
|
|
}
|
|
]
|
|
|
|
const handleSaveConfig = () => {
|
|
useRequest(nginx.saveConfig(config.value)).onSuccess(() => {
|
|
window.$message.success($gettext('Saved successfully'))
|
|
})
|
|
}
|
|
|
|
const handleClearErrorLog = () => {
|
|
useRequest(nginx.clearErrorLog()).onSuccess(() => {
|
|
window.$message.success($gettext('Cleared successfully'))
|
|
})
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<common-page show-footer>
|
|
<n-tabs v-model:value="currentTab" type="line" animated>
|
|
<n-tab-pane name="status" :tab="$gettext('Running Status')">
|
|
<service-status service="nginx" show-reload />
|
|
</n-tab-pane>
|
|
<n-tab-pane name="config" :tab="$gettext('Modify Configuration')">
|
|
<n-flex vertical>
|
|
<n-alert type="warning">
|
|
{{
|
|
$gettext(
|
|
'This modifies the OpenResty main configuration file. If you do not understand the meaning of each parameter, please do not modify it randomly!'
|
|
)
|
|
}}
|
|
</n-alert>
|
|
<common-editor v-model:value="config" lang="nginx" height="60vh" />
|
|
<n-flex>
|
|
<n-button type="primary" @click="handleSaveConfig">
|
|
{{ $gettext('Save') }}
|
|
</n-button>
|
|
</n-flex>
|
|
</n-flex>
|
|
</n-tab-pane>
|
|
<n-tab-pane name="load" :tab="$gettext('Load Status')">
|
|
<n-data-table
|
|
striped
|
|
remote
|
|
:scroll-x="400"
|
|
:loading="false"
|
|
:columns="columns"
|
|
:data="load"
|
|
/>
|
|
</n-tab-pane>
|
|
<n-tab-pane name="run-log" :tab="$gettext('Runtime Logs')">
|
|
<realtime-log service="nginx" />
|
|
</n-tab-pane>
|
|
<n-tab-pane name="error-log" :tab="$gettext('Error Logs')">
|
|
<n-flex vertical>
|
|
<n-flex>
|
|
<n-button type="primary" @click="handleClearErrorLog">
|
|
{{ $gettext('Clear Log') }}
|
|
</n-button>
|
|
</n-flex>
|
|
<realtime-log :path="errorLog" />
|
|
</n-flex>
|
|
</n-tab-pane>
|
|
</n-tabs>
|
|
</common-page>
|
|
</template>
|