17 lines
493 B
JavaScript
17 lines
493 B
JavaScript
|
import { computed } from 'vue';
|
||
|
import { useData } from './data';
|
||
|
export function useEditLink() {
|
||
|
const { theme, page } = useData();
|
||
|
return computed(() => {
|
||
|
const { text = 'Edit this page', pattern = '' } = theme.value.editLink || {};
|
||
|
let url;
|
||
|
if (typeof pattern === 'function') {
|
||
|
url = pattern(page.value);
|
||
|
}
|
||
|
else {
|
||
|
url = pattern.replace(/:path/g, page.value.filePath);
|
||
|
}
|
||
|
return { url, text };
|
||
|
});
|
||
|
}
|