1
0
ohmyform/ui/components/styled/markdown.tsx
Michael Schramm 9c4c325e5a
Switch to single branch (#221)
* remove submodules
* add api and ui files
* update github actions
* use sparse checkout
* update node setup
* update checkout
* update docker
* change permissions
* update mariadb health check
* update changelog
2023-12-02 19:22:40 +01:00

65 lines
1.4 KiB
TypeScript

import { lighten } from 'polished'
import React from 'react'
import ReactMarkdown from 'react-markdown'
import { ReactMarkdownOptions } from 'react-markdown/lib/react-markdown'
import styled from 'styled-components'
import { FormPublicDesignFragment } from '../../graphql/fragment/form.public.fragment'
interface Props extends ReactMarkdownOptions {
type: 'question' | 'answer'
design: FormPublicDesignFragment
}
const getColor = (props: Props) =>
props.type === 'question' ? props.design.colors.question : props.design.colors.answer
// eslint-disable-next-line @typescript-eslint/no-unsafe-call,@typescript-eslint/no-unsafe-member-access,@typescript-eslint/no-unsafe-assignment
const Markdown = styled(ReactMarkdown)`
color: ${getColor};
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
div {
color: ${getColor};
}
blockquote {
color: ${(props: Props) => lighten(0.5, getColor(props))};
padding-left: 20px;
border-left: 10px rgba(0, 0, 0, 0.05) solid;
}
table {
border-collapse: collapse;
border-spacing: 0;
tr {
border-top: 1px solid ${getColor};
th,
td {
padding: 6px 13px;
border: 1px solid ${getColor};
}
}
tr:nth-child(2n) {
background: rgba(0, 0, 0, 0.05);
}
}
`
export const StyledMarkdown: React.FC<Props> = ({ children, ...props }) => {
return (
<Markdown {...props}>
{children}
</Markdown>
)
}