Get 2024 Templates Mega Bundle!14 Bootstrap, Vue & React Templates + 3 Vector Sets
Get for 99$

[React] Fix to prevent hover when clicking on sidebar toggle button


In component demo1/src/_metronic/layout/components/sidebar/SidebarLogo.tsx.


  1. On sidebar toggle element (element with id kt_app_sidebar_toggle) add attribute ref={toggleRef}

  2. Add a new property for the component, to pass sidebar element.

    type PropsType = {
    sidebarRef: MutableRefObject<HTMLDivElement | null>
    }

    const SidebarLogo = (props: PropsType) => { ... }


  3. Add a new ref variable and useEffect function as shown below.


    const toggleRef = useRef<HTMLDivElement>(null);

    useEffect(()=>{
    setTimeout(()=>{
    const toggleObj = ToggleComponent.getInstance(
    toggleRef.current!
    ) as ToggleComponent | null;

    if (toggleObj === null) {
    return;
    }

    // Add a class to prevent sidebar hover effect after toggle click
    toggleObj.on("kt.toggle.change", function () {
    // Set animation state
    props.sidebarRef.current!.classList.add("animating");

    // Wait till animation finishes
    setTimeout(function () {
    // Remove animation state
    props.sidebarRef.current!.classList.remove("animating");
    }, 300);
    });
    }, 600)
    }, [toggleRef, props.sidebarRef]);




In component demo1/src/_metronic/layout/components/sidebar/Sidebar.tsx.

  1. Add attribute ref={sidebarRef} on sidebar element (element with id kt_app_sidebar).

  2. Then add a new ref variable.


    const sidebarRef = useRef<HTMLDivElement>(null);


  3. Pass sidebar ref to SidebarLogo component.

    <SidebarLogo sidebarRef={sidebarRef}/>



Text formatting options
Submit
Here's a how to add some HTML formatting to your comment:
  • <pre></pre> for JS codes block
  • <pre lang="html"></pre> for HTML code block
  • <pre lang="scss"></pre> for SCSS code block
  • <pre lang="php"></pre> for PHP code block
  • <code></code> for single line of code
  • <strong></strong> to make things bold
  • <em></em> to emphasize
  • <ul><li></li></ul>  to make list
  • <ol><li></li></ol>  to make ordered list
  • <h3></h3> to make headings
  • <a></a> for links
  • <img> to paste in an image
  • <blockquote></blockquote> to quote somebody
  • happy  :)
  • shocked  :|
  • sad  :(

Replies (0)