* make miniToc pure data and no html strings * fixups * minimize content in miniToc prop * minimize content in miniToc prop * some types refactoring * fix tests
80 lines
2.3 KiB
TypeScript
80 lines
2.3 KiB
TypeScript
import { createContext, useContext } from 'react'
|
|
|
|
export type LearningTrack = {
|
|
trackName?: string
|
|
trackProduct?: string
|
|
prevGuide?: { href: string; title: string }
|
|
nextGuide?: { href: string; title: string }
|
|
}
|
|
|
|
export type MiniTocItem = {
|
|
platform?: string
|
|
contents: {
|
|
href: string
|
|
title: string
|
|
}
|
|
items?: MiniTocItem[]
|
|
}
|
|
|
|
export type ArticleContextT = {
|
|
title: string
|
|
intro: string
|
|
effectiveDate: string
|
|
renderedPage: string | JSX.Element[]
|
|
miniTocItems: Array<MiniTocItem>
|
|
contributor: { name: string; URL: string } | null
|
|
permissions?: string
|
|
includesPlatformSpecificContent: boolean
|
|
includesToolSpecificContent: boolean
|
|
defaultPlatform?: string
|
|
defaultTool?: string
|
|
product?: string
|
|
currentLearningTrack?: LearningTrack
|
|
detectedPlatforms: Array<string>
|
|
detectedTools: Array<string>
|
|
allTools: Record<string, string>
|
|
}
|
|
|
|
export const ArticleContext = createContext<ArticleContextT | null>(null)
|
|
|
|
export const useArticleContext = (): ArticleContextT => {
|
|
const context = useContext(ArticleContext)
|
|
|
|
if (!context) {
|
|
throw new Error('"useArticleContext" may only be used inside "ArticleContext.Provider"')
|
|
}
|
|
|
|
return context
|
|
}
|
|
|
|
export const getArticleContextFromRequest = (req: any): ArticleContextT => {
|
|
const page = req.context.page
|
|
|
|
if (page.effectiveDate) {
|
|
if (isNaN(Date.parse(page.effectiveDate))) {
|
|
throw new Error(
|
|
'The "effectiveDate" frontmatter property is not valid. Please make sure it is YEAR-MONTH-DAY'
|
|
)
|
|
}
|
|
}
|
|
|
|
return {
|
|
title: page.titlePlainText,
|
|
intro: page.intro,
|
|
effectiveDate: page.effectiveDate || '',
|
|
renderedPage: req.context.renderedPage || '',
|
|
miniTocItems: req.context.miniTocItems || [],
|
|
contributor: page.contributor || null,
|
|
permissions: page.permissions || '',
|
|
includesPlatformSpecificContent: page.includesPlatformSpecificContent || false,
|
|
includesToolSpecificContent: page.includesToolSpecificContent || false,
|
|
defaultPlatform: page.defaultPlatform || '',
|
|
defaultTool: page.defaultTool || '',
|
|
product: page.product || '',
|
|
currentLearningTrack: req.context.currentLearningTrack,
|
|
detectedPlatforms: page.detectedPlatforms || [],
|
|
detectedTools: page.detectedTools || [],
|
|
allTools: page.allToolsParsed || [], // this is set at the page level, see lib/page.js
|
|
}
|
|
}
|