stacker.news/components/text.js

175 lines
5.6 KiB
JavaScript
Raw Normal View History

2021-04-14 23:56:29 +00:00
import styles from './text.module.css'
2021-06-27 22:28:30 +00:00
import ReactMarkdown from 'react-markdown'
import gfm from 'remark-gfm'
import { Prism as SyntaxHighlighter } from 'react-syntax-highlighter'
import { atomDark } from 'react-syntax-highlighter/dist/cjs/styles/prism'
2021-07-15 19:56:23 +00:00
import mention from '../lib/remark-mention'
2022-03-03 22:18:38 +00:00
import sub from '../lib/remark-sub'
2022-02-03 22:01:42 +00:00
import remarkDirective from 'remark-directive'
import { visit } from 'unist-util-visit'
import reactStringReplace from 'react-string-replace'
2022-07-17 15:33:55 +00:00
import React, { useEffect, useState } from 'react'
import GithubSlugger from 'github-slugger'
2022-10-04 17:43:18 +00:00
import LinkIcon from '../svgs/link.svg'
import Thumb from '../svgs/thumb-up-fill.svg'
2022-07-18 21:24:28 +00:00
import {toString} from 'mdast-util-to-string'
2022-10-04 17:43:18 +00:00
import copy from 'clipboard-copy'
2022-07-21 22:39:05 +00:00
2022-02-03 22:01:42 +00:00
function myRemarkPlugin () {
return (tree) => {
visit(tree, (node) => {
if (
node.type === 'textDirective' ||
node.type === 'leafDirective'
) {
if (node.name !== 'high') return
const data = node.data || (node.data = {})
data.hName = 'mark'
data.hProperties = {}
}
})
}
}
2021-04-14 23:56:29 +00:00
2022-07-18 21:24:28 +00:00
2022-07-17 15:33:55 +00:00
function Heading ({ h, slugger, noFragments, topLevel, children, node, ...props }) {
2022-10-04 17:43:18 +00:00
const [copied, setCopied] = useState(false)
const [id] = useState(noFragments ? undefined : slugger.slug(toString(node).replace(/[^\w\-\s]+/gi, '')))
const Icon = copied ? Thumb : LinkIcon
2022-07-17 15:33:55 +00:00
return (
<div className={styles.heading}>
{React.createElement(h, { id, ...props }, children)}
2022-10-04 17:43:18 +00:00
{!noFragments && topLevel &&
<a className={`${styles.headingLink} ${copied ? styles.copied : ''}`} href={`#${id}`}>
<Icon
onClick={() => {
const location = new URL(window.location)
location.hash = `${id}`
copy(location.href)
setTimeout(() => setCopied(false), 1500)
setCopied(true)
}}
width={18}
height={18}
className='fill-grey'
/>
2022-07-21 22:39:05 +00:00
</a>}
2022-07-17 15:33:55 +00:00
</div>
)
}
export default function Text ({ topLevel, noFragments, nofollow, children }) {
// all the reactStringReplace calls are to facilitate search highlighting
2022-07-17 15:33:55 +00:00
const slugger = new GithubSlugger()
const HeadingWrapper = (props) => Heading({ topLevel, slugger, noFragments, ...props})
2021-04-14 23:56:29 +00:00
return (
2021-06-27 22:28:30 +00:00
<div className={styles.text}>
<ReactMarkdown
components={{
2022-07-17 15:33:55 +00:00
h1: (props) => HeadingWrapper({ h: topLevel ? 'h1' : 'h3', ...props }),
h2: (props) => HeadingWrapper({ h: topLevel ? 'h2' : 'h4', ...props }),
h3: (props) => HeadingWrapper({ h: topLevel ? 'h3' : 'h5', ...props }),
h4: (props) => HeadingWrapper({ h: topLevel ? 'h4' : 'h6', ...props }),
h5: (props) => HeadingWrapper({ h: topLevel ? 'h5' : 'h6', ...props }),
h6: (props) => HeadingWrapper({ h: 'h6', ...props }),
2021-06-27 22:28:30 +00:00
table: ({ node, ...props }) =>
<div className='table-responsive'>
<table className='table table-bordered table-sm' {...props} />
</div>,
code ({ node, inline, className, children, ...props }) {
const match = /language-(\w+)/.exec(className || '')
return !inline
? (
<SyntaxHighlighter showLineNumbers style={atomDark} language={match && match[1]} PreTag='div' {...props}>
{reactStringReplace(String(children).replace(/\n$/, ''), /:high\[([^\]]+)\]/g, (match, i) => {
return match
}).join('')}
2021-06-27 22:28:30 +00:00
</SyntaxHighlighter>
)
: (
<code className={className} style={atomDark} {...props}>
{reactStringReplace(String(children), /:high\[([^\]]+)\]/g, (match, i) => {
return <mark key={`mark-${match}`}>{match}</mark>
})}
2021-06-27 22:28:30 +00:00
</code>
)
},
a: ({ node, href, children, ...props }) => {
2022-08-10 15:06:31 +00:00
if (children?.some(e => e?.props?.node?.tagName === 'img')) {
return <>{children}</>
}
// map: fix any highlighted links
2022-07-17 15:33:55 +00:00
children = children?.map(e =>
typeof e === 'string'
? reactStringReplace(e, /:high\[([^\]]+)\]/g, (match, i) => {
return <mark key={`mark-${match}-${i}`}>{match}</mark>
})
: e)
return (
/* eslint-disable-next-line */
<a
target='_blank' rel={nofollow ? 'nofollow' : 'noreferrer'}
href={reactStringReplace(href, /:high%5B([^%5D]+)%5D/g, (match, i) => {
return match
}).join('')} {...props}
>
{children}
</a>
)
},
2022-07-17 15:33:55 +00:00
img: ({ node, ...props }) => <ZoomableImage topLevel={topLevel} {...props} />
2021-06-27 22:28:30 +00:00
}}
2022-03-03 22:18:38 +00:00
remarkPlugins={[gfm, mention, sub, remarkDirective, myRemarkPlugin]}
2021-06-27 22:28:30 +00:00
>
{children}
</ReactMarkdown>
</div>
2021-04-14 23:56:29 +00:00
)
}
function ZoomableImage ({ src, topLevel, ...props }) {
if (!src) {
return null
}
const defaultMediaStyle = {
maxHeight: topLevel ? '75vh' : '25vh',
cursor: 'zoom-in'
}
// if image changes we need to update state
const [mediaStyle, setMediaStyle] = useState(defaultMediaStyle)
useEffect(() => {
setMediaStyle(defaultMediaStyle)
}, [src])
const handleClick = () => {
if (mediaStyle.cursor === 'zoom-in') {
setMediaStyle({
width: '100%',
cursor: 'zoom-out'
})
} else {
setMediaStyle(defaultMediaStyle)
}
}
2022-07-17 15:33:55 +00:00
return (
<img
className={topLevel ? styles.topLevel : undefined}
style={mediaStyle}
src={src}
onClick={handleClick}
{...props}
/>
)
}