Skip to content

Commit

Permalink
[TreeView] Apply experimental features in getDefaultizedParams inst…
Browse files Browse the repository at this point in the history
…ead of in the plugin render (#14661)
  • Loading branch information
flaviendelangle authored Sep 25, 2024
1 parent b2312ee commit cf3a2d7
Show file tree
Hide file tree
Showing 11 changed files with 68 additions and 50 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const useTreeViewLogExpanded = ({ params, models }) => {
};

// Sets the default value of this plugin parameters.
useTreeViewLogExpanded.getDefaultizedParams = (params) => ({
useTreeViewLogExpanded.getDefaultizedParams = ({ params }) => ({
...params,
areLogsEnabled: params.areLogsEnabled ?? false,
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ const useTreeViewLogExpanded: TreeViewPlugin<TreeViewLogExpandedSignature> = ({
};

// Sets the default value of this plugin parameters.
useTreeViewLogExpanded.getDefaultizedParams = (params) => ({
useTreeViewLogExpanded.getDefaultizedParams = ({ params }) => ({
...params,
areLogsEnabled: params.areLogsEnabled ?? false,
});
Expand Down
4 changes: 2 additions & 2 deletions docs/data/tree-view/rich-tree-view/headless/headless.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ const useCustomPlugin = ({ params }) => {

useCustomPlugin.params = { customParam: true };

useCustomPlugin.getDefaultizedParams = (params) => ({
useCustomPlugin.getDefaultizedParams = ({ params }) => ({
...params,
customParam: params.customParam ?? false,
});
Expand All @@ -76,7 +76,7 @@ useCustomPlugin.params = {
customModel: true,
};

useCustomPlugin.getDefaultizedParams = (params) => ({
useCustomPlugin.getDefaultizedParams = ({ params }) => ({
...params,
// ... other defaultized params
defaultCustomModel: params.defaultCustomModel ?? false,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,27 +20,10 @@ export const useTreeViewItemsReordering: TreeViewPlugin<UseTreeViewItemsReorderi
instance,
state,
setState,
experimentalFeatures,
}) => {
const isItemsReorderingEnabled =
params.itemsReordering && !!experimentalFeatures?.itemsReordering;

if (process.env.NODE_ENV !== 'production') {
if (
params.itemsReordering &&
(!experimentalFeatures?.indentationAtItemLevel || !experimentalFeatures?.itemsReordering)
) {
warnOnce([
'MUI X: The items reordering feature requires the `indentationAtItemLevel` and `itemsReordering` experimental features to be enabled.',
'You can do it by passing `experimentalFeatures={{ indentationAtItemLevel: true, itemsReordering: true }}` to the `RichTreeViewPro` component.',
'Check the documentation for more details: https://mui.com/x/react-tree-view/rich-tree-view/items/',
]);
}
}

const canItemBeDragged = React.useCallback(
(itemId: string) => {
if (!isItemsReorderingEnabled) {
if (!params.itemsReordering) {
return false;
}

Expand All @@ -51,7 +34,7 @@ export const useTreeViewItemsReordering: TreeViewPlugin<UseTreeViewItemsReorderi

return true;
},
[isItemsReorderingEnabled, params.isItemReorderable],
[params.itemsReordering, params.isItemReorderable],
);

const getDroppingTargetValidActions = React.useCallback(
Expand Down Expand Up @@ -256,7 +239,7 @@ export const useTreeViewItemsReordering: TreeViewPlugin<UseTreeViewItemsReorderi
},
contextValue: {
itemsReordering: {
enabled: isItemsReorderingEnabled,
enabled: params.itemsReordering,
currentDrag: state.itemsReordering,
},
},
Expand All @@ -265,10 +248,25 @@ export const useTreeViewItemsReordering: TreeViewPlugin<UseTreeViewItemsReorderi

useTreeViewItemsReordering.itemPlugin = useTreeViewItemsReorderingItemPlugin;

useTreeViewItemsReordering.getDefaultizedParams = (params) => ({
...params,
itemsReordering: params.itemsReordering ?? false,
});
useTreeViewItemsReordering.getDefaultizedParams = ({ params, experimentalFeatures }) => {
const canUseFeature =
experimentalFeatures?.indentationAtItemLevel && experimentalFeatures?.itemsReordering;

if (process.env.NODE_ENV !== 'production') {
if (params.itemsReordering && !canUseFeature) {
warnOnce([
'MUI X: The items reordering feature requires the `indentationAtItemLevel` and `itemsReordering` experimental features to be enabled.',
'You can do it by passing `experimentalFeatures={{ indentationAtItemLevel: true, itemsReordering: true }}` to the `RichTreeViewPro` component.',
'Check the documentation for more details: https://mui.com/x/react-tree-view/rich-tree-view/items/',
]);
}
}

return {
...params,
itemsReordering: canUseFeature ? (params.itemsReordering ?? false) : false,
};
};

useTreeViewItemsReordering.getInitialState = () => ({ itemsReordering: null });

Expand Down
7 changes: 4 additions & 3 deletions packages/x-tree-view/src/internals/models/plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -150,9 +150,10 @@ export type TreeRootWrapper<TSignatures extends readonly TreeViewAnyPluginSignat

export type TreeViewPlugin<TSignature extends TreeViewAnyPluginSignature> = {
(options: TreeViewPluginOptions<TSignature>): TreeViewResponse<TSignature>;
getDefaultizedParams?: (
params: TreeViewUsedParams<TSignature>,
) => TSignature['defaultizedParams'];
getDefaultizedParams?: (options: {
params: TreeViewUsedParams<TSignature>;
experimentalFeatures: TreeViewUsedExperimentalFeatures<TSignature>;
}) => TSignature['defaultizedParams'];
getInitialState?: (params: TreeViewUsedDefaultizedParams<TSignature>) => TSignature['state'];
models?: TreeViewModelsInitializer<TSignature>;
params: Record<keyof TSignature['params'], true>;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ useTreeViewExpansion.models = {

const DEFAULT_EXPANDED_ITEMS: string[] = [];

useTreeViewExpansion.getDefaultizedParams = (params) => ({
useTreeViewExpansion.getDefaultizedParams = ({ params }) => ({
...params,
defaultExpandedItems: params.defaultExpandedItems ?? DEFAULT_EXPANDED_ITEMS,
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ useTreeViewItems.getInitialState = (params) => ({
}),
});

useTreeViewItems.getDefaultizedParams = (params) => ({
useTreeViewItems.getDefaultizedParams = ({ params }) => ({
...params,
disabledItemsFocusable: params.disabledItemsFocusable ?? false,
itemChildrenIndentation: params.itemChildrenIndentation ?? '12px',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,7 @@ export const useTreeViewLabel: TreeViewPlugin<UseTreeViewLabelSignature> = ({
state,
setState,
params,
experimentalFeatures,
}) => {
if (process.env.NODE_ENV !== 'production') {
if (params.isItemEditable && !experimentalFeatures?.labelEditing) {
warnOnce([
'MUI X: The label editing feature requires the `labelEditing` experimental feature to be enabled.',
'You can do it by passing `experimentalFeatures={{ labelEditing: true}}` to the `RichTreeViewPro` component.',
'Check the documentation for more details: https://mui.com/x/react-tree-view/rich-tree-view/editing/',
]);
}
}
const editedItemRef = React.useRef(state.editedItemId);

const isItemBeingEditedRef = (itemId: TreeViewItemId) => editedItemRef.current === itemId;
Expand All @@ -32,7 +22,7 @@ export const useTreeViewLabel: TreeViewPlugin<UseTreeViewLabelSignature> = ({

const isItemBeingEdited = (itemId: TreeViewItemId) => itemId === state.editedItemId;

const isTreeViewEditable = Boolean(params.isItemEditable) && !!experimentalFeatures.labelEditing;
const isTreeViewEditable = Boolean(params.isItemEditable);

const isItemEditable = (itemId: TreeViewItemId): boolean => {
if (itemId == null || !isTreeViewEditable) {
Expand Down Expand Up @@ -95,6 +85,24 @@ export const useTreeViewLabel: TreeViewPlugin<UseTreeViewLabelSignature> = ({

useTreeViewLabel.itemPlugin = useTreeViewLabelItemPlugin;

useTreeViewLabel.getDefaultizedParams = ({ params, experimentalFeatures }) => {
const canUseFeature = experimentalFeatures?.labelEditing;
if (process.env.NODE_ENV !== 'production') {
if (params.isItemEditable && !canUseFeature) {
warnOnce([
'MUI X: The label editing feature requires the `labelEditing` experimental feature to be enabled.',
'You can do it by passing `experimentalFeatures={{ labelEditing: true}}` to the `RichTreeViewPro` component.',
'Check the documentation for more details: https://mui.com/x/react-tree-view/rich-tree-view/editing/',
]);
}
}

return {
...params,
isItemEditable: canUseFeature ? (params.isItemEditable ?? false) : false,
};
};

useTreeViewLabel.getInitialState = () => ({
editedItemId: null,
});
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { TreeViewPluginSignature } from '../../models';
import { DefaultizedProps, TreeViewPluginSignature } from '../../models';
import { TreeViewItemId } from '../../../models';
import { UseTreeViewItemsSignature } from '../useTreeViewItems';
import { TreeItem2LabelInputProps } from '../../../TreeItem2LabelInput';
Expand Down Expand Up @@ -63,13 +63,18 @@ export interface UseTreeViewLabelParameters<R extends {}> {
isItemEditable?: boolean | ((item: R) => boolean);
}

export type UseTreeViewLabelDefaultizedParameters<R extends {}> = DefaultizedProps<
UseTreeViewLabelParameters<R>,
'isItemEditable'
>;

export interface UseTreeViewLabelState {
editedItemId: string | null;
}

export type UseTreeViewLabelSignature = TreeViewPluginSignature<{
params: UseTreeViewLabelParameters<any>;
defaultizedParams: UseTreeViewLabelParameters<any>;
defaultizedParams: UseTreeViewLabelDefaultizedParameters<any>;
publicAPI: UseTreeViewLabelPublicAPI;
instance: UseTreeViewLabelInstance;
state: UseTreeViewLabelState;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ useTreeViewSelection.models = {

const DEFAULT_SELECTED_ITEMS: string[] = [];

useTreeViewSelection.getDefaultizedParams = (params) => ({
useTreeViewSelection.getDefaultizedParams = ({ params }) => ({
...params,
disableSelection: params.disableSelection ?? false,
multiSelect: params.multiSelect ?? false,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export const extractPluginParamsFromProps = <
TSignatures extends readonly TreeViewPluginSignature<any>[],
TProps extends Partial<UseTreeViewBaseProps<TSignatures>>,
>({
props: { slots, slotProps, apiRef, experimentalFeatures, ...props },
props: { slots, slotProps, apiRef, experimentalFeatures: inExperimentalFeatures, ...props },
plugins,
}: ExtractPluginParamsFromPropsParameters<
TSignatures,
Expand All @@ -54,10 +54,16 @@ export const extractPluginParamsFromProps = <
}
});

const experimentalFeatures =
inExperimentalFeatures ?? ({} as NonNullable<typeof inExperimentalFeatures>);

const defaultizedPluginParams = plugins.reduce(
(acc, plugin: TreeViewPlugin<TreeViewAnyPluginSignature>) => {
if (plugin.getDefaultizedParams) {
return plugin.getDefaultizedParams(acc);
return plugin.getDefaultizedParams({
params: acc,
experimentalFeatures,
});
}

return acc;
Expand All @@ -71,6 +77,6 @@ export const extractPluginParamsFromProps = <
pluginParams: defaultizedPluginParams,
slots: slots ?? ({} as any),
slotProps: slotProps ?? ({} as any),
experimentalFeatures: experimentalFeatures ?? ({} as any),
experimentalFeatures,
};
};

0 comments on commit cf3a2d7

Please sign in to comment.