Some checks failed
CI/CD Pipeline / unit-tests (push) Failing after 1m16s
CI/CD Pipeline / integration-tests (push) Failing after 2m32s
CI/CD Pipeline / lint (push) Successful in 5m22s
CI/CD Pipeline / e2e-tests (push) Has been skipped
CI/CD Pipeline / build (push) Has been skipped
36 lines
1.2 KiB
JavaScript
36 lines
1.2 KiB
JavaScript
'use client';
|
|
|
|
import * as React from 'react';
|
|
let globalId = 0;
|
|
function useGlobalId(idOverride) {
|
|
const [defaultId, setDefaultId] = React.useState(idOverride);
|
|
const id = idOverride || defaultId;
|
|
React.useEffect(() => {
|
|
if (defaultId == null) {
|
|
// Fallback to this default id when possible.
|
|
// Use the incrementing value for client-side rendering only.
|
|
// We can't use it server-side.
|
|
// If you want to use random values please consider the Birthday Problem: https://en.wikipedia.org/wiki/Birthday_problem
|
|
globalId += 1;
|
|
setDefaultId(`mui-${globalId}`);
|
|
}
|
|
}, [defaultId]);
|
|
return id;
|
|
}
|
|
|
|
// downstream bundlers may remove unnecessary concatenation, but won't remove toString call -- Workaround for https://github.com/webpack/webpack/issues/14814
|
|
const maybeReactUseId = React['useId'.toString()];
|
|
/**
|
|
*
|
|
* @example <div id={useId()} />
|
|
* @param idOverride
|
|
* @returns {string}
|
|
*/
|
|
export default function useId(idOverride) {
|
|
if (maybeReactUseId !== undefined) {
|
|
const reactId = maybeReactUseId();
|
|
return idOverride != null ? idOverride : reactId;
|
|
}
|
|
// eslint-disable-next-line react-hooks/rules-of-hooks -- `React.useId` is invariant at runtime.
|
|
return useGlobalId(idOverride);
|
|
} |