Skip to content

Commit

Permalink
feat($core): add canonical link to frontmatter (#2658)
Browse files Browse the repository at this point in the history
  • Loading branch information
d-pollard committed Oct 13, 2020
1 parent 931e7d9 commit ff6c51a
Show file tree
Hide file tree
Showing 4 changed files with 47 additions and 0 deletions.
1 change: 1 addition & 0 deletions packages/@vuepress/core/lib/client/index.ssr.html
Expand Up @@ -7,6 +7,7 @@
<meta name="generator" content="VuePress {{ version }}">
{{{ userHeadTags }}}
{{{ pageMeta }}}
{{{ canonicalLink }}}
{{{ renderResourceHints() }}}
{{{ renderStyles() }}}
</head>
Expand Down
29 changes: 29 additions & 0 deletions packages/@vuepress/core/lib/client/root-mixins/updateMeta.js
Expand Up @@ -13,6 +13,7 @@ export default {
this.$ssrContext.title = this.$title
this.$ssrContext.lang = this.$lang
this.$ssrContext.pageMeta = renderPageMeta(mergedMetaItems)
this.$ssrContext.canonicalLink = renderCanonicalLink(this.$canonicalUrl)
}
},
// Other life cycles will only be called at client
Expand All @@ -22,6 +23,7 @@ export default {

// update title / meta tags
this.updateMeta()
this.updateCanonicalLink()
},

methods: {
Expand All @@ -39,18 +41,45 @@ export default {
// description needs special attention as it has too many entries
return unionBy([{ name: 'description', content: this.$description }],
pageMeta, this.siteMeta, metaIdentifier)
},

updateCanonicalLink () {
removeCanonicalLink()

if (!this.$canonicalUrl) {
return
}

document.head.insertAdjacentHTML('beforeend', renderCanonicalLink(this.$canonicalUrl))
}
},

watch: {
$page () {
this.updateMeta()
this.updateCanonicalLink()
}
},

beforeDestroy () {
updateMetaTags(null, this.currentMetaTags)
removeCanonicalLink()
}
}

function removeCanonicalLink () {
const canonicalEl = document.querySelector("link[rel='canonical']")

if (canonicalEl) {
canonicalEl.remove()
}
}

function renderCanonicalLink (link = '') {
if (!link) {
return ''
}
return `<link href="${link}" rel="canonical" />`
}

/**
Expand Down
10 changes: 10 additions & 0 deletions packages/@vuepress/core/lib/node/ClientComputedMixin.js
Expand Up @@ -65,6 +65,16 @@ module.exports = siteData => {
return this.$localeConfig.title || this.$site.title || ''
}

get $canonicalUrl () {
const { canonical } = this.$page.frontmatter

if (typeof canonical === 'string') {
return canonical
}

return false
}

get $title () {
const page = this.$page
const { metaTitle } = this.$page.frontmatter
Expand Down
7 changes: 7 additions & 0 deletions packages/docs/docs/guide/frontmatter.md
Expand Up @@ -110,6 +110,13 @@ meta:
---
```

### canonicalUrl <Badge text="1.7.0+" />

- Type: `string`
- Default: `undefined`

Set the canonical URL for the current page.

## Predefined Variables Powered By Default Theme

### navbar
Expand Down

0 comments on commit ff6c51a

Please sign in to comment.