Refactor imports and improve code organization across multiple components and hooks

- Consolidated and reordered imports in various files for better readability and maintainability.
- Removed unused imports and ensured consistent import styles.
- Enhanced the structure of components by grouping related imports together.
- Updated the layout and organization of hooks to streamline functionality.
- Improved the overall code quality by following best practices in import management.
This commit is contained in:
Tunglies
2025-09-18 23:34:21 +08:00
parent 74ade3ee41
commit 627119bb22
119 changed files with 1157 additions and 694 deletions

View File

@@ -1,5 +1,6 @@
import { fetch } from "@tauri-apps/plugin-http";
import axios, { AxiosInstance } from "axios";
import { getClashInfo } from "./cmds";
let instancePromise: Promise<AxiosInstance> = null!;

View File

@@ -1,4 +1,5 @@
import { invoke } from "@tauri-apps/api/core";
import { showNotice } from "@/services/noticeService";
export async function copyClashEnv() {

View File

@@ -1,5 +1,6 @@
// 全局日志服务,使应用在任何页面都能收集日志
import { create } from "zustand";
import {
fetchLogsViaIPC,
startLogsStreaming,

View File

@@ -1,11 +1,12 @@
// IPC-based log service using Tauri commands with streaming support
import dayjs from "dayjs";
import {
getClashLogs,
startLogsMonitoring,
stopLogsMonitoring,
clearLogs as clearLogsCmd,
} from "@/services/cmds";
import dayjs from "dayjs";
type LogLevel = "debug" | "info" | "warning" | "error" | "all";