Fix/ts errors in fe (#2218)
Some checks failed
supersonic CentOS CI / build (21) (push) Has been cancelled
supersonic mac CI / build (21) (push) Has been cancelled
supersonic ubuntu CI / build (21) (push) Has been cancelled
supersonic windows CI / build (21) (push) Has been cancelled

This commit is contained in:
poncheen
2025-04-11 20:58:35 +08:00
committed by GitHub
parent 97710a90c4
commit 5585b9e222
18 changed files with 262 additions and 258 deletions

View File

@@ -1,6 +1,6 @@
import { Button, Result } from 'antd';
import React from 'react';
import { history } from 'umi';
import { history } from '@umijs/max';
const NoAuthPage: React.FC = () => (
<Result

View File

@@ -1,6 +1,6 @@
import { Button, Result } from 'antd';
import React from 'react';
import { history } from 'umi';
import { history } from '@umijs/max';
const NoFoundPage: React.FC = () => (
<Result

View File

@@ -1,4 +1,4 @@
import { request } from 'umi';
import { request } from '@umijs/max';
import { AgentType, MemoryType, MetricType, ModelType } from './type';
export function getAgentList() {

View File

@@ -1,4 +1,4 @@
import { request } from 'umi';
import { request } from '@umijs/max';
import { DimensionType, ModelType, PluginType } from './type';
export function savePlugin(params: Partial<PluginType>) {

View File

@@ -7,7 +7,7 @@ import { XFlowGraphCommands, XFlowNodeCommands, XFlowEdgeCommands } from '@antv/
import { CanvasMiniMap, CanvasScaleToolbar, CanvasSnapline } from '@antv/xflow';
import { MODELS } from '@antv/xflow';
import GraphToolbar from './GraphToolbar/index';
import { connect } from 'umi';
import { connect } from '@umijs/max';
/** 配置画布 */
import { useGraphConfig } from './config-graph';

View File

@@ -1,7 +1,7 @@
import { message, Tabs, Button, Space } from 'antd';
import React, { useState, useEffect } from 'react';
import { getTagData } from '../service';
import { useParams, history } from 'umi';
import { useParams, history } from '@umijs/max';
import styles from './style.less';
import { ArrowLeftOutlined } from '@ant-design/icons';
import TagTrendSection from './components/TagTrendSection';

View File

@@ -2,7 +2,7 @@ import type { ActionType, ProColumns } from '@ant-design/pro-components';
import { ProTable } from '@ant-design/pro-components';
import { message, Space, Popconfirm } from 'antd';
import React, { useRef, useState, useEffect } from 'react';
import { useModel } from 'umi';
import { useModel } from '@umijs/max';
import { SENSITIVE_LEVEL_ENUM } from '../constant';
import { getTagList, deleteTag, batchDeleteTag, getTagObjectList } from '../service';
import TagFilter from './components/TagFilter';

View File

@@ -36,7 +36,7 @@ import TableTitleTooltips from '../../components/TableTitleTooltips';
import { createMetric, updateMetric, mockMetricAlias, getMetricTags } from '../../service';
import { MetricSettingKey, MetricSettingWording } from '../constants';
import { ISemantic } from '../../data';
import { history } from 'umi';
import { history } from '@umijs/max';
export type CreateFormProps = {
datasourceId?: number;

View File

@@ -1,5 +1,5 @@
import React, { useEffect, useState, useRef } from 'react';
import { useModel } from 'umi';
import { useModel } from '@umijs/max';
import {
typeConfigs,
formatterRelationData,

View File

@@ -1,6 +1,6 @@
// import { Radio } from 'antd';
import React, { useState } from 'react';
import { connect } from 'umi';
import { connect } from '@umijs/max';
import styles from './components/style.less';
import type { StateType } from './model';
import { SemanticNodeType } from './enum';

View File

@@ -1,7 +1,7 @@
import React, { useEffect, useState, useRef } from 'react';
import { Button, message, Form, Space, Drawer, Input } from 'antd';
import { ProCard } from '@ant-design/pro-components';
import { useModel } from 'umi';
import { useModel } from '@umijs/max';
import { createGroupAuth, updateGroupAuth } from '../../service';
import PermissionCreateForm from './PermissionCreateForm';
import type { StateType } from '../../model';