@adaptabletools/adaptable
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
24 lines (23 loc) • 1.33 kB
JavaScript
import * as React from 'react';
import { Flex } from 'rebass';
import { NewScopeComponent } from '../../Components/NewScopeComponent';
import { useOnePageAdaptableWizardContext } from '../../Wizard/OnePageAdaptableWizard';
export const FlashingAlertScopeWizardSection = (props) => {
const { data, api } = useOnePageAdaptableWizardContext();
const availableColumns = React.useMemo(() => api.columnApi.getNonSpecialColumns(), []);
return (React.createElement(Flex, { flexDirection: "column", style: { height: '100%' }, padding: 2 },
React.createElement(NewScopeComponent, { descriptions: {
rowScope: 'Changes anywhere in the row will trigger an Flashing Cell',
columnScope: 'Changes in selected columns will trigger an Flashing Cell',
}, scopeColumns: availableColumns, scope: data.Scope, updateScope: (Scope) => {
const newData = { ...data, Scope };
if (newData.Rule.Predicates) {
// when scope is changed, reset the rule to predicate of AnyChange
// if it was set to a predicate before
newData.Rule = {
Predicates: [{ PredicateId: 'AnyChange' }],
};
}
props.onChange(newData);
} })));
};