-
Notifications
You must be signed in to change notification settings - Fork 14.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add Current time-range options for time filter (#28637)
Co-authored-by: Evan Rusackas <[email protected]>
- Loading branch information
Showing
9 changed files
with
205 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
65 changes: 65 additions & 0 deletions
65
...end/src/explore/components/controls/DateFilterControl/components/CurrentCalendarFrame.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
/** | ||
* 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 React, { useEffect } from 'react'; | ||
import { t } from '@superset-ui/core'; | ||
import { Radio } from 'src/components/Radio'; | ||
import { | ||
CURRENT_RANGE_OPTIONS, | ||
CURRENT_CALENDAR_RANGE_SET, | ||
} from 'src/explore/components/controls/DateFilterControl/utils'; | ||
import { CurrentRangeType, CurrentWeek, FrameComponentProps } from '../types'; | ||
|
||
export function CurrentCalendarFrame({ onChange, value }: FrameComponentProps) { | ||
useEffect(() => { | ||
if (!CURRENT_CALENDAR_RANGE_SET.has(value as CurrentRangeType)) { | ||
onChange(CurrentWeek); | ||
} | ||
}, [value]); | ||
|
||
if (!CURRENT_CALENDAR_RANGE_SET.has(value as CurrentRangeType)) { | ||
return null; | ||
} | ||
|
||
return ( | ||
<> | ||
<div className="section-title"> | ||
{t('Configure Time Range: Current...')} | ||
</div> | ||
<Radio.Group | ||
value={value} | ||
onChange={(e: any) => { | ||
let newValue = e.target.value; | ||
// Sanitization: Trim whitespace | ||
newValue = newValue.trim(); | ||
// Validation: Check if the value is non-empty | ||
if (newValue === '') { | ||
return; | ||
} | ||
onChange(newValue); | ||
}} | ||
> | ||
{CURRENT_RANGE_OPTIONS.map(({ value, label }) => ( | ||
<Radio key={value} value={value} className="vertical-radio"> | ||
{label} | ||
</Radio> | ||
))} | ||
</Radio.Group> | ||
</> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
37 changes: 37 additions & 0 deletions
37
...end/src/explore/components/controls/DateFilterControl/tests/CurrentCalendarFrame.test.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
/** | ||
* 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 React from 'react'; | ||
import { render } from '@testing-library/react'; | ||
import '@testing-library/jest-dom/extend-expect'; // For advanced DOM assertions | ||
import { CurrentCalendarFrame } from '../components/CurrentCalendarFrame'; | ||
import { CurrentWeek } from '../types'; | ||
|
||
const mockOnChange = jest.fn(); | ||
|
||
test('calls onChange(CurrentWeek) when value is invalid', () => { | ||
render(<CurrentCalendarFrame onChange={mockOnChange} value="InvalidValue" />); | ||
expect(mockOnChange).toHaveBeenCalledWith(CurrentWeek); | ||
}); | ||
|
||
test('returns null if value is not a valid CurrentRangeType', () => { | ||
const { container } = render( | ||
<CurrentCalendarFrame onChange={mockOnChange} value="InvalidValue" />, | ||
); | ||
expect(container.childNodes.length).toBe(0); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters