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

[React@18 QA] @elastic/obs-ux-logs-team #209726

Closed
6 tasks done
Tracked by #203114
tonyghiani opened this issue Feb 5, 2025 · 2 comments
Closed
6 tasks done
Tracked by #203114

[React@18 QA] @elastic/obs-ux-logs-team #209726

tonyghiani opened this issue Feb 5, 2025 · 2 comments
Assignees
Labels
Team:obs-ux-logs Observability Logs User Experience Team

Comments

@tonyghiani
Copy link
Contributor

tonyghiani commented Feb 5, 2025

How to test

Testing can be done locally by using the PR (#209337) or from main with REACT_18=true ENV flag:

REACT_18=true yarn bootstrap
REACT_18=true yarn start

You can also use cloud or serverless deployment from that PR.

Tip

  • Locally you can tell that you're running React@18 by the following message in the console: Kibana is built with and running [email protected], muting legacy root warning.
  • When deployed and when having React Dev Tools extension you can check the version with __REACT_DEVTOOLS_GLOBAL_HOOK__.renderers.get(1).version in console

What to look for

Tip

Look for blank screens, error splash screens, unresponsive pages, new errors in the console, unpredictable UI behavior (like laggy text inputs that skip letters when typing fast). You can also review the list of addressed runtime issues discovered by functional tests in the section below

Runtime issues discovered by functional tests

The ID scheme that is produced by new useId hook returns IDs that look like :S1:, but : is not a valid character for CSS identifiers, so code like breaks:

const id = useId();
document.querySelector(id); // fails with `SyntaxError: ':id:' is not a valid selector.`
- useEffect(() => fetch(), []); // fails with an error, likely blank screen
+ useEffect(() => {
+ fetch()
+ }, []);

This pattern for controlled inputs breaks when running in legacy mode where it worked fine with React@17

useEffect(() => {
    if (inputRef.current) {
      inputRef.current.value = value;
    }
  }, [value]);

Consider situation like this. This is a controlled input but the value is updated async. With React@18 we noticed that the lag could become worse as we were seeing some new flaky tests because of this where input skips letter:

export function App() {
  const [value, setValue] = useState("");

  return (
      <input
        type="text"
        value={value}
        onChange={(e) => {
          const value = e.currentTarget.value;
          setTimeout(() => {
            setValue(value);
          }, 0);
        }}
      />
  );
}

In this case a state reducer was not pure as it threw an error when executed the first time (and not at later times). React@17 executed that reducer twice so error didn't propagate to the UI, wheres in React@18 that behavior has changed and we saw that error on UI. More details in the PR.

useEffect deps updates caused infinite loop but for some reason it stabilized with React@17, but not with React@18

@botelastic botelastic bot added the needs-team Issues missing a team label label Feb 5, 2025
@tonyghiani tonyghiani added the Team:obs-ux-logs Observability Logs User Experience Team label Feb 5, 2025
@elasticmachine
Copy link
Contributor

Pinging @elastic/obs-ux-logs-team (Team:obs-ux-logs)

@botelastic botelastic bot removed the needs-team Issues missing a team label label Feb 5, 2025
@tonyghiani tonyghiani changed the title [React@18 QA] @elastic/obs-ux-logs-team @tonyghiani [React@18 QA] @elastic/obs-ux-logs-team Feb 5, 2025
@achyutjhunjhunwala achyutjhunjhunwala self-assigned this Feb 21, 2025
@achyutjhunjhunwala
Copy link
Contributor

achyutjhunjhunwala commented Feb 21, 2025

I have tested this issue on the deployed PR.
Also the pages look good except for the Dataset Quality Fix It Flow Flyout where the theme color looks quite light making the text illegible. I suspect thats because of Borealis theme and not React 18.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Team:obs-ux-logs Observability Logs User Experience Team
Projects
None yet
Development

No branches or pull requests

3 participants