codeant-ai-for-open-source[bot] commented on code in PR #44527: URL: https://github.com/apache/superset/pull/44527#discussion_r4089662410
########## superset-frontend/src/filters/components/DateRange/utils.ts: ########## @@ -0,0 +1,41 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you 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. + */ +import dayjs, { Dayjs } from 'dayjs'; + +export const DATE_FORMAT = 'YYYY-MM-DD'; +export const RANGE_SEPARATOR = ' : '; + +export type DateRangeValue = [Dayjs | null, Dayjs | null] | null; + +export function parseTimeRange(value?: string | null): DateRangeValue { + if (!value) return null; + const parts = value.split(RANGE_SEPARATOR); + if (parts.length !== 2) return null; + const [start, end] = parts; + const startDate = dayjs(start); + const endDate = dayjs(end); + if (!startDate.isValid() || !endDate.isValid()) return null; + return [startDate, endDate]; +} + +export function formatTimeRange(dates: DateRangeValue): string | undefined { + const [start, end] = dates ?? [null, null]; + if (!start || !end) return undefined; + return `${start.format(DATE_FORMAT)}${RANGE_SEPARATOR}${end.format(DATE_FORMAT)}`; Review Comment: ✅ **CodeAnt verified this suggestion was addressed in subsequent commits and marked this thread resolved** as of `654ab2c`. The formatter now adds one day to the selected end date before serializing it as the exclusive upper bound, and the parser subtracts one day when displaying it back. <sub>If that's not right, unresolve this thread and CodeAnt will leave it open.</sub> <!-- codeant-auto-resolve-reply --> -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
