1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-09-30 14:09:13 +00:00
conky/web/pages/config_settings.tsx
Brenden Matthews aacf2289de
Improve the web tests (#1430)
* Improve the web tests

* That's not portable

* Use regex here

* Set concurrency on web CI
2023-02-26 09:37:41 -05:00

41 lines
1.1 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import Layout from '../components/Layout'
import SEO from '../components/SEO'
import {
getConfigSettings,
Documentation,
filterDesc,
} from '../utils/doc-utils'
import Docs from '../components/Docs'
import { getSearchIndex, SearchIndex } from '../utils/search'
export interface ConfigSettingsProps {
config_settings: Documentation
searchIndex: SearchIndex
}
export default function ConfigSettings(props: ConfigSettingsProps) {
return (
<Layout searchIndex={props.searchIndex}>
<SEO
title="Conky Config settings"
description="Conky configuration settings"
/>
<main className="w-full">
<div>
<h1 className="text-2xl" data-cy="page-heading">
Configuration settings
</h1>
</div>
<Docs docs={props.config_settings} braces={false} assign={true} />
</main>
</Layout>
)
}
export async function getStaticProps() {
const config_settings = filterDesc(getConfigSettings())
const searchIndex = getSearchIndex()
return { props: { config_settings, searchIndex } }
}