• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

SAP / ui5-webcomponents-react / 13131240533

04 Feb 2025 08:26AM CUT coverage: 88.604%. First build
13131240533

Pull #6894

github

web-flow
Merge 2691e1214 into 835463094
Pull Request #6894: fix(SplitterLayout): implement latest design specs

3121 of 4084 branches covered (76.42%)

5590 of 6309 relevant lines covered (88.6%)

44650.72 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

33.33
/packages/base/src/hooks/useIsomorphicId.ts
1
'use client';
2

3
import * as React from 'react';
4

5
function getRandomId() {
6
  if ('randomUUID' in crypto) {
×
7
    return crypto.randomUUID();
×
8
  }
9
  const uint32 = window.crypto.getRandomValues(new Uint32Array(1))[0];
×
10
  return uint32.toString(16);
×
11
}
12

13
const canUseUseId = 'useId' in React;
455✔
14

15
export function useIsomorphicId(): string {
16
  if (canUseUseId) {
77,536✔
17
    // TODO might be fixed by https://github.com/webpack/webpack/issues/14814
18
    return Reflect.get(React, 'useId')();
77,536✔
19
  }
20

21
  // eslint-disable-next-line react-hooks/rules-of-hooks
22
  const localId = React.useRef(getRandomId()); // React version never changes at runtime
×
23
  return localId.current;
×
24
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc