2021-08-30 15:11:21 +05:00
|
|
|
|
import { ReactNode } from 'react'
|
2021-08-20 12:31:24 +05:00
|
|
|
|
export { Table } from 'antd'
|
2021-08-20 10:49:20 +05:00
|
|
|
|
export { EditableTable } from './EditableTable'
|
|
|
|
|
export { DatePickerWrapper } from './DatePickerWrapper'
|
2021-08-20 12:31:24 +05:00
|
|
|
|
export { SelectFromDictionary } from './SelectFromDictionary'
|
2021-08-20 10:49:20 +05:00
|
|
|
|
|
|
|
|
|
export const RegExpIsFloat = /^[-+]?\d+\.?\d*$/
|
|
|
|
|
export const formatDate='YYYY.MM.DD HH:mm'
|
|
|
|
|
|
|
|
|
|
export const numericColumnOptions = {
|
|
|
|
|
editable: true,
|
|
|
|
|
initialValue: 0,
|
|
|
|
|
width:100,
|
|
|
|
|
formItemRules: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: `Введите число`,
|
|
|
|
|
pattern: RegExpIsFloat,
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
};
|
|
|
|
|
|
2021-08-30 10:04:44 +05:00
|
|
|
|
/*
|
2021-08-20 10:49:20 +05:00
|
|
|
|
other - объект с дополнительными свойствами колонки
|
|
|
|
|
поддерживаются все базовые свойства из описания https://ant.design/components/table/#Column
|
2021-08-30 10:04:44 +05:00
|
|
|
|
плю дополнительные для колонок EditableTable: */
|
|
|
|
|
interface columnPropsOther {
|
|
|
|
|
// редактируемая колонка
|
|
|
|
|
editable?: boolean
|
|
|
|
|
// react компонента редактора
|
2021-08-30 15:11:21 +05:00
|
|
|
|
input?: ReactNode
|
2021-08-30 10:04:44 +05:00
|
|
|
|
// значение может быть пустым
|
|
|
|
|
isRequired?: boolean
|
|
|
|
|
// css класс для <FormItem/>, если требуется
|
|
|
|
|
formItemClass?: string
|
|
|
|
|
// массив правил валидации значений https://ant.design/components/form/#Rule
|
|
|
|
|
formItemRules?: any[]
|
|
|
|
|
// дефолтное значение при добавлении новой строки
|
|
|
|
|
initialValue?: string|number
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-30 15:11:21 +05:00
|
|
|
|
export const makeColumn = (title:string | ReactNode, key:string, other?:columnPropsOther) => ({
|
2021-08-20 10:49:20 +05:00
|
|
|
|
title: title,
|
|
|
|
|
key: key,
|
|
|
|
|
dataIndex: key,
|
|
|
|
|
...other,
|
|
|
|
|
})
|
|
|
|
|
|
2021-08-30 15:11:21 +05:00
|
|
|
|
export const makeColumnsPlanFact = (title:string | ReactNode, key:string|string[], columsOther?:any|any[], gruopOther?:any) =>
|
2021-08-20 10:49:20 +05:00
|
|
|
|
{
|
|
|
|
|
let keyPlanLocal = key
|
|
|
|
|
let keyFactLocal = key
|
|
|
|
|
|
|
|
|
|
if(key instanceof Array){
|
|
|
|
|
keyPlanLocal = key[0]
|
|
|
|
|
keyFactLocal = key[1]
|
|
|
|
|
}else{
|
|
|
|
|
keyPlanLocal = key + 'Plan'
|
|
|
|
|
keyFactLocal = key + 'Fact'
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let columsOtherLoacl :any[2]
|
|
|
|
|
if(columsOther instanceof Array)
|
|
|
|
|
columsOtherLoacl = [columsOther[0], columsOther[1]]
|
|
|
|
|
else
|
|
|
|
|
columsOtherLoacl = [columsOther, columsOther]
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
title: title,
|
|
|
|
|
...gruopOther,
|
|
|
|
|
children: [
|
|
|
|
|
makeColumn('план', keyPlanLocal, columsOtherLoacl[0]),
|
|
|
|
|
makeColumn('факт', keyFactLocal, columsOtherLoacl[1]),
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-08-25 10:54:07 +05:00
|
|
|
|
|
|
|
|
|
export const makeFilterTextMatch = (key: string | number) => (filterValue: string | number, dataItem: any) =>
|
|
|
|
|
dataItem[key] === filterValue
|
|
|
|
|
|
2021-08-30 12:39:46 +05:00
|
|
|
|
export const makeNumericSorter = (key: string) => (a: any, b: any) => a[key] - b[key]
|
2021-08-25 10:54:07 +05:00
|
|
|
|
|
2021-08-30 12:39:46 +05:00
|
|
|
|
export const makeStringSorter = (key: string) => (a: any, b: any) =>
|
2021-08-25 10:54:07 +05:00
|
|
|
|
{
|
2021-08-30 12:39:46 +05:00
|
|
|
|
for (let i = 0; i < a.length; i++) {
|
|
|
|
|
if (isNaN(b.charCodeAt(i)) || (a.charCodeAt(i) > b.charCodeAt(i)))
|
|
|
|
|
return 1
|
2021-08-25 10:54:07 +05:00
|
|
|
|
|
2021-08-30 12:39:46 +05:00
|
|
|
|
if (a.charCodeAt(i) > b.charCodeAt(i))
|
|
|
|
|
return -1
|
|
|
|
|
}
|
|
|
|
|
return 0
|
2021-08-25 10:54:07 +05:00
|
|
|
|
}
|
|
|
|
|
|
2021-08-30 15:53:08 +05:00
|
|
|
|
export const makeDateSorter = (key: string) => (a: any, b: any) => {
|
|
|
|
|
const date = new Date(a[key])
|
|
|
|
|
|
|
|
|
|
if(Number.isNaN(date.getTime()))
|
|
|
|
|
throw new Error('Date column contains not date formatted string(s)')
|
|
|
|
|
|
|
|
|
|
return date.getTime() - new Date(b[key]).getTime()
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-30 12:39:46 +05:00
|
|
|
|
export const makeGroupColumn = (title: string, children: object[]) => ({
|
2021-08-25 10:54:07 +05:00
|
|
|
|
title: title,
|
|
|
|
|
children: children,
|
|
|
|
|
})
|
|
|
|
|
|
2021-08-30 12:39:46 +05:00
|
|
|
|
export const makeTextColumn = (title: string, dataIndex: string,
|
|
|
|
|
filters: object[], sorter?: (key: string) => any, render?: any, other?: any) => ({
|
|
|
|
|
title: title,
|
|
|
|
|
dataIndex: dataIndex,
|
|
|
|
|
key: dataIndex,
|
|
|
|
|
filters: filters,
|
|
|
|
|
onFilter: filters ? makeFilterTextMatch(dataIndex) : null,
|
|
|
|
|
sorter: sorter ? makeStringSorter(dataIndex) : null,
|
|
|
|
|
render: render,
|
|
|
|
|
...other
|
2021-08-25 10:54:07 +05:00
|
|
|
|
})
|
|
|
|
|
|
2021-08-30 12:39:46 +05:00
|
|
|
|
export const makeNumericColumn = (title: string, dataIndex: string,
|
|
|
|
|
filters: object[], filterDelegate: (key: string | number) => any, width: string) => ({
|
|
|
|
|
title: title,
|
|
|
|
|
dataIndex: dataIndex,
|
|
|
|
|
key: dataIndex,
|
|
|
|
|
filters: filters,
|
|
|
|
|
onFilter: filterDelegate ? filterDelegate(dataIndex) : null,
|
|
|
|
|
sorter: makeNumericSorter(dataIndex),
|
2021-08-31 11:55:26 +05:00
|
|
|
|
width: width,
|
|
|
|
|
align: 'right'
|
2021-08-25 10:54:07 +05:00
|
|
|
|
})
|
|
|
|
|
|
2021-08-30 12:39:46 +05:00
|
|
|
|
export const makeNumericColumnPlanFact = (title: string, dataIndex: string, filters: object[], filterDelegate: (key: string | number) => any, width: string) =>
|
2021-08-25 10:54:07 +05:00
|
|
|
|
makeGroupColumn( title, [
|
2021-08-30 12:13:30 +05:00
|
|
|
|
makeNumericColumn('п', dataIndex + 'Plan', filters, filterDelegate, width),
|
|
|
|
|
makeNumericColumn('ф', dataIndex + 'Fact', filters, filterDelegate, width),
|
2021-08-25 10:54:07 +05:00
|
|
|
|
])
|
|
|
|
|
|
2021-08-20 10:49:20 +05:00
|
|
|
|
type PaginationContainer = {
|
|
|
|
|
skip?: number;
|
|
|
|
|
take?: number;
|
|
|
|
|
count?: number;
|
|
|
|
|
items?: any[] | null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export const makePaginationObject = (paginationContainer:PaginationContainer, ...other:any) => {
|
|
|
|
|
let page = 1 + Math.floor((paginationContainer.skip??0) /(paginationContainer.take??1));
|
|
|
|
|
return {
|
|
|
|
|
...other,
|
|
|
|
|
pageSize: paginationContainer.take,
|
|
|
|
|
total: paginationContainer.count ?? paginationContainer.items?.length ?? 0,
|
|
|
|
|
current: page,
|
|
|
|
|
}
|
2021-08-20 12:31:24 +05:00
|
|
|
|
}
|