1
0
Fork 0
mirror of synced 2024-08-23 05:51:29 +12:00

Merge branch 'master' into BUDI-8279/prevent-changing-date-or-time-only-when-fetched

This commit is contained in:
Adria Navarro 2024-05-23 13:00:27 +02:00 committed by GitHub
commit c7a4179c40
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 9 additions and 1 deletions

View file

@ -168,7 +168,11 @@ export const stringifyDate = (
// Ensure we use the correct offset for the date
const referenceDate = value.toDate()
const offset = referenceDate.getTimezoneOffset() * 60000
return new Date(value.valueOf() - offset).toISOString().slice(0, -1)
const date = new Date(value.valueOf() - offset)
if (timeOnly) {
return date.toISOString().slice(11, 19)
}
return date.toISOString().slice(0, -1)
}
// For date-only fields, construct a manual timestamp string without a time

View file

@ -205,6 +205,10 @@ export async function validate({
} catch (err) {
errors[fieldName] = [`Contains invalid JSON`]
}
} else if (type === FieldType.DATETIME && column.timeOnly) {
if (row[fieldName] && !row[fieldName].match(/^(\d+)(:[0-5]\d){1,2}$/)) {
errors[fieldName] = [`${fieldName} is not a valid time`]
}
} else {
res = validateJs.single(row[fieldName], constraints)
}