chore(docs): fix Docus `EditOnGithub` component (#754)

This commit is contained in:
Sylvain Marroufin 2021-10-12 15:45:43 +02:00 committed by GitHub
parent 9cb9bb651e
commit cc14cdd464
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 74 additions and 0 deletions

View File

@ -0,0 +1,74 @@
<template>
<div v-if="link" class="flex flex-col justify-between d-secondary-text mt-8 mb-4 px-4 sm:px-6 sm:flex-row">
<a :href="link" target="_blank" rel="noopener" class="flex items-center mb-2 text-sm sm:mb-0 hover:underline">
<IconEdit class="w-3 h-3 mr-1" />
<span>
{{ $t('article.github') }}
</span>
</a>
<span v-if="page.mtime" class="flex items-center text-sm">
{{ $t('article.updatedAt') }} {{ $d(Date.parse(page.mtime), 'long') }}
</span>
</div>
</template>
<script>
// TODO: remove this file when Docus fixed the issue
// wrong generated link due to folders deepness
import { defineComponent, computed } from '@nuxtjs/composition-api'
import { joinURL } from 'ufo'
import { useSettings } from '../../node_modules/@docus/theme/dist/composables/settings'
export default defineComponent({
props: {
page: {
type: Object,
required: true
}
},
setup (props) {
const { settings } = useSettings()
/**
* Repository URL computed
*/
const repoUrl = computed(() => joinURL(settings.value.github.url, settings.value.github.repo))
/**
* Get a page link computed from a page object.
*/
const getPageLink = (page) => {
const link = computed(() => {
if (!settings.value.github) { return }
// TODO: Fix source; regression from split
const key = page.key.split(':')
const dir = key.slice(1, key.length - 1).filter(Boolean).join('/')
const source = key[key.length - 1]
return [
repoUrl.value,
'edit',
settings.value.github.branch,
settings.value.github.dir || '',
settings.value.contentDir,
dir,
`${source}`.replace(/^\//g, '')
]
.filter(Boolean)
.join('/')
})
return link
}
const link = getPageLink(props.page)
return {
link
}
}
})
</script>