UNPKG

valaxy-addon-git-log

Version:

Integrates git logs into your page of Valaxy site.

28 lines (23 loc) 796 B
import type { MaybeRefOrGetter, Ref } from 'vue' import type { Changelog } from '../../types' import { computedAsync } from '@vueuse/core' import { computed } from 'vue' import { useAddonGitLogConfig } from '../options' import { useGitLog } from './gitlog' export function useChangelog(_path?: MaybeRefOrGetter<string>): Ref<Changelog[]> { const gitLog = useGitLog() const gitLogOptions = useAddonGitLogConfig() const strategy = gitLogOptions.value.contributor?.strategy if (strategy === 'runtime') { const contributors = computedAsync<Changelog[]>( async () => { // TODO: Complete the API-based method return [] }, gitLog.value.changeLog, { lazy: true }, ) return contributors } return computed(() => gitLog.value.changeLog) }