66 lines
1.7 KiB
TypeScript
66 lines
1.7 KiB
TypeScript
/*
|
||
* Copyright 2025 coze-dev Authors
|
||
*
|
||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||
* you may not use this file except in compliance with the License.
|
||
* You may obtain a copy of the License at
|
||
*
|
||
* http://www.apache.org/licenses/LICENSE-2.0
|
||
*
|
||
* Unless required by applicable law or agreed to in writing, software
|
||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
* See the License for the specific language governing permissions and
|
||
* limitations under the License.
|
||
*/
|
||
|
||
/* eslint-disable no-magic-numbers */
|
||
export enum WidthThresholds {
|
||
Small = 1280,
|
||
Medium = 1400,
|
||
Large = 1600,
|
||
Default = 1300,
|
||
}
|
||
|
||
export enum ColumnSize {
|
||
Small = 76,
|
||
Medium = 136,
|
||
Large = 160,
|
||
Default = 80,
|
||
}
|
||
|
||
type MinWidth = 'auto' | number;
|
||
|
||
interface WidthRange {
|
||
threshold: WidthThresholds;
|
||
columnWidth: ColumnSize;
|
||
}
|
||
|
||
const defaultRange = {
|
||
hreshold: WidthThresholds.Default,
|
||
columnWidth: ColumnSize.Default,
|
||
};
|
||
|
||
const colWidthRanges: WidthRange[] = [
|
||
{ threshold: WidthThresholds.Large, columnWidth: ColumnSize.Large },
|
||
{ threshold: WidthThresholds.Medium, columnWidth: ColumnSize.Medium },
|
||
{ threshold: WidthThresholds.Small, columnWidth: ColumnSize.Small },
|
||
];
|
||
|
||
export const responsiveTableColumn = (
|
||
width: number,
|
||
minWidth: MinWidth = ColumnSize.Medium,
|
||
): ColumnSize | string => {
|
||
if (minWidth === 'auto' || typeof minWidth !== 'number') {
|
||
return 'auto';
|
||
}
|
||
|
||
// 查找第一个符合条件的项
|
||
const range =
|
||
colWidthRanges.find(colWidth => width >= colWidth.threshold) ||
|
||
defaultRange;
|
||
|
||
// 返回 minWidth 或找到的 columnWidth,取决于哪个更大
|
||
return Math.max(minWidth, range.columnWidth);
|
||
};
|