mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-03-14 01:34:47 +08:00
277 lines
10 KiB
Vue
277 lines
10 KiB
Vue
<template>
|
|
<div v-loading="loading">
|
|
<div class="a-card" style="margin-top: 20px">
|
|
<el-card>
|
|
<div>
|
|
<el-tag style="float: left" effect="dark" type="success">Docker</el-tag>
|
|
<el-tag round class="status-content" v-if="form.status === 'Running'" type="success">
|
|
{{ $t('commons.status.running') }}
|
|
</el-tag>
|
|
<el-tag round class="status-content" v-if="form.status === 'Stopped'" type="info">
|
|
{{ $t('commons.status.stopped') }}
|
|
</el-tag>
|
|
<el-tag class="status-content">{{ $t('app.version') }}: {{ form.version }}</el-tag>
|
|
|
|
<span v-if="form.status === 'Running'" class="buttons">
|
|
<el-button type="primary" @click="onOperator('stop')" link>
|
|
{{ $t('container.stop') }}
|
|
</el-button>
|
|
<el-divider direction="vertical" />
|
|
<el-button type="primary" @click="onOperator('restart')" link>
|
|
{{ $t('container.restart') }}
|
|
</el-button>
|
|
</span>
|
|
|
|
<span v-if="form.status === 'Stopped'" class="buttons">
|
|
<el-button type="primary" @click="onOperator('start')" link>
|
|
{{ $t('container.start') }}
|
|
</el-button>
|
|
<el-divider direction="vertical" />
|
|
<el-button type="primary" @click="onOperator('restart')" link>
|
|
{{ $t('container.restart') }}
|
|
</el-button>
|
|
</span>
|
|
</div>
|
|
</el-card>
|
|
</div>
|
|
|
|
<LayoutContent style="margin-top: 20px" :title="$t('container.setting')" :divider="true">
|
|
<template #main>
|
|
<el-radio-group v-model="confShowType" @change="changeMode">
|
|
<el-radio-button label="base">{{ $t('database.baseConf') }}</el-radio-button>
|
|
<el-radio-button label="all">{{ $t('database.allConf') }}</el-radio-button>
|
|
</el-radio-group>
|
|
<el-row style="margin-top: 20px" v-if="confShowType === 'base'">
|
|
<el-col :span="1"><br /></el-col>
|
|
<el-col :span="10">
|
|
<el-form :model="form" label-position="left" ref="formRef" label-width="120px">
|
|
<el-form-item :label="$t('container.mirrors')" prop="mirrors">
|
|
<el-input
|
|
type="textarea"
|
|
:placeholder="$t('container.mirrorHelper')"
|
|
:autosize="{ minRows: 3, maxRows: 10 }"
|
|
v-model="form.mirrors"
|
|
/>
|
|
<span class="input-help">{{ $t('container.mirrorsHelper') }}</span>
|
|
</el-form-item>
|
|
<el-form-item :label="$t('container.registries')" prop="registries">
|
|
<el-input
|
|
type="textarea"
|
|
:placeholder="$t('container.registrieHelper')"
|
|
:autosize="{ minRows: 3, maxRows: 10 }"
|
|
v-model="form.registries"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="live-restore" prop="liveRestore">
|
|
<el-switch v-model="form.liveRestore"></el-switch>
|
|
<span class="input-help">{{ $t('container.liveHelper') }}</span>
|
|
</el-form-item>
|
|
<el-form-item label="cgroup-driver" prop="cgroupDriver">
|
|
<el-radio-group v-model="form.cgroupDriver">
|
|
<el-radio label="cgroupfs">cgroupfs</el-radio>
|
|
<el-radio label="systemd">systemd</el-radio>
|
|
</el-radio-group>
|
|
</el-form-item>
|
|
<el-form-item>
|
|
<el-button :disabled="loading" type="primary" @click="onSave(formRef)">
|
|
{{ $t('commons.button.save') }}
|
|
</el-button>
|
|
</el-form-item>
|
|
</el-form>
|
|
</el-col>
|
|
</el-row>
|
|
|
|
<div v-if="confShowType === 'all'">
|
|
<codemirror
|
|
:autofocus="true"
|
|
placeholder="# The Docker configuration file does not exist or is empty (/etc/docker/daemon.json)"
|
|
:indent-with-tab="true"
|
|
:tabSize="4"
|
|
style="margin-top: 10px; height: calc(100vh - 430px)"
|
|
:lineWrapping="true"
|
|
:matchBrackets="true"
|
|
theme="cobalt"
|
|
:styleActiveLine="true"
|
|
:extensions="extensions"
|
|
v-model="dockerConf"
|
|
:readOnly="true"
|
|
/>
|
|
<el-button :disabled="loading" type="primary" @click="onSaveFile" style="margin-top: 5px">
|
|
{{ $t('commons.button.save') }}
|
|
</el-button>
|
|
</div>
|
|
</template>
|
|
</LayoutContent>
|
|
|
|
<ConfirmDialog ref="confirmDialogRef" @confirm="onSubmitSave"></ConfirmDialog>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { FormInstance } from 'element-plus';
|
|
import { onMounted, reactive, ref } from 'vue';
|
|
import { Codemirror } from 'vue-codemirror';
|
|
import LayoutContent from '@/layout/layout-content.vue';
|
|
import { javascript } from '@codemirror/lang-javascript';
|
|
import { oneDark } from '@codemirror/theme-one-dark';
|
|
import ConfirmDialog from '@/components/confirm-dialog/index.vue';
|
|
import i18n from '@/lang';
|
|
import {
|
|
dockerOperate,
|
|
loadDaemonJson,
|
|
loadDaemonJsonFile,
|
|
updateDaemonJson,
|
|
updateDaemonJsonByfile,
|
|
} from '@/api/modules/container';
|
|
import { MsgSuccess } from '@/utils/message';
|
|
|
|
const loading = ref(false);
|
|
const showDaemonJsonAlert = ref(false);
|
|
const extensions = [javascript(), oneDark];
|
|
const confShowType = ref('base');
|
|
|
|
const form = reactive({
|
|
status: '',
|
|
version: '',
|
|
mirrors: '',
|
|
registries: '',
|
|
liveRestore: false,
|
|
cgroupDriver: '',
|
|
});
|
|
|
|
const formRef = ref<FormInstance>();
|
|
const dockerConf = ref();
|
|
const confirmDialogRef = ref();
|
|
|
|
const onSave = async (formEl: FormInstance | undefined) => {
|
|
if (!formEl) return;
|
|
formEl.validate(async (valid) => {
|
|
if (!valid) return;
|
|
if (!valid) return;
|
|
let params = {
|
|
header: i18n.global.t('database.confChange'),
|
|
operationInfo: i18n.global.t('database.restartNowHelper'),
|
|
submitInputInfo: i18n.global.t('database.restartNow'),
|
|
};
|
|
confirmDialogRef.value!.acceptParams(params);
|
|
});
|
|
};
|
|
const onSaveFile = async () => {
|
|
let params = {
|
|
header: i18n.global.t('database.confChange'),
|
|
operationInfo: i18n.global.t('database.restartNowHelper1'),
|
|
submitInputInfo: i18n.global.t('database.restartNow'),
|
|
};
|
|
confirmDialogRef.value!.acceptParams(params);
|
|
};
|
|
|
|
const onOperator = async (operation: string) => {
|
|
let param = {
|
|
operation: operation,
|
|
};
|
|
loading.value = true;
|
|
await dockerOperate(param)
|
|
.then(() => {
|
|
loading.value = false;
|
|
search();
|
|
changeMode();
|
|
MsgSuccess(i18n.global.t('commons.msg.operationSuccess'));
|
|
})
|
|
.catch(() => {
|
|
loading.value = false;
|
|
});
|
|
};
|
|
|
|
const onSubmitSave = async () => {
|
|
if (confShowType.value === 'all') {
|
|
let param = { file: dockerConf.value };
|
|
loading.value = true;
|
|
await updateDaemonJsonByfile(param)
|
|
.then(() => {
|
|
loading.value = false;
|
|
MsgSuccess(i18n.global.t('commons.msg.operationSuccess'));
|
|
})
|
|
.catch(() => {
|
|
loading.value = false;
|
|
});
|
|
return;
|
|
}
|
|
let itemMirrors = form.mirrors.split('\n');
|
|
let itemRegistries = form.registries.split('\n');
|
|
let param = {
|
|
status: form.status,
|
|
version: '',
|
|
registryMirrors: itemMirrors.filter(function (el) {
|
|
return el !== null && el !== '' && el !== undefined;
|
|
}),
|
|
insecureRegistries: itemRegistries.filter(function (el) {
|
|
return el !== null && el !== '' && el !== undefined;
|
|
}),
|
|
liveRestore: form.liveRestore,
|
|
cgroupDriver: form.cgroupDriver,
|
|
};
|
|
loading.value = true;
|
|
await updateDaemonJson(param)
|
|
.then(() => {
|
|
loading.value = false;
|
|
search();
|
|
MsgSuccess(i18n.global.t('commons.msg.operationSuccess'));
|
|
})
|
|
.catch(() => {
|
|
loading.value = false;
|
|
});
|
|
};
|
|
|
|
const loadDockerConf = async () => {
|
|
const res = await loadDaemonJsonFile();
|
|
if (res.data === 'daemon.json is not find in path') {
|
|
console.log(res.data);
|
|
showDaemonJsonAlert.value = true;
|
|
} else {
|
|
dockerConf.value = res.data;
|
|
}
|
|
};
|
|
|
|
const changeMode = async () => {
|
|
if (confShowType.value === 'all') {
|
|
loadDockerConf();
|
|
} else {
|
|
showDaemonJsonAlert.value = false;
|
|
search();
|
|
}
|
|
};
|
|
|
|
const search = async () => {
|
|
const res = await loadDaemonJson();
|
|
form.status = res.data.status;
|
|
form.version = res.data.version;
|
|
form.cgroupDriver = res.data.cgroupDriver;
|
|
form.liveRestore = res.data.liveRestore;
|
|
form.mirrors = res.data.registryMirrors ? res.data.registryMirrors.join('\n') : '';
|
|
form.registries = res.data.insecureRegistries ? res.data.insecureRegistries.join('\n') : '';
|
|
};
|
|
|
|
onMounted(() => {
|
|
search();
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.a-card {
|
|
font-size: 17px;
|
|
.el-card {
|
|
--el-card-padding: 12px;
|
|
.buttons {
|
|
margin-left: 100px;
|
|
}
|
|
}
|
|
}
|
|
.status-content {
|
|
float: left;
|
|
margin-left: 50px;
|
|
}
|
|
body {
|
|
margin: 0;
|
|
}
|
|
</style>
|