forked from OpenNeo/impress
Matchu
d32c6459b0
Rather than letting the fact that the server API models outfits a bit differently (underscore keys, integer IDs for things), I'd rather convert it to the familiar field names and expected types!
35 lines
734 B
JavaScript
35 lines
734 B
JavaScript
// Read the current user ID once from the <meta> tags, and use that forever!
|
|
const currentUserId = readCurrentUserId();
|
|
|
|
function useCurrentUser() {
|
|
if (currentUserId == null) {
|
|
return {
|
|
isLoggedIn: false,
|
|
id: null,
|
|
};
|
|
}
|
|
|
|
return {
|
|
isLoggedIn: true,
|
|
id: currentUserId,
|
|
};
|
|
}
|
|
|
|
function readCurrentUserId() {
|
|
try {
|
|
const element = document.querySelector("meta[name=dti-current-user-id]");
|
|
const value = element.getAttribute("content");
|
|
if (value === "null") {
|
|
return null;
|
|
}
|
|
return value;
|
|
} catch (error) {
|
|
console.error(
|
|
`[readCurrentUserId] Couldn't read user ID, using null instead`,
|
|
error,
|
|
);
|
|
return null;
|
|
}
|
|
}
|
|
|
|
export default useCurrentUser;
|