Code split ag-grid

This commit is contained in:
jeffvli
2022-12-09 19:00:09 -08:00
parent 2711fafb06
commit 71a591792a
12 changed files with 1380 additions and 251 deletions
+5 -1
View File
@@ -1,4 +1,6 @@
import { useEffect } from 'react';
import { ClientSideRowModelModule } from '@ag-grid-community/client-side-row-model';
import { ModuleRegistry } from '@ag-grid-community/core';
import { MantineProvider } from '@mantine/core';
import { ModalsProvider } from '@mantine/modals';
import { NotificationsProvider } from '@mantine/notifications';
@@ -10,7 +12,9 @@ import { queryClient } from './lib/react-query';
import { AppRouter } from './router/app-router';
import { useSettingsStore } from './store/settings.store';
import './styles/global.scss';
import 'ag-grid-community/styles/ag-grid.css';
import '@ag-grid-community/styles/ag-grid.css';
ModuleRegistry.registerModules([ClientSideRowModelModule]);
initSimpleImg({ threshold: 0.05 }, true);
@@ -1,5 +1,5 @@
import React from 'react';
import type { ICellRendererParams } from 'ag-grid-community';
import type { ICellRendererParams } from '@ag-grid-community/core';
import { generatePath } from 'react-router';
import { Link } from 'react-router-dom';
import type { AlbumArtist, Artist } from '/@/api/types';
@@ -1,5 +1,5 @@
import React from 'react';
import type { ICellRendererParams } from 'ag-grid-community';
import type { ICellRendererParams } from '@ag-grid-community/core';
import { generatePath } from 'react-router';
import { Link } from 'react-router-dom';
import type { AlbumArtist, Artist } from '/@/api/types';
@@ -1,5 +1,5 @@
import React, { useMemo } from 'react';
import type { ICellRendererParams } from 'ag-grid-community';
import type { ICellRendererParams } from '@ag-grid-community/core';
import { motion } from 'framer-motion';
import { generatePath } from 'react-router';
import { Link } from 'react-router-dom';
@@ -1,4 +1,4 @@
import type { ICellRendererParams } from 'ag-grid-community';
import type { ICellRendererParams } from '@ag-grid-community/core';
import { Link } from 'react-router-dom';
import styled from 'styled-components';
import { Text } from '/@/components/text';
@@ -1,5 +1,5 @@
import React from 'react';
import type { ICellRendererParams } from 'ag-grid-community';
import type { ICellRendererParams } from '@ag-grid-community/core';
import { Link } from 'react-router-dom';
import type { AlbumArtist, Artist } from '/@/api/types';
import { Text } from '/@/components/text';
@@ -1,4 +1,4 @@
import type { IHeaderParams } from 'ag-grid-community';
import type { IHeaderParams } from '@ag-grid-community/core';
import { FiClock } from 'react-icons/fi';
export interface ICustomHeaderParams extends IHeaderParams {
@@ -1,5 +1,5 @@
import type { ReactNode } from 'react';
import type { IHeaderParams } from 'ag-grid-community';
import type { IHeaderParams } from '@ag-grid-community/core';
import { AiOutlineNumber } from 'react-icons/ai';
import { FiClock } from 'react-icons/fi';
import styled from 'styled-components';
@@ -7,10 +7,10 @@ import type {
IHeaderParams,
ValueFormatterParams,
ColDef,
} from 'ag-grid-community';
import type { AgGridReactProps } from 'ag-grid-react';
import { AgGridReact } from 'ag-grid-react';
import type { AgGridReact as AgGridReactType } from 'ag-grid-react/lib/agGridReact';
} from '@ag-grid-community/core';
import type { AgGridReactProps } from '@ag-grid-community/react';
import { AgGridReact } from '@ag-grid-community/react';
import type { AgGridReact as AgGridReactType } from '@ag-grid-community/react/lib/agGridReact';
import formatDuration from 'format-duration';
import { generatePath } from 'react-router';
import styled from 'styled-components';
@@ -4,8 +4,8 @@ import type {
ColDef,
RowClassRules,
RowDragEvent,
} from 'ag-grid-community';
import 'ag-grid-community/styles/ag-theme-alpine.css';
} from '@ag-grid-community/core';
import '@ag-grid-community/styles/ag-theme-alpine.css';
import {
VirtualGridAutoSizerContainer,
VirtualGridContainer,