|
|
|
@ -102,21 +102,17 @@ export const fieldRequiredValidator = () => {
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
export const fieldLengthValidator = (sqlClientType: string) => { |
|
|
|
|
export const fieldLengthValidator = () => { |
|
|
|
|
return { |
|
|
|
|
validator: (rule: any, value: any) => { |
|
|
|
|
const { t } = getI18n().global |
|
|
|
|
|
|
|
|
|
// no limit for sqlite but set as 255
|
|
|
|
|
let fieldLengthLimit = 255 |
|
|
|
|
|
|
|
|
|
if (sqlClientType === 'mysql2' || sqlClientType === 'mysql') { |
|
|
|
|
fieldLengthLimit = 64 |
|
|
|
|
} else if (sqlClientType === 'pg') { |
|
|
|
|
fieldLengthLimit = 59 |
|
|
|
|
} else if (sqlClientType === 'mssql') { |
|
|
|
|
fieldLengthLimit = 128 |
|
|
|
|
} |
|
|
|
|
/// mysql allows 64 characters for column_name
|
|
|
|
|
// postgres allows 59 characters for column_name
|
|
|
|
|
// mssql allows 128 characters for column_name
|
|
|
|
|
// sqlite allows any number of characters for column_name
|
|
|
|
|
// We allow 255 for all databases, truncate will be handled by backend for column_name
|
|
|
|
|
const fieldLengthLimit = 255 |
|
|
|
|
|
|
|
|
|
return new Promise((resolve, reject) => { |
|
|
|
|
if (value?.length > fieldLengthLimit) { |
|
|
|
|