tiptap/docs/gridsome.server.js

175 lines
4.2 KiB
JavaScript
Raw Normal View History

const fs = require('fs')
const { createCanvas, registerFont } = require('canvas')
2019-12-08 04:02:22 +08:00
const path = require('path')
2019-12-08 05:23:49 +08:00
const globby = require('globby')
registerFont('fonts/Inter-Regular.otf', { family: 'InterRegular' })
registerFont('fonts/Inter-Medium.otf', { family: 'InterMedium' })
const wrapText = function (context, text, x, y, maxWidth, lineHeight) {
const words = text.split(' ')
let line = ''
for (let n = 0; n < words.length; n += 1) {
const testLine = `${line + words[n]} `
const metrics = context.measureText(testLine)
const testWidth = metrics.width
if (testWidth > maxWidth && n > 0) {
context.fillText(line, x, y)
line = `${words[n]} `
y += lineHeight
} else {
line = testLine
}
}
context.fillText(line, x, y)
}
const calculateReadingTime = function (text) {
const wordsPerMinute = 200
const textLength = text.split(' ').length
if (textLength > 0) {
const value = Math.ceil(textLength / wordsPerMinute)
if (value === 1) {
return `${value} minute`
}
return `${value} minutes`
}
}
2020-08-18 15:36:26 +08:00
module.exports = function (api) {
2020-08-18 01:08:32 +08:00
2020-10-31 01:11:54 +08:00
api.setClientOptions({
cwd: process.cwd(),
})
2021-02-04 16:57:35 +08:00
api.loadSource(() => {
/**
* Generate pages for all demo components for testing purposes
*/
2021-02-07 03:27:28 +08:00
const demos = []
2021-02-03 06:28:17 +08:00
globby.sync('./src/demos/**/index.(vue|jsx)').forEach(file => {
const match = file.match(
2021-02-03 06:28:17 +08:00
new RegExp(/\.\/src\/demos\/([\S]+)\/index.(vue|jsx)/i),
)
if (!match) {
return
}
2021-02-07 03:27:28 +08:00
demos.push(match[1])
})
api.createPages(({ createPage }) => {
createPage({
path: '/demos',
component: './src/templates/DemoPages/index.vue',
context: {
demos,
},
})
demos.forEach(name => {
createPage({
2021-02-07 03:27:28 +08:00
path: `/demos/${name}`,
component: './src/templates/DemoPage/index.vue',
context: {
2021-02-07 03:27:28 +08:00
name,
},
})
})
})
2020-08-18 15:36:26 +08:00
})
2020-08-18 01:08:32 +08:00
2019-12-08 04:02:22 +08:00
api.chainWebpack(config => {
config.resolve.extensions
.add('.ts')
2020-04-29 05:25:56 +08:00
.add('.jsx')
2019-12-08 07:16:44 +08:00
config.module
.rule('typescript')
2020-09-24 05:38:11 +08:00
.test(/\.tsx?$/)
.use()
.loader('ts-loader')
2020-10-23 17:24:27 +08:00
.options({ transpileOnly: false, appendTsSuffixTo: [/\.vue$/] })
2020-04-17 01:13:21 +08:00
config.module
.rule('jsx')
2020-10-02 03:14:00 +08:00
.test(/\.jsx$/)
2020-09-24 05:38:11 +08:00
.use()
.loader('babel-loader')
2020-04-22 04:11:57 +08:00
globby.sync('../packages/*', { onlyDirectories: true })
.map(name => name.replace('../packages/', ''))
2019-12-08 05:23:49 +08:00
.forEach(name => {
config.resolve.alias
2020-11-10 23:29:31 +08:00
.set(`@tiptap/${name}`, path.resolve(`../packages/${name}/src/index.ts`))
2019-12-08 05:23:49 +08:00
})
2019-12-08 04:02:22 +08:00
})
// Generate OpenGraph images for all pages
api.onCreateNode(options => {
2021-02-03 23:38:23 +08:00
if (process.env.NODE_ENV !== 'production') {
return
}
2021-02-03 22:13:10 +08:00
if (options.internal.typeName !== 'DocPage') {
2021-02-03 22:10:36 +08:00
return
}
const imagePath = `static/images${options.path}`
const imageFile = `static/images${options.path}og-image.png`
// console.log(`Found Post “${options.title}” in ${options.internal.origin} …`)
const width = 1200
const height = 630
const border = 40
const canvas = createCanvas(width, height)
const context = canvas.getContext('2d')
// background
context.fillStyle = '#000000'
context.fillRect(0, 0, width, height)
// project
const project = 'tiptap documentation'
context.textBaseline = 'top'
context.fillStyle = '#666666'
context.font = '32pt InterRegular'
context.fillText(project, border, border)
// title
const { title } = options
const lineHeight = 96
context.textBaseline = 'top'
context.fillStyle = '#ffffff'
context.font = '58pt InterMedium'
wrapText(context, title, border, border + 60 + border, width - border - border, lineHeight)
// reading time
const readingTime = calculateReadingTime(options.content)
context.textBaseline = 'bottom'
context.fillStyle = '#666666'
context.font = '32pt InterRegular'
context.fillText(readingTime, border, height - border)
// store
const buffer = canvas.toBuffer('image/png')
fs.mkdir(imagePath, { recursive: true }, error => {
if (error) {
throw error
}
fs.writeFileSync(imageFile, buffer)
// console.log(`OpenGraph image generated (${imageFile}).`)
})
})
2019-12-08 04:02:22 +08:00
}