You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
890 B
TypeScript
31 lines
890 B
TypeScript
import { useSelector } from 'react-redux';
|
|
import { UserUtils } from '../session/utils';
|
|
import { StateType } from '../state/reducer';
|
|
|
|
export function useAvatarPath(pubkey: string | undefined) {
|
|
return useSelector((state: StateType) => {
|
|
if (!pubkey) {
|
|
return undefined;
|
|
}
|
|
return state.conversations.conversationLookup[pubkey]?.avatarPath;
|
|
});
|
|
}
|
|
|
|
export function useOurAvatarPath() {
|
|
return useAvatarPath(UserUtils.getOurPubKeyStrFromCache());
|
|
}
|
|
|
|
export function useConversationUsername(pubkey: string | undefined) {
|
|
return useSelector((state: StateType) => {
|
|
if (!pubkey) {
|
|
return undefined;
|
|
}
|
|
const convo = state.conversations.conversationLookup[pubkey];
|
|
return convo?.profileName || convo?.name || convo.id;
|
|
});
|
|
}
|
|
|
|
export function useOurConversationUsername() {
|
|
return useConversationUsername(UserUtils.getOurPubKeyStrFromCache());
|
|
}
|