fix: Preserves selected scopes when toggling between scope types (#23475)
This commit is contained in:
parent
439d687e1f
commit
80d1e4ffa3
|
|
@ -129,7 +129,7 @@ describe('FilterScope', () => {
|
|||
expect(screen.getByRole('tree')).toBeInTheDocument();
|
||||
expect(
|
||||
document.querySelectorAll('.ant-tree-checkbox-checked').length,
|
||||
).toBe(1);
|
||||
).toBe(4);
|
||||
});
|
||||
});
|
||||
});
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@
|
|||
* under the License.
|
||||
*/
|
||||
|
||||
import React, { FC, useCallback, useState } from 'react';
|
||||
import React, { FC, useCallback, useRef, useState } from 'react';
|
||||
import {
|
||||
NativeFilterScope,
|
||||
styled,
|
||||
|
|
@ -67,6 +67,7 @@ const FilterScope: FC<FilterScopeProps> = ({
|
|||
const [initialFilterScope] = useState(
|
||||
filterScope || getDefaultScopeValue(chartId, initiallyExcludedCharts),
|
||||
);
|
||||
const lastSpecificScope = useRef(initialFilterScope);
|
||||
const [initialScopingType] = useState(
|
||||
isScopingAll(initialFilterScope, chartId)
|
||||
? ScopingType.all
|
||||
|
|
@ -78,10 +79,13 @@ const FilterScope: FC<FilterScopeProps> = ({
|
|||
|
||||
const onUpdateFormValues = useCallback(
|
||||
(formValues: any) => {
|
||||
if (formScopingType === ScopingType.specific) {
|
||||
lastSpecificScope.current = formValues.scope;
|
||||
}
|
||||
updateFormValues(formValues);
|
||||
setHasScopeBeenModified(true);
|
||||
},
|
||||
[updateFormValues],
|
||||
[formScopingType, updateFormValues],
|
||||
);
|
||||
|
||||
const updateScopes = useCallback(() => {
|
||||
|
|
@ -113,12 +117,11 @@ const FilterScope: FC<FilterScopeProps> = ({
|
|||
>
|
||||
<Radio.Group
|
||||
onChange={({ target: { value } }) => {
|
||||
if (value === ScopingType.all) {
|
||||
const scope = getDefaultScopeValue(chartId);
|
||||
updateFormValues({
|
||||
scope,
|
||||
});
|
||||
}
|
||||
const scope =
|
||||
value === ScopingType.all
|
||||
? getDefaultScopeValue(chartId)
|
||||
: lastSpecificScope.current;
|
||||
updateFormValues({ scope });
|
||||
setHasScopeBeenModified(true);
|
||||
forceUpdate();
|
||||
}}
|
||||
|
|
|
|||
Loading…
Reference in New Issue