Add build-time highlighting to code blocks
This commit is contained in:
parent
6705f845f2
commit
caa30ca097
|
@ -2,8 +2,30 @@ import UseCasesLayout from 'components/use-case-page'
|
||||||
import TextSplitWithCode from '@hashicorp/react-text-split-with-code'
|
import TextSplitWithCode from '@hashicorp/react-text-split-with-code'
|
||||||
import TextSplitWithImage from '@hashicorp/react-text-split-with-image'
|
import TextSplitWithImage from '@hashicorp/react-text-split-with-image'
|
||||||
import FeaturedSliderSection from 'components/featured-slider-section'
|
import FeaturedSliderSection from 'components/featured-slider-section'
|
||||||
|
// Imports below are used in getStaticProps only
|
||||||
|
import highlightData from '@hashicorp/nextjs-scripts/prism/highlight-data'
|
||||||
|
|
||||||
export default function SimpleContainerOrchestrationPage() {
|
export async function getStaticProps() {
|
||||||
|
const codeBlocksRaw = {
|
||||||
|
containerOrchestration: {
|
||||||
|
code:
|
||||||
|
'task "webservice" {\n driver = "docker"\n\n config {\n image = "redis:3.2"\n labels {\n group = "webservice-cache"\n }\n }\n}',
|
||||||
|
language: 'hcl',
|
||||||
|
},
|
||||||
|
windowsSupport: {
|
||||||
|
code:
|
||||||
|
'sc.exe start "Nomad"\n\nSERVICE_NAME: Nomad\n TYPE : 10 WIN32_OWN_PROCESS\n STATE : 4 RUNNING\n (STOPPABLE, NOT_PAUSABLE, ACCEPTS_SHUTDOWN)\n WIN32_EXIT_CODE : 0 (0x0)\n SERVICE_EXIT_CODE : 0 (0x0)\n CHECKPOINT : 0x0\n WAIT_HINT : 0x0\n PID : 8008\n FLAGS :',
|
||||||
|
},
|
||||||
|
multiRegionFederation: {
|
||||||
|
code: '$ nomad server join 1.2.3.4:4648',
|
||||||
|
language: 'shell-session',
|
||||||
|
},
|
||||||
|
}
|
||||||
|
const codeBlocks = await highlightData(codeBlocksRaw)
|
||||||
|
return { props: { codeBlocks } }
|
||||||
|
}
|
||||||
|
|
||||||
|
export default function SimpleContainerOrchestrationPage({ codeBlocks }) {
|
||||||
return (
|
return (
|
||||||
<UseCasesLayout
|
<UseCasesLayout
|
||||||
title="Simple Container Orchestration"
|
title="Simple Container Orchestration"
|
||||||
|
@ -23,19 +45,7 @@ export default function SimpleContainerOrchestrationPage() {
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
}}
|
}}
|
||||||
codeBlock={{
|
codeBlock={codeBlocks.containerOrchestration}
|
||||||
code: `task "webservice" {
|
|
||||||
driver = "docker"
|
|
||||||
|
|
||||||
config {
|
|
||||||
image = "redis:3.2"
|
|
||||||
labels {
|
|
||||||
group = "webservice-cache"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}`,
|
|
||||||
language: 'hcl',
|
|
||||||
}}
|
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<TextSplitWithImage
|
<TextSplitWithImage
|
||||||
|
@ -66,20 +76,7 @@ export default function SimpleContainerOrchestrationPage() {
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
}}
|
}}
|
||||||
codeBlock={{
|
codeBlock={codeBlocks.windowsSupport}
|
||||||
code: `sc.exe start "Nomad"
|
|
||||||
|
|
||||||
SERVICE_NAME: Nomad
|
|
||||||
TYPE : 10 WIN32_OWN_PROCESS
|
|
||||||
STATE : 4 RUNNING
|
|
||||||
(STOPPABLE, NOT_PAUSABLE, ACCEPTS_SHUTDOWN)
|
|
||||||
WIN32_EXIT_CODE : 0 (0x0)
|
|
||||||
SERVICE_EXIT_CODE : 0 (0x0)
|
|
||||||
CHECKPOINT : 0x0
|
|
||||||
WAIT_HINT : 0x0
|
|
||||||
PID : 8008
|
|
||||||
FLAGS :`,
|
|
||||||
}}
|
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<TextSplitWithCode
|
<TextSplitWithCode
|
||||||
|
@ -96,10 +93,7 @@ SERVICE_NAME: Nomad
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
}}
|
}}
|
||||||
codeBlock={{
|
codeBlock={codeBlocks.multiRegionFederation}
|
||||||
code: 'nomad server join 1.2.3.4:4648',
|
|
||||||
prefix: 'dollar',
|
|
||||||
}}
|
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<div className="with-border">
|
<div className="with-border">
|
||||||
|
|
Loading…
Reference in a new issue