Skip to content
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

Bug: not allowing inner transition #5

Open
zhaoyao91 opened this issue May 7, 2021 · 2 comments
Open

Bug: not allowing inner transition #5

zhaoyao91 opened this issue May 7, 2021 · 2 comments

Comments

@zhaoyao91
Copy link

as the listener doesn't check if the event target is the current element, if inner transition end event occurs, it corrupts.

@zhaoyao91
Copy link
Author

my hotfix is

import { createSignal, createComputed, createEffect, mergeProps, Component, children } from 'solid-js';

type BoundingRect = {
  top: number;
  bottom: number;
  left: number;
  right: number;
  width: number;
  height: number;
};

type ElementInfo = {
  pos: BoundingRect;
  newPos?: BoundingRect;
  new?: boolean;
  moved?: boolean;
};

function getRect(element: Element): BoundingRect {
  const { top, bottom, left, right, width, height } = element.getBoundingClientRect();

  const parentRect = (element.parentNode! as Element).getBoundingClientRect();
  return {
    top: top - parentRect.top,
    bottom,
    left: left - parentRect.left,
    right,
    width,
    height,
  };
}

type TransitionGroupProps = {
  name?: string;
  enterActiveClass?: string;
  enterClass?: string;
  enterToClass?: string;
  exitActiveClass?: string;
  exitClass?: string;
  exitToClass?: string;
  moveClass?: string;
  onBeforeEnter?: (el: Element) => void;
  onEnter?: (el: Element, done: () => void) => void;
  onAfterEnter?: (el: Element) => void;
  onBeforeExit?: (el: Element) => void;
  onExit?: (el: Element, done: () => void) => void;
  onAfterExit?: (el: Element) => void;
  children?: any;
};

export const TransitionGroup: Component<TransitionGroupProps> = (props) => {
  const resolved = children(() => props.children);
  const name = props.name || 's';
  props = mergeProps(
    {
      name,
      enterActiveClass: name + '-enter-active',
      enterClass: name + '-enter',
      enterToClass: name + '-enter-to',
      exitActiveClass: name + '-exit-active',
      exitClass: name + '-exit',
      exitToClass: name + '-exit-to',
      moveClass: name + '-move',
    },
    props
  );
  const { onBeforeEnter, onEnter, onAfterEnter, onBeforeExit, onExit, onAfterExit } = props;
  const [combined, setCombined] = createSignal<Element[]>();
  let p: Element[] = [];
  let first = true;
  createComputed(() => {
    const c = resolved() as Element[];
    const comb = [...c];
    const next = new Set(c);
    const prev = new Set(p);
    const enterClasses = props.enterClass!.split(' ');
    const enterActiveClasses = props.enterActiveClass!.split(' ');
    const enterToClasses = props.enterToClass!.split(' ');
    const exitClasses = props.exitClass!.split(' ');
    const exitActiveClasses = props.exitActiveClass!.split(' ');
    const exitToClasses = props.exitToClass!.split(' ');
    for (let i = 0; i < c.length; i++) {
      const el = c[i];
      if (!first && !prev.has(el)) {
        onBeforeEnter && onBeforeEnter(el);
        el.classList.add(...enterClasses);
        el.classList.add(...enterActiveClasses);
        setTimeout(() => {
          el.classList.remove(...enterClasses);
          el.classList.add(...enterToClasses);
          onEnter && onEnter(el, endTransition);
          if (!onEnter || onEnter.length < 2) {
            el.addEventListener('transitionend', handleEndTransition);
            el.addEventListener('animationend', handleEndTransition);
          }
        }, 0);
        const endTransition = () => {
          if (el) {
            el.classList.remove(...enterActiveClasses);
            el.classList.remove(...enterToClasses);
            onAfterEnter && onAfterEnter(el);
          }
        };
        const handleEndTransition = (e: Event) => {
          if (el && el === e.target) {
            el.removeEventListener('transitionend', handleEndTransition);
            el.removeEventListener('animationend', handleEndTransition);
            el.classList.remove(...enterActiveClasses);
            el.classList.remove(...enterToClasses);
            onAfterEnter && onAfterEnter(el);
          }
        };
      }
    }
    for (let i = 0; i < p.length; i++) {
      const old = p[i];
      if (!next.has(old) && old.parentNode) {
        comb.splice(i, 0, old);
        onBeforeExit && onBeforeExit(old);
        old.classList.add(...exitClasses);
        old.classList.add(...exitActiveClasses);
        setTimeout(() => {
          old.classList.remove(...exitClasses);
          old.classList.add(...exitToClasses);
        }, 0);
        const endTransition = () => {
          old.classList.remove(...exitActiveClasses);
          old.classList.remove(...exitToClasses);
          onAfterExit && onAfterExit(old);
          p = p.filter((i) => i !== old);
          setCombined(p);
        };
        const handleEndTransition = (e: Event) => {
          if (old === e.target) {
            old.removeEventListener('transitionend', handleEndTransition);
            old.removeEventListener('animationend', handleEndTransition);
            old.classList.remove(...exitActiveClasses);
            old.classList.remove(...exitToClasses);
            onAfterExit && onAfterExit(old);
            p = p.filter((i) => i !== old);
            setCombined(p);
          }
        };
        onExit && onExit(old, endTransition);
        if (!onExit || onExit.length < 2) {
          old.addEventListener('transitionend', handleEndTransition);
          old.addEventListener('animationend', handleEndTransition);
        }
      }
    }
    p = comb;
    setCombined(comb);
  });

  createEffect<Map<Element, ElementInfo>>((nodes) => {
    const c = combined()!;
    c.forEach((child) => {
      let n: ElementInfo | undefined;
      if (!(n = nodes!.get(child))) {
        nodes!.set(child, (n = { pos: getRect(child), new: !first }));
      } else if (n.new) {
        n.new = false;
        n.newPos = getRect(child);
      }
      if (n.new) {
        child.addEventListener(
          'transitionend',
          () => {
            n!.new = false;
            child.parentNode && (n!.newPos = getRect(child));
          },
          { once: true }
        );
      }
      n.newPos && (n.pos = n.newPos);
      n.newPos = getRect(child);
    });
    if (first) {
      first = false;
      return nodes!;
    }
    c.forEach((child) => {
      const c = nodes!.get(child)!;
      const oldPos = c.pos;
      const newPos = c.newPos!;
      const dx = oldPos.left - newPos.left;
      const dy = oldPos.top - newPos.top;
      if (dx || dy) {
        c.moved = true;
        const s = (child as HTMLElement | SVGElement).style;
        s.transform = `translate(${dx}px,${dy}px)`;
        s.transitionDuration = '0s';
      }
    });
    document.body.offsetHeight;
    c.forEach((child) => {
      const c = nodes!.get(child)!;
      if (c.moved) {
        c.moved = false;
        const s = (child as HTMLElement | SVGElement).style;
        const moveClasses = props.moveClass!.split(' ');
        child.classList.add(...moveClasses);
        s.transform = s.transitionDuration = '';
        function endTransition(e: TransitionEvent) {
          if ((e && e.target !== child) || !child.parentNode) return;
          if (!e || /transform$/.test(e.propertyName)) {
            (child as HTMLElement | SVGElement).removeEventListener('transitionend', endTransition as EventListener);
            child.classList.remove(...moveClasses);
          }
        }
        (child as HTMLElement | SVGElement).addEventListener('transitionend', endTransition as EventListener);
      }
    });
    return nodes!;
  }, new Map());
  return combined;
};

@zhaoyao91 zhaoyao91 changed the title Bug: not allowed inner transition Bug: not allowing inner transition May 7, 2021
@thetarnav
Copy link
Member

Hey, could you provide some more info on the issue, like an example that would allow me to reproduce the issue?
Couple of things could change in those two years so maybe it's not an issue anymore 🙃

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants