-
Notifications
You must be signed in to change notification settings - Fork 176
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Action FlexLayout_MaximizeToggle (onAction) dalayed execution #355
Comments
so, you want to resize your charts whenever the contained tab is resized? |
Thank you for your response. |
I kinda solved the issue by using instead of onAction, other triggers like onRenderTab and onModelChange, it work in most cases but not always, so a solution with onAction would be perfect. |
I had a similar problem to yours. <ElementResizeListener onResize={this.updateMyChart} /> import React, { useCallback, useEffect, useRef, RefObject } from 'react';
interface Props {
onResize: (event: Event) => void;
}
export const ElementResizeListener: React.FC<Props> = ({ onResize }) => {
const rafRef = useRef(0);
const objectRef: RefObject<HTMLObjectElement> = useRef(null);
const onResizeRef = useRef(onResize);
onResizeRef.current = onResize;
const _onResize = useCallback(
(e: Event) => {
if (rafRef.current) {
cancelAnimationFrame(rafRef.current);
}
rafRef.current = requestAnimationFrame(() => {
onResizeRef.current(e);
});
},
[]);
const onLoad = useCallback(
() => {
const obj = objectRef.current;
if (obj && obj.contentDocument && obj.contentDocument.defaultView) {
obj.contentDocument.defaultView.addEventListener('resize', _onResize);
}
},
[_onResize]);
useEffect(
() => {
const obj = objectRef.current;
return () => {
if (obj && obj.contentDocument && obj.contentDocument.defaultView) {
obj.contentDocument.defaultView.removeEventListener('resize', _onResize);
}
};
},
[_onResize]);
return (
<object
onLoad={onLoad}
ref={objectRef} tabIndex={-1}
type={'text/html'}
data={'about:blank'}
title={' '}
style={{
height: '100%',
left: 0,
opacity: 0,
pointerEvents: 'none',
position: 'absolute',
top: 0,
width: '100%',
zIndex: -1,
}}
/>
);
};
export default ElementResizeListener; |
Describe the bug
Dear, I'm using your react FlexLayout component and work really well. Great Job!
I have a problem with the event FlexLayout_MaximizeToggle (and also minimize)
I need to trigger the redesign of the components inside pannels when any layout change are applied indeed i need to intercept any action perform by the user on the layout
At the moment i bind a my custom function resizeCharts() on FlexLayout onAction event.
In my code I apply the action, force update and than i have a function to reinitialize the chart inside the panel
all action except FlexLayout_MaximizeToggle are commited and exectuted before my layoutUpdate while the FlexLayout_MaximizeToggle is executed later making void the layoutUpdate actions.
Is there any wait to wait for the full execution of the FlexLayout_MaximizeToggle before going ahead with the code?
Thank you
Francesco
Your Example Website or App
No response
Steps to Reproduce the Bug or Issue
Just bind the action doAction to a funtion and put a breakboint after the doAction. The layout do not update even with a forceUpdate() when you click on the panel expand button
Expected behavior
the action FlexLayout_MaximizeToggle should be blocking or another event should be triggered after the FlexLayout_MaximizeToggle action
Operating System
any
Browser Type?
chrome
Browser Version
105.0.5195.102
Screenshots or Videos
no screenshot
Additional context
No response
The text was updated successfully, but these errors were encountered: