You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
808 B
JavaScript

5 years ago
import React from 'react'
import Router from 'next/router'
import EmbedPage from './index'
import api from '../../lib/api'
export async function getServerSideProps({ req, res, query }) {
const path = query.id
const parameter = path.length >= 19 && path.indexOf('.') < 0 ? path : null
5 years ago
let snippet
if (parameter) {
const host = req ? req.headers.host : undefined
snippet = await api.snippet.get(parameter, { host })
if (snippet /* && snippet.gist_id */) {
return { props: { snippet } }
5 years ago
}
// 404 Not found
if (res) {
res.writeHead(302, {
Location: '/embed',
})
res.end()
} else {
Router.push('/embed')
}
5 years ago
}
return { props: {} }
5 years ago
}
export default React.memo(function EmbedIdPage(props) {
return <EmbedPage {...props} />
})