mui-modal-provider icon indicating copy to clipboard operation
mui-modal-provider copied to clipboard

destroy is always called regardless of options.

Open michaeltford opened this issue 1 year ago • 2 comments

disableAutoDestroy: false and destroyOnClose : false are not honored (at least not always).

https://github.com/Quernest/mui-modal-provider/blob/master/src/modal-provider.tsx#L165

The onExited should have an options (options.destroyOnClose || disableAutoDestroy) check before calling destroy?

michaeltford avatar Jul 02 '23 19:07 michaeltford

disableAutoDestroy: false and destroyOnClose : false are not honored (at least not always).

https://github.com/Quernest/mui-modal-provider/blob/master/src/modal-provider.tsx#L165

The onExited should have an options (options.destroyOnClose || disableAutoDestroy) check before calling destroy?

Hi @michaeltford, thank you for your comment :)

In the current implementation, the function show creates a unique key with a reference to the dialog component, its props, and options.

And the destroy function clears that key.

This is needed so that when opening/closing windows the state does not grow.

I don't see a problem with it. However, I have an interesting idea about reusing the key and optionally deleting it, for example, if the keepMounted prop is set to true

What do you think?

Quernest avatar Jul 08 '23 13:07 Quernest

@Quernest, thank you for the response and sorry for the late response. I didn't realize that you had responded to me :-(.

I agree with your point about not wanting to grow and a keepMounted would be an alternative. I thought that is what disabledAutoDestory effective did. My use case is that I have a find dialog (that I don't want to unmount because it has a bunch of transient state) on hide.

michaeltford avatar Sep 09 '23 20:09 michaeltford