1Panel/frontend/src/views/host/terminal/terminal/index.vue

398 lines
13 KiB
Vue

<template>
<div>
<el-tabs
type="card"
class="terminal-tabs"
style="background-color: #efefef; margin-top: 20px"
v-model="terminalValue"
:before-leave="beforeLeave"
@tab-change="quickCmd = ''"
@edit="handleTabsRemove"
>
<el-tab-pane
:key="item.index"
v-for="item in terminalTabs"
:closable="true"
:label="item.title"
:name="item.index"
>
<template #label>
<span class="custom-tabs-label">
<el-icon style="margin-top: 1px" color="#67C23A" v-if="item.status === 'online'">
<circleCheck />
</el-icon>
<el-button
v-if="item.status === 'closed'"
icon="Refresh"
style="color: white"
size="default"
link
@click="onReconnect(item)"
/>
<span v-if="item.title.length <= 20">&nbsp;{{ item.title }}&nbsp;</span>
<el-tooltip v-else :content="item.title" placement="top-start">
<span>&nbsp;{{ item.title.substring(0, 17) }}...&nbsp;</span>
</el-tooltip>
</span>
</template>
<Terminal
style="height: calc(100vh - 227px); background-color: #000"
:ref="'t-' + item.index"
:key="item.Refresh"
></Terminal>
<div>
<el-select v-model="quickCmd" clearable filterable @change="quickInput" style="width: 25%">
<template #prefix>{{ $t('terminal.quickCommand') }}</template>
<el-option v-for="cmd in commandList" :key="cmd.id" :label="cmd.name" :value="cmd.command" />
</el-select>
<el-input v-model="batchVal" @keyup.enter="batchInput" style="width: 75%">
<template #prepend>
<el-checkbox :label="$t('terminal.batchInput')" v-model="isBatch" />
</template>
</el-input>
</div>
</el-tab-pane>
<el-tab-pane :closable="false" name="newTabs">
<template #label>
<el-button
v-popover="popoverRef"
style="background-color: #ededed; border: 0"
icon="Plus"
></el-button>
<el-popover ref="popoverRef" width="250px" trigger="hover" virtual-triggering persistent>
<div style="margin-left: 10px">
<el-button link type="primary" @click="onNewSsh">{{ $t('terminal.createConn') }}</el-button>
</div>
<div style="margin-left: 10px">
<el-button link type="primary" @click="onNewLocal">
{{ $t('terminal.localhost') }}
</el-button>
</div>
<div class="search-button" style="float: none">
<el-input
v-model="hostfilterInfo"
style="margin-top: 5px"
clearable
suffix-icon="Search"
:placeholder="$t('commons.button.search')"
></el-input>
</div>
<el-tree
ref="treeRef"
:expand-on-click-node="false"
node-key="id"
:default-expand-all="true"
:data="hostTree"
:props="defaultProps"
:filter-node-method="filterHost"
>
<template #default="{ node, data }">
<span class="custom-tree-node">
<span v-if="node.label.length <= 25">
<a @click="onClickConn(node, data)">{{ node.label }}</a>
</span>
<el-tooltip v-else :content="node.label" placement="top-start">
<span>
<a @click="onClickConn(node, data)">{{ node.label.substring(0, 22) }}...</a>
</span>
</el-tooltip>
</span>
</template>
</el-tree>
</el-popover>
</template>
</el-tab-pane>
<div v-if="terminalTabs.length === 0">
<el-empty
style="background-color: #000; height: calc(100vh - 200px)"
:description="$t('terminal.emptyTerminal')"
></el-empty>
</div>
</el-tabs>
<el-button @click="toggleFullscreen" class="fullScreen" icon="FullScreen"></el-button>
<HostDialog ref="dialogRef" @on-conn-terminal="onConnTerminal" @load-host-tree="loadHostTree" />
</div>
</template>
<script setup lang="ts">
import { ref, getCurrentInstance, watch, nextTick } from 'vue';
import Terminal from '@/views/host/terminal/terminal/terminal.vue';
import HostDialog from '@/views/host/terminal/terminal/host-create.vue';
import type Node from 'element-plus/es/components/tree/src/model/node';
import { ElTree } from 'element-plus';
import screenfull from 'screenfull';
import i18n from '@/lang';
import { Host } from '@/api/interface/host';
import { getHostTree, testByID } from '@/api/modules/host';
import { getCommandList } from '@/api/modules/host';
import { GlobalStore } from '@/store';
const dialogRef = ref();
const ctx = getCurrentInstance() as any;
const globalStore = GlobalStore();
function toggleFullscreen() {
if (screenfull.isEnabled) {
screenfull.toggle();
globalStore.setScreenFull();
}
}
const localHostID = ref();
let timer: NodeJS.Timer | null = null;
const terminalValue = ref();
const terminalTabs = ref([]) as any;
let tabIndex = 0;
const commandList = ref();
let quickCmd = ref();
let batchVal = ref();
let isBatch = ref<boolean>(false);
const popoverRef = ref();
const hostfilterInfo = ref('');
const hostTree = ref<Array<Host.HostTree>>();
const treeRef = ref<InstanceType<typeof ElTree>>();
const defaultProps = {
label: 'label',
children: 'children',
};
interface Tree {
id: number;
label: string;
children?: Tree[];
}
const acceptParams = async () => {
loadCommand();
const res = await getHostTree({});
hostTree.value = res.data;
timer = setInterval(() => {
syncTerminal();
}, 1000 * 5);
for (const item of hostTree.value) {
if (!item.children) {
continue;
}
for (const host of item.children) {
if (host.label.indexOf('127.0.0.1') !== -1) {
localHostID.value = host.id;
if (terminalTabs.value.length !== 0) {
return;
}
onNewLocal();
return;
}
}
}
};
const cleanTimer = () => {
clearInterval(Number(timer));
timer = null;
for (const terminal of terminalTabs.value) {
if (ctx && ctx.refs[`t-${terminal.index}`][0]) {
terminal.status = ctx.refs[`t-${terminal.index}`][0].onClose();
}
}
};
const handleTabsRemove = (targetName: string, action: 'remove' | 'add') => {
if (action !== 'remove') {
return;
}
if (ctx) {
ctx.refs[`t-${targetName}`] && ctx.refs[`t-${targetName}`][0].onClose();
}
const tabs = terminalTabs.value;
let activeName = terminalValue.value;
if (activeName === targetName) {
tabs.forEach((tab: any, index: any) => {
if (tab.index === targetName) {
const nextTab = tabs[index + 1] || tabs[index - 1];
if (nextTab) {
activeName = nextTab.index;
}
}
});
}
terminalValue.value = activeName;
terminalTabs.value = tabs.filter((tab: any) => tab.index !== targetName);
};
const loadHostTree = async () => {
const res = await getHostTree({});
hostTree.value = res.data;
};
watch(hostfilterInfo, (val: any) => {
treeRef.value!.filter(val);
});
const filterHost = (value: string, data: any) => {
if (!value) return true;
return data.label.includes(value);
};
const loadCommand = async () => {
const res = await getCommandList();
commandList.value = res.data;
};
function quickInput(val: any) {
if (val !== '' && ctx) {
if (isBatch.value) {
for (const tab of terminalTabs.value) {
ctx.refs[`t-${tab.index}`] && ctx.refs[`t-${tab.index}`][0].onSendMsg(val + '\n');
}
return;
}
ctx.refs[`t-${terminalValue.value}`] && ctx.refs[`t-${terminalValue.value}`][0].onSendMsg(val + '\n');
quickCmd.value = '';
}
}
function batchInput() {
if (batchVal.value === '' || !ctx) {
return;
}
if (isBatch.value) {
for (const tab of terminalTabs.value) {
ctx.refs[`t-${tab.index}`] && ctx.refs[`t-${tab.index}`][0].onSendMsg(batchVal.value + '\n');
}
batchVal.value = '';
return;
}
ctx.refs[`t-${terminalValue.value}`] && ctx.refs[`t-${terminalValue.value}`][0].onSendMsg(batchVal.value + '\n');
batchVal.value = '';
}
function beforeLeave(activeName: string) {
if (activeName === 'newTabs') {
return false;
}
}
const onNewSsh = () => {
dialogRef.value!.acceptParams({ isLocal: false });
};
const onNewLocal = () => {
onConnTerminal(i18n.global.t('terminal.localhost'), localHostID.value, true);
};
const onClickConn = (node: Node, data: Tree) => {
if (node.level === 1) {
return;
}
onConnTerminal(node.label, data.id, false);
};
const onReconnect = async (item: any) => {
if (ctx) {
ctx.refs[`t-${item.index}`] && ctx.refs[`t-${item.index}`][0].onClose();
}
item.Refresh = !item.Refresh;
const res = await testByID(item.wsID);
nextTick(() => {
ctx.refs[`t-${item.index}`] &&
ctx.refs[`t-${item.index}`][0].acceptParams({
wsID: item.wsID,
terminalID: item.index,
error: res.data ? '' : 'Failed to set up the connection. Please check the host information',
});
});
syncTerminal();
};
const onConnTerminal = async (title: string, wsID: number, isLocal?: boolean) => {
const res = await testByID(wsID);
if (isLocal) {
for (const tab of terminalTabs.value) {
if (tab.title.indexOf('@127.0.0.1:') !== -1 || tab.title === i18n.global.t('terminal.localhost')) {
onReconnect(tab);
return;
}
}
}
terminalTabs.value.push({
index: tabIndex,
title: title,
wsID: wsID,
status: res.data ? 'online' : 'closed',
});
terminalValue.value = tabIndex;
if (!res.data && isLocal) {
dialogRef.value!.acceptParams({ isLocal: true });
}
nextTick(() => {
ctx.refs[`t-${terminalValue.value}`] &&
ctx.refs[`t-${terminalValue.value}`][0].acceptParams({
wsID: wsID,
terminalID: terminalValue.value,
error: res.data ? '' : 'Authentication failed. Please check the host information !',
});
});
tabIndex++;
};
function syncTerminal() {
for (const terminal of terminalTabs.value) {
if (ctx && ctx.refs[`t-${terminal.index}`][0]) {
terminal.status = ctx.refs[`t-${terminal.index}`][0].isWsOpen() ? 'online' : 'closed';
}
}
}
defineExpose({
acceptParams,
cleanTimer,
});
</script>
<style lang="scss" scoped>
.terminal-tabs {
:deep(.el-tabs__header) {
padding: 0;
position: relative;
margin: 0 0 3px 0;
}
:deep(.el-tabs__nav) {
white-space: nowrap;
position: relative;
transition: transform var(--el-transition-duration);
float: left;
z-index: calc(var(--el-index-normal) + 1);
}
:deep(.el-tabs__item) {
color: #575758;
padding: 0 0px;
}
:deep(.el-tabs__item.is-active) {
color: #ebeef5;
background-color: #575758;
}
}
.vertical-tabs > .el-tabs__content {
padding: 32px;
color: #6b778c;
font-size: 32px;
font-weight: 600;
}
.fullScreen {
position: absolute;
right: 50px;
top: 90px;
font-weight: 600;
font-size: 14px;
}
.el-tabs--top.el-tabs--card > .el-tabs__header .el-tabs__item:last-child {
padding-right: 0px;
}
.el-input__wrapper {
border-radius: 50px;
}
.el-input-group__prepend {
border-top-left-radius: 50px;
border-bottom-left-radius: 50px;
}
</style>