1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-10-01 06:29:07 +00:00
conky/web/pages/variables.tsx

35 lines
969 B
TypeScript
Raw Normal View History

import Layout from '../components/Layout'
import SEO from '../components/SEO'
2022-10-05 03:37:40 +00:00
import { getVariables, Documentation, filterDesc } from '../utils/doc-utils'
import Docs from '../components/Docs'
2022-10-01 20:32:01 +00:00
import { getSearchIndex, SearchIndex } from '../utils/search'
export interface VariablesProps {
2022-09-30 22:20:17 +00:00
variables: Documentation
2022-10-01 20:32:01 +00:00
searchIndex: SearchIndex
}
export default function Variables(props: VariablesProps) {
return (
2022-10-01 20:32:01 +00:00
<Layout searchIndex={props.searchIndex}>
<SEO
title="Conky Variables"
description="Conky object variables documentation"
/>
<main className="w-full">
<div>
<h1 className="text-2xl">Variables</h1>
</div>
2022-09-30 22:20:17 +00:00
<Docs docs={props.variables} braces={true} assign={false} />
</main>
</Layout>
)
}
export async function getStaticProps() {
2022-10-05 03:37:40 +00:00
const variables = filterDesc(getVariables())
2022-10-01 20:32:01 +00:00
const searchIndex = getSearchIndex()
2022-10-01 20:32:01 +00:00
return { props: { variables, searchIndex } }
}