19 lines
494 B
TypeScript
19 lines
494 B
TypeScript
import { useCallback } from 'react';
|
|
|
|
import { useAppSelector } from 'soapbox/hooks';
|
|
import { makeGetAccount } from 'soapbox/selectors';
|
|
|
|
/** Get the logged-in account from the store, if any. */
|
|
export const useOwnAccount = () => {
|
|
const getAccount = useCallback(makeGetAccount(), []);
|
|
|
|
const account = useAppSelector((state) => {
|
|
const { me } = state;
|
|
|
|
if (typeof me === 'string') {
|
|
return getAccount(state, me);
|
|
}
|
|
});
|
|
|
|
return { account: account || undefined };
|
|
};
|