You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
634 B
18 lines
634 B
import type { InjectionKey, Ref } from 'vue';
|
|
import { computed, inject, ref, provide } from 'vue';
|
|
import type { ScreenSizeMap } from '../_util/responsiveObserve';
|
|
export type AvatarSize = 'large' | 'small' | 'default' | number | ScreenSizeMap;
|
|
const SizeContextKey: InjectionKey<Ref<AvatarSize>> = Symbol('SizeContextKey');
|
|
|
|
export const useInjectSize = () => {
|
|
return inject(SizeContextKey, ref('default' as AvatarSize));
|
|
};
|
|
export const useProviderSize = (size: Ref<AvatarSize>) => {
|
|
const parentSize = useInjectSize();
|
|
provide(
|
|
SizeContextKey,
|
|
computed(() => size.value || parentSize.value),
|
|
);
|
|
return size;
|
|
};
|