vuecssuiant-designantdreactantantd-vueenterprisefrontendui-designvue-antdvue-antd-uivue3vuecomponent
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.
35 lines
1.1 KiB
35 lines
1.1 KiB
import type { Ref, InjectionKey, ComputedRef } from 'vue'; |
|
import type { AnchorDirection } from './Anchor'; |
|
import { computed, inject, provide } from 'vue'; |
|
|
|
export interface AnchorContext { |
|
registerLink: (link: string) => void; |
|
unregisterLink: (link: string) => void; |
|
activeLink: Ref<string>; |
|
scrollTo: (link: string) => void; |
|
handleClick: (e: Event, info: { title: any; href: string }) => void; |
|
direction: ComputedRef<AnchorDirection>; |
|
} |
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars |
|
function noop(..._any: any[]): any {} |
|
|
|
export const AnchorContextKey: InjectionKey<AnchorContext> = Symbol('anchorContextKey'); |
|
|
|
const useProvideAnchor = (state: AnchorContext) => { |
|
provide(AnchorContextKey, state); |
|
}; |
|
|
|
const useInjectAnchor = () => { |
|
return inject(AnchorContextKey, { |
|
registerLink: noop, |
|
unregisterLink: noop, |
|
scrollTo: noop, |
|
activeLink: computed(() => ''), |
|
handleClick: noop, |
|
direction: computed(() => 'vertical'), |
|
} as AnchorContext); |
|
}; |
|
|
|
export { useInjectAnchor, useProvideAnchor }; |
|
export default useProvideAnchor;
|
|
|