feat: 加载最近连接的主机.

This commit is contained in:
lijiahangmax
2024-01-09 01:15:35 +08:00
parent d1fb64a050
commit fa14ff58f9
9 changed files with 97 additions and 9 deletions

View File

@@ -42,3 +42,13 @@ export interface HostConnectLogQueryResponse extends TableData {
export function getHostConnectLogPage(request: HostConnectLogQueryRequest) {
return axios.post<DataGrid<HostConnectLogQueryResponse>>('/asset/host-connect-log/query', request);
}
/**
* 查询用户最近连接的主机
*/
export function getLatestConnectHostId(type: string, limit: number) {
return axios.post<Array<number>>('/asset/host-connect-log/latest-connect', {
type,
limit
});
}

View File

@@ -44,7 +44,8 @@
const props = defineProps<{
hosts: AuthorizedHostQueryResponse,
filterValue: string,
newConnectionType: string
newConnectionType: string,
latestHosts: Array<number>
}>();
const hostList = ref<Array<HostQueryResponse>>([]);
@@ -93,7 +94,7 @@
list = list.filter(item => item.favorite);
} else if (NewConnectionType.LATEST === props.newConnectionType) {
// 过滤-最近连接
// todo
list = list.filter(s => props.latestHosts.includes(s.id));
}
// 排序
hostList.value = list?.sort((o1, o2) => {

View File

@@ -9,7 +9,7 @@
<a-radio-group v-model="newConnectionType"
type="button"
class="usn"
:options="toOptions(NewConnectionTypeKey)"
:options="toOptions(newConnectionTypeKey)"
@change="changeNewConnectionType" />
<!-- 过滤 -->
<a-auto-complete v-model="filterValue"
@@ -60,7 +60,8 @@
class="host-view-container"
:hosts="hosts"
:filter-value="filterValue"
:new-connection-type="newConnectionType" />
:new-connection-type="newConnectionType"
:latest-hosts="latestHosts" />
</div>
</div>
</div>
@@ -78,12 +79,13 @@
import type { AuthorizedHostQueryResponse } from '@/api/asset/asset-authorized-data';
import { getCurrentAuthorizedHost } from '@/api/asset/asset-authorized-data';
import { onBeforeMount, ref } from 'vue';
import { NewConnectionType, NewConnectionTypeKey } from '../../types/terminal.const';
import { NewConnectionType, newConnectionTypeKey } from '../../types/terminal.const';
import useLoading from '@/hooks/loading';
import { useDictStore, useTerminalStore } from '@/store';
import { useAppStore, useDictStore, useTerminalStore } from '@/store';
import { dataColor } from '@/utils';
import { tagColor } from '@/views/asset/host-list/types/const';
import HostsView from './hosts-view.vue';
import { getLatestConnectHostId } from '@/api/asset/host-connect-log';
const { loading, setLoading } = useLoading();
const { toOptions } = useDictStore();
@@ -93,6 +95,7 @@
const filterValue = ref('');
const filterOptions = ref<Array<SelectOptionData>>([]);
const hosts = ref<AuthorizedHostQueryResponse>({} as AuthorizedHostQueryResponse);
const latestHosts = ref<Array<number>>([]);
// 过滤输入
const searchFilter = (searchValue: string, option: SelectOptionData) => {
@@ -125,10 +128,11 @@
}).forEach(s => filterOptions.value.push(s));
};
// 初始化
const init = async () => {
// 加载主机信息
const initHosts = async () => {
try {
setLoading(true);
// 加载主机信息
const { data } = await getCurrentAuthorizedHost();
hosts.value = data;
// 初始化过滤项
@@ -138,8 +142,23 @@
}
};
// 加载最近连接主机
const loadLatestConnectHost = async () => {
try {
setLoading(true);
// 加载最近连接主机
const { data } = await getLatestConnectHostId('SSH', useAppStore().defaultTablePageSize);
latestHosts.value = data;
} finally {
setLoading(false);
}
};
// 加载主机信息
onBeforeMount(init);
onBeforeMount(initHosts);
// 加载最近连接主机
onBeforeMount(loadLatestConnectHost);
</script>