React Vs Qwik

Несколько примеров, сравнивающих React и Qwik.

Компонент Hello world

⚛️ React

export function HelloWorld() {
  return <div>Привет, мир</div>;
}

⚡️ Qwik

export const HelloWorld = component$(() => {
  return <div>Привет, мир</div>;
});
Что такое component$ и $?

component$ используется для объявления компонента Qwik.

Знак доллара $ используется как для оптимизатора, так и для разработчика, когда Qwik разбивает ваше приложение на множество маленьких частей, которые мы называем символами.

Кнопка с обработчиком нажатия

⚛️ React

export function Button() {
  return <button onClick={() => console.log('click')}>Нажми меня</button>;
}

⚡️ Qwik

export const Button = component$(() => {
  return <button onClick$={() => console.log('click')}>Нажми меня</button>;
});
Помните $?

Обработчики событий в Qwik ведут себя так же, как и в других фреймворках, просто нужно иметь в виду, что их контент будет загружаться лениво благодаря суффиксу доллара.

Внимание ⚠️: обработчики JSX, такие как onClick$ и onInput$ выполняются только на клиенте. Потому что это события DOM, и поскольку на сервере нет DOM, они не будут выполняться на сервере.

Объявление локального состояния

⚛️ React

export function UseStateExample() {
  const [value, setValue] = useState(0);
  return <div>Значение: {value}</div>;
}

⚡️ Qwik

export const LocalStateExample = component$(() => {
  const count = useSignal(0);
  return <div>Значение: {count.value}</div>;
});
Что делать, если у меня более сложное состояние?

useStore() работает очень похоже на useSignal(), но в качестве начального значения принимает объект, и реактивность по умолчанию распространяется на вложенные объекты и массивы. Хранилище можно представить как сигнал с несколькими значениями или как объект, состоящий из нескольких сигналов.

Создание компонента счётчика

⚛️ React

export function Counter() {
  const [count, setCount] = useState(0);
  return (
    <>
      <p>Значение: {count}</p>
      <button onClick={() => setCount(count + 1)}>Увеличить</button>
    </>
  );
}

⚡️ Qwik

export const Counter = component$(() => {
  const count = useSignal(0);
  return (
    <>
      <p>Значение: {count.value}</p>
      <button onClick$={() => count.value++}>Увеличить</button>
    </>
  );
});

Использование параметров

⚛️ React

export const Parent = (() => {
  const [ count, setCount ] = useState<number>(0);
 
  const increment = (() => {
    setCount((prev) => prev + 1)
  })
  return <Child count={count} increment={increment} />;
})
 
interface ChildProps {
  count: number;
  increment: () => void;
}
 
export const Child = ((props: ChildProps) => {
  return (
    <>
      <button onClick={props.increment}>Прибавить</button>
      <p>Счёт: {props.count}</p>
    </>
  );
})

⚡️ Qwik

export const Parent = component$(() => {
  const userData = useStore({ count: 0 });
  return <Child userData={userData} />;
});
 
interface ChildProps {
  userData: { count: number };
}
 
export const Child = component$<ChildProps>(({ userData }) => {
  return (
    <>
      <button onClick$={() => userData.count++}>Прибавить</button>
      <p>Счёт: {userData.count}</p>
    </>
  );
});

Создание часов, которые тикают каждую секунду

⚛️ React

export function Clock() {
  const [seconds, setSeconds] = useState(0);
  useEffect(() => {
    const interval = setInterval(() => {
      setSeconds(seconds + 1);
    }, 1000);
    return () => clearInterval(interval);
  });
  return <p>Секунды: {seconds}</p>;
}

⚡️ Qwik

export const Clock = component$(() => {
  const seconds = useSignal(0);
  useVisibleTask$(({ cleanup }) => {
    const interval = setInterval(() => {
      seconds.value++;
    }, 1000);
    cleanup(() => clearInterval(interval));
  });
 
  return <p>Секунды: {seconds.value}</p>;
});

Выполнение запроса при каждом изменении состояния

⚛️ React

export function Fetch() {
  const [url, setUrl] = useState('https://api.github.com/repos/BuilderIO/qwik');
  const [responseJson, setResponseJson] = useState(undefined);
  useEffect(() => {
    fetch(url)
      .then((res) => res.json())
      .then((json) => setResponseJson(json));
  }, [url]);
  return (
    <>
      <p>{responseJson?.name} has {responseJson?.stargazers_count} ✨'s</p>
      <input name="url" onInput={(ev) => setUrl((ev.target as HTMLInputElement).value)} />
    </>
  );
}

⚡️ Qwik

export const Fetch = component$(() => {
  const url = useSignal('https://api.github.com/repos/BuilderIO/qwik');
  const responseJson = useSignal(undefined);
 
  useTask$(async ({ track }) => {
    track(() => url.value);
    const res = await fetch(url.value);
    const json = await res.json();
    responseJson.value = json;
  });
 
  return (
    <>
      <p>{responseJson.value?.name} имеет {responseJson.value?.stargazers_count}</p>
      <input name="url" bind:value={url} />
    </>
  );
});
Что такое useTask$ и атрибут bind?

useTask$() регистрирует хук, который будет выполняться при создании компонента, он будет запущен как минимум один раз либо на сервере, либо в браузере, в зависимости от того, где компонент будет первоначально рендериться.

Атрибут bind - это удобный API для двусторонней привязки входного значения к сигналу.

Объявление и использование контекста

⚛️ React

export const MyContext = createContext({ message: 'значение для примера' });
 
export default function Parent() {
  return (
    <MyContext.Provider value={{ message: 'обновлённое значение' }}>
      <Child />
    </MyContext.Provider>
  );
}
 
export const Child = () => {
  const value = useContext(MyContext);
  return <p>{value.message}</p>;
};

⚡️ Qwik

export const MyContext = createContextId('my-context');
 
export const Parent = component$(() => {
  const message = useSignal('some example value');
  useContextProvider(MyContext, message);
  return (
    <>
      <Child />
    </>
  );
});
 
export const Child = component$(() => {
  const message = useContext(MyContext);
  return <p>{message.value}</p>;
});
Как я могу избежать пробрасывания параметров?

Для этого достаточно создать контекст.

Достаточно создать контекст в компоненте, в котором необходимо хранить информацию, а затем в его потомках получить эту информацию через соответствующий ContextId.

Создание ввода с задержкой

⚛️ React

export const DebouncedInput = () => {
  const [value, setValue] = useState('');
  const [debouncedValue, setDebouncedValue] = useState(value);
 
  useEffect(() => {
    const debounced = setTimeout(() => setDebouncedValue(value), 1000);
 
    return () => {
      clearTimeout(debounced);
    };
  }, [value]);
 
  return (
    <>
      <input value={value} onChange={(ev) => setValue((ev.target as HTMLInputElement).value))} />
      <p>{debouncedValue}</p>
    </>
  );
};

⚡️ Qwik

export const DebouncedInput = component$(() => {
  const inputText = useSignal('');
  const debouncedValue = useSignal('');
 
  useTask$(({ track, cleanup }) => {
    track(() => inputText.value);
 
    const debounced = setTimeout(() => {
      debouncedValue.value = inputText.value;
    }, 1000);
 
    cleanup(() => clearTimeout(debounced));
  });
 
  return (
    <>
      <input bind:value={inputText} />
      <p>{debouncedValue.value}</p>
    </>
  );
});

Изменение цвета фона на случайный при нажатии кнопки

⚛️ React

export function DynamicBackground() {
  const [red, setRed] = useState(0);
  const [green, setGreen] = useState(0);
  const [blue, setBlue] = useState(0);
  return (
    <div
      style={{
        background: `rgb(${red}, ${green}, ${blue})`,
      }}
    >
      <button
        onClick={() => {
          setRed(Math.random() * 256);
          setGreen(Math.random() * 256);
          setBlue(Math.random() * 256);
        }}
      >
        Изменить фон
      </button>
    </div>
  );
}

⚡️ Qwik

export const DynamicBackground = component$(() => {
  const red = useSignal(0);
  const green = useSignal(0);
  const blue = useSignal(0);
 
  return (
    <div
      style={{
        background: `rgb(${red.value}, ${green.value}, ${blue.value})`,
      }}
    >
      <button
        onClick$={() => {
          red.value = Math.random() * 256;
          green.value = Math.random() * 256;
          blue.value = Math.random() * 256;
        }}
      >
        Изменить фон
      </button>
    </div>
  );
});

Создание компонента, отображающего список президентов

⚛️ React

export function Presidents() {
  const presidents = [
    { name: 'George Washington', years: '1789-1797' },
    { name: 'John Adams', years: '1797-1801' },
    { name: 'Thomas Jefferson', years: '1801-1809' },
    { name: 'James Madison', years: '1809-1817' },
    { name: 'James Monroe', years: '1817-1825' },
    { name: 'John Quincy Adams', years: '1825-1829' },
    { name: 'Andrew Jackson', years: '1829-1837' },
    { name: 'Martin Van Buren', years: '1837-1841' },
    { name: 'William Henry Harrison', years: '1841-1841' },
    { name: 'John Tyler', years: '1841-1845' },
    { name: 'James K. Polk', years: '1845-1849' },
    { name: 'Zachary Taylor', years: '1849-1850' },
    { name: 'Millard Fillmore', years: '1850-1853' },
    { name: 'Franklin Pierce', years: '1853-1857' },
    { name: 'James Buchanan', years: '1857-1861' },
    { name: 'Abraham Lincoln', years: '1861-1865' },
    { name: 'Andrew Johnson', years: '1865-1869' },
    { name: 'Ulysses S. Grant', years: '1869-1877' },
    { name: 'Rutherford B. Hayes', years: '1877-1881' },
    { name: 'James A. Garfield', years: '1881-1881' },
    { name: 'Chester A. Arthur', years: '1881-1885' },
    { name: 'Grover Cleveland', years: '1885-1889' },
  ];
  return (
    <ul>
      {presidents.map((president) => (
        <li key={president.name + president.years}>
          {president.name} ({president.years})
        </li>
      ))}
    </ul>
  );
}

⚡️ Qwik

export const Presidents = component$(() => {
  const presidents = [
    { name: 'George Washington', years: '1789-1797' },
    { name: 'John Adams', years: '1797-1801' },
    { name: 'Thomas Jefferson', years: '1801-1809' },
    { name: 'James Madison', years: '1809-1817' },
    { name: 'James Monroe', years: '1817-1825' },
    { name: 'John Quincy Adams', years: '1825-1829' },
    { name: 'Andrew Jackson', years: '1829-1837' },
    { name: 'Martin Van Buren', years: '1837-1841' },
    { name: 'William Henry Harrison', years: '1841-1841' },
    { name: 'John Tyler', years: '1841-1845' },
    { name: 'James K. Polk', years: '1845-1849' },
    { name: 'Zachary Taylor', years: '1849-1850' },
    { name: 'Millard Fillmore', years: '1850-1853' },
    { name: 'Franklin Pierce', years: '1853-1857' },
    { name: 'James Buchanan', years: '1857-1861' },
    { name: 'Abraham Lincoln', years: '1861-1865' },
    { name: 'Andrew Johnson', years: '1865-1869' },
    { name: 'Ulysses S. Grant', years: '1869-1877' },
    { name: 'Rutherford B. Hayes', years: '1877-1881' },
    { name: 'James A. Garfield', years: '1881-1881' },
    { name: 'Chester A. Arthur', years: '1881-1885' },
    { name: 'Grover Cleveland', years: '1885-1889' },
  ];
  return (
    <ul>
      {presidents.map((president) => (
        <li key={president.name + president.years}>
          {president.name} ({president.years})
        </li>
      ))}
    </ul>
  );
});

Участники

Спасибо всем участникам, которые помогли сделать эту документацию лучше!

  • the-r3aper7
  • ChibiBlasphem
  • zahash
  • manucorporat
  • kerbelp
  • shairez
  • pnilssson
  • jweb89
  • avivr
  • adamdbradley
  • AnthonyPAlicea
  • mhevery
  • nsdonato
  • igorbabko
  • jnsmtnr
  • rjsdnql123
  • hamatoyogi