Skip to content

Commit 8f2abbb

Browse files
committed
Fikset relativ dato
1 parent fbb3e39 commit 8f2abbb

File tree

1 file changed

+49
-6
lines changed

1 file changed

+49
-6
lines changed

src/components/chartbuilder/DateRangePicker.tsx

+49-6
Original file line numberDiff line numberDiff line change
@@ -234,13 +234,56 @@ const DateRangePicker = forwardRef(({
234234
return { fromSQL: fromSql, toSQL: toSql };
235235
};
236236

237-
// Function to generate SQL for previous periods
237+
// Function to generate SQL for previous periods - updated for better BigQuery compatibility
238238
const generatePreviousPeriodSQL = (amount: string, unit: string): { fromSQL: string, toSQL: string } => {
239-
const normalizedUnit = unit.toUpperCase();
240-
return {
241-
fromSQL: `TIMESTAMP_SUB(CURRENT_TIMESTAMP(), INTERVAL ${amount} ${normalizedUnit})`,
242-
toSQL: `CURRENT_TIMESTAMP()`
243-
};
239+
// Handle different time units correctly for BigQuery
240+
switch(unit.toLowerCase()) {
241+
case 'minute':
242+
return {
243+
fromSQL: `TIMESTAMP_SUB(CURRENT_TIMESTAMP(), INTERVAL ${amount} MINUTE)`,
244+
toSQL: `CURRENT_TIMESTAMP()`
245+
};
246+
case 'hour':
247+
return {
248+
fromSQL: `TIMESTAMP_SUB(CURRENT_TIMESTAMP(), INTERVAL ${amount} HOUR)`,
249+
toSQL: `CURRENT_TIMESTAMP()`
250+
};
251+
case 'day':
252+
return {
253+
fromSQL: `TIMESTAMP_SUB(CURRENT_TIMESTAMP(), INTERVAL ${amount} DAY)`,
254+
toSQL: `CURRENT_TIMESTAMP()`
255+
};
256+
case 'week':
257+
// For weeks, we need to use DATE_SUB with DATE_TRUNC
258+
return {
259+
fromSQL: `TIMESTAMP(DATE_SUB(CURRENT_DATE(), INTERVAL ${amount} WEEK))`,
260+
toSQL: `CURRENT_TIMESTAMP()`
261+
};
262+
case 'month':
263+
// For months, use DATE_SUB with DATE_TRUNC
264+
return {
265+
fromSQL: `TIMESTAMP(DATE_SUB(CURRENT_DATE(), INTERVAL ${amount} MONTH))`,
266+
toSQL: `CURRENT_TIMESTAMP()`
267+
};
268+
case 'quarter':
269+
// For quarters (3 months)
270+
return {
271+
fromSQL: `TIMESTAMP(DATE_SUB(CURRENT_DATE(), INTERVAL ${Number(amount) * 3} MONTH))`,
272+
toSQL: `CURRENT_TIMESTAMP()`
273+
};
274+
case 'year':
275+
// For years, use DATE_SUB with DATE_TRUNC
276+
return {
277+
fromSQL: `TIMESTAMP(DATE_SUB(CURRENT_DATE(), INTERVAL ${amount} YEAR))`,
278+
toSQL: `CURRENT_TIMESTAMP()`
279+
};
280+
default:
281+
// Default to days if unit not recognized
282+
return {
283+
fromSQL: `TIMESTAMP_SUB(CURRENT_TIMESTAMP(), INTERVAL ${amount} DAY)`,
284+
toSQL: `CURRENT_TIMESTAMP()`
285+
};
286+
}
244287
};
245288

246289
// Apply a custom date range picked from the calendar

0 commit comments

Comments
 (0)