mirror of
https://github.com/explosion/spaCy.git
synced 2024-12-26 01:46:28 +03:00
Tidy up docs components [ci skip]
This commit is contained in:
parent
30f316c688
commit
4d34efa697
|
@ -5,7 +5,7 @@ import classNames from 'classnames'
|
|||
import Link from './link'
|
||||
import classes from '../styles/accordion.module.sass'
|
||||
|
||||
const Accordion = ({ title, id, expanded, spaced, children }) => {
|
||||
export default function Accordion({ title, id, expanded = false, spaced = false, children }) {
|
||||
const [isExpanded, setIsExpanded] = useState(true)
|
||||
const rootClassNames = classNames(classes.root, {
|
||||
[classes.spaced]: !!spaced,
|
||||
|
@ -59,14 +59,8 @@ const Accordion = ({ title, id, expanded, spaced, children }) => {
|
|||
)
|
||||
}
|
||||
|
||||
Accordion.defaultProps = {
|
||||
expanded: false,
|
||||
}
|
||||
|
||||
Accordion.propTypes = {
|
||||
title: PropTypes.string,
|
||||
id: PropTypes.string,
|
||||
children: PropTypes.node.isRequired,
|
||||
}
|
||||
|
||||
export default Accordion
|
||||
|
|
|
@ -5,7 +5,7 @@ import classNames from 'classnames'
|
|||
import Icon from './icon'
|
||||
import classes from '../styles/alert.module.sass'
|
||||
|
||||
const Alert = ({ title, icon, variant, closeOnClick, children }) => {
|
||||
export default function Alert({ title, icon, variant, closeOnClick = true, children }) {
|
||||
const [visible, setVisible] = useState(true)
|
||||
const alertClassNames = classNames(classes.root, {
|
||||
[classes.warning]: variant === 'warning',
|
||||
|
@ -20,10 +20,6 @@ const Alert = ({ title, icon, variant, closeOnClick, children }) => {
|
|||
)
|
||||
}
|
||||
|
||||
Alert.defaultProps = {
|
||||
closeOnClick: true,
|
||||
}
|
||||
|
||||
Alert.propTypes = {
|
||||
title: PropTypes.string,
|
||||
icon: PropTypes.string,
|
||||
|
@ -31,5 +27,3 @@ Alert.propTypes = {
|
|||
closeOnClick: PropTypes.bool,
|
||||
children: PropTypes.node,
|
||||
}
|
||||
|
||||
export default Alert
|
||||
|
|
|
@ -3,7 +3,8 @@ import PropTypes from 'prop-types'
|
|||
|
||||
import classes from '../styles/aside.module.sass'
|
||||
|
||||
const Aside = ({ title, children }) => (
|
||||
export default function Aside({ title, children }) {
|
||||
return (
|
||||
<aside className={classes.root}>
|
||||
<div className={classes.content} role="complementary">
|
||||
<div className={classes.text}>
|
||||
|
@ -12,11 +13,10 @@ const Aside = ({ title, children }) => (
|
|||
</div>
|
||||
</div>
|
||||
</aside>
|
||||
)
|
||||
)
|
||||
}
|
||||
|
||||
Aside.propTypes = {
|
||||
title: PropTypes.string,
|
||||
children: PropTypes.node.isRequired,
|
||||
}
|
||||
|
||||
export default Aside
|
||||
|
|
|
@ -6,7 +6,15 @@ import Link from './link'
|
|||
import Icon from './icon'
|
||||
import classes from '../styles/button.module.sass'
|
||||
|
||||
const Button = ({ to, variant, large, icon, className, children, ...props }) => {
|
||||
export default function Button({
|
||||
to,
|
||||
variant = 'secondary',
|
||||
large = false,
|
||||
icon,
|
||||
className,
|
||||
children,
|
||||
...props
|
||||
}) {
|
||||
const buttonClassNames = classNames(classes.root, className, {
|
||||
[classes.large]: large,
|
||||
[classes.primary]: variant === 'primary',
|
||||
|
@ -21,11 +29,6 @@ const Button = ({ to, variant, large, icon, className, children, ...props }) =>
|
|||
)
|
||||
}
|
||||
|
||||
Button.defaultProps = {
|
||||
variant: 'secondary',
|
||||
large: false,
|
||||
}
|
||||
|
||||
Button.propTypes = {
|
||||
to: PropTypes.string,
|
||||
variant: PropTypes.oneOf(['primary', 'secondary', 'tertiary']),
|
||||
|
@ -33,5 +36,3 @@ Button.propTypes = {
|
|||
icon: PropTypes.string,
|
||||
className: PropTypes.string,
|
||||
}
|
||||
|
||||
export default Button
|
||||
|
|
|
@ -6,7 +6,8 @@ import Link from './link'
|
|||
import { H5 } from './typography'
|
||||
import classes from '../styles/card.module.sass'
|
||||
|
||||
const Card = ({ title, to, image, header, small, onClick, children }) => (
|
||||
export default function Card({ title, to, image, header, small, onClick, children }) {
|
||||
return (
|
||||
<div className={classNames(classes.root, { [classes.small]: !!small })}>
|
||||
{header && (
|
||||
<Link to={to} onClick={onClick} hidden>
|
||||
|
@ -31,7 +32,8 @@ const Card = ({ title, to, image, header, small, onClick, children }) => (
|
|||
{children}
|
||||
</Link>
|
||||
</div>
|
||||
)
|
||||
)
|
||||
}
|
||||
|
||||
Card.propTypes = {
|
||||
title: PropTypes.node,
|
||||
|
@ -41,5 +43,3 @@ Card.propTypes = {
|
|||
onClick: PropTypes.func,
|
||||
children: PropTypes.node,
|
||||
}
|
||||
|
||||
export default Card
|
||||
|
|
|
@ -21,7 +21,7 @@ export const Pre = props => {
|
|||
return <pre className={classes.pre}>{props.children}</pre>
|
||||
}
|
||||
|
||||
export const InlineCode = ({ wrap, className, children, ...props }) => {
|
||||
export const InlineCode = ({ wrap = false, className, children, ...props }) => {
|
||||
const codeClassNames = classNames(classes.inlineCode, className, {
|
||||
[classes.wrap]: wrap || (isString(children) && children.length >= 20),
|
||||
})
|
||||
|
@ -32,10 +32,6 @@ export const InlineCode = ({ wrap, className, children, ...props }) => {
|
|||
)
|
||||
}
|
||||
|
||||
InlineCode.defaultProps = {
|
||||
wrap: false,
|
||||
}
|
||||
|
||||
InlineCode.propTypes = {
|
||||
wrap: PropTypes.bool,
|
||||
className: PropTypes.string,
|
||||
|
|
|
@ -14,7 +14,7 @@ export function copyToClipboard(ref, callback) {
|
|||
}
|
||||
}
|
||||
|
||||
const CopyInput = ({ text, prefix }) => {
|
||||
export default function CopyInput({ text, prefix }) {
|
||||
const isClient = typeof window !== 'undefined'
|
||||
const supportsCopy = isClient && document.queryCommandSupported('copy')
|
||||
const textareaRef = useRef()
|
||||
|
@ -46,5 +46,3 @@ const CopyInput = ({ text, prefix }) => {
|
|||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
export default CopyInput
|
||||
|
|
|
@ -5,7 +5,7 @@ import { navigate } from 'gatsby'
|
|||
|
||||
import classes from '../styles/dropdown.module.sass'
|
||||
|
||||
const Dropdown = ({ defaultValue, className, onChange, children }) => {
|
||||
export default function Dropdown({ defaultValue, className, onChange, children }) {
|
||||
const defaultOnChange = ({ target }) => navigate(target.value)
|
||||
return (
|
||||
<select
|
||||
|
@ -24,5 +24,3 @@ Dropdown.propTypes = {
|
|||
onChange: PropTypes.func,
|
||||
children: PropTypes.node.isRequired,
|
||||
}
|
||||
|
||||
export default Dropdown
|
||||
|
|
|
@ -8,7 +8,7 @@ import { markdownToReact } from './util'
|
|||
|
||||
import classes from '../styles/embed.module.sass'
|
||||
|
||||
const YouTube = ({ id, ratio }) => {
|
||||
const YouTube = ({ id, ratio = '16x9' }) => {
|
||||
const embedClassNames = classNames(classes.root, classes.responsive, {
|
||||
[classes.ratio16x9]: ratio === '16x9',
|
||||
[classes.ratio4x3]: ratio === '4x3',
|
||||
|
@ -28,16 +28,12 @@ const YouTube = ({ id, ratio }) => {
|
|||
)
|
||||
}
|
||||
|
||||
YouTube.defaultProps = {
|
||||
ratio: '16x9',
|
||||
}
|
||||
|
||||
YouTube.propTypes = {
|
||||
id: PropTypes.string.isRequired,
|
||||
ratio: PropTypes.oneOf(['16x9', '4x3']),
|
||||
}
|
||||
|
||||
const SoundCloud = ({ id, color, title }) => {
|
||||
const SoundCloud = ({ id, color = '09a3d5', title }) => {
|
||||
const url = `https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/${id}&color=%23${color}&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&show_teaser=true`
|
||||
return (
|
||||
<figure className={classes.root}>
|
||||
|
@ -54,10 +50,6 @@ const SoundCloud = ({ id, color, title }) => {
|
|||
)
|
||||
}
|
||||
|
||||
SoundCloud.defaultProps = {
|
||||
color: '09a3d5',
|
||||
}
|
||||
|
||||
SoundCloud.propTypes = {
|
||||
id: PropTypes.string.isRequired,
|
||||
title: PropTypes.string.isRequired,
|
||||
|
@ -69,7 +61,7 @@ function formatHTML(html) {
|
|||
return `<html><head><meta charset="UTF-8"></head><body>${encoded}</body></html>`
|
||||
}
|
||||
|
||||
const Iframe = ({ title, src, html, width, height }) => {
|
||||
const Iframe = ({ title, src, html, width = 800, height = 300 }) => {
|
||||
const source = html ? `data:text/html,${formatHTML(html)}` : src
|
||||
return (
|
||||
<iframe
|
||||
|
@ -84,11 +76,6 @@ const Iframe = ({ title, src, html, width, height }) => {
|
|||
)
|
||||
}
|
||||
|
||||
Iframe.defaultProps = {
|
||||
width: 800,
|
||||
height: 300,
|
||||
}
|
||||
|
||||
Iframe.propTypes = {
|
||||
title: PropTypes.string.isRequired,
|
||||
src: PropTypes.string,
|
||||
|
|
|
@ -9,7 +9,8 @@ import Newsletter from './newsletter'
|
|||
import { ReactComponent as ExplosionLogo } from '../images/explosion.svg'
|
||||
import classes from '../styles/footer.module.sass'
|
||||
|
||||
const Footer = ({ wide }) => (
|
||||
export default function Footer({ wide = false }) {
|
||||
return (
|
||||
<StaticQuery
|
||||
query={query}
|
||||
render={data => {
|
||||
|
@ -48,7 +49,12 @@ const Footer = ({ wide }) => (
|
|||
{company}
|
||||
</Link>
|
||||
</span>
|
||||
<Link to={companyUrl} aria-label={company} hidden className={classes.logo}>
|
||||
<Link
|
||||
to={companyUrl}
|
||||
aria-label={company}
|
||||
hidden
|
||||
className={classes.logo}
|
||||
>
|
||||
<ExplosionLogo width={45} height={45} />
|
||||
</Link>
|
||||
<Link to={`${companyUrl}/legal`} hidden>
|
||||
|
@ -59,18 +65,13 @@ const Footer = ({ wide }) => (
|
|||
)
|
||||
}}
|
||||
/>
|
||||
)
|
||||
|
||||
Footer.defaultProps = {
|
||||
wide: false,
|
||||
)
|
||||
}
|
||||
|
||||
Footer.propTypes = {
|
||||
wide: PropTypes.bool,
|
||||
}
|
||||
|
||||
export default Footer
|
||||
|
||||
const query = graphql`
|
||||
query FooterQuery {
|
||||
site {
|
||||
|
|
|
@ -13,7 +13,7 @@ Please use the link below to view the example. If you've come across
|
|||
a broken link, we always appreciate a pull request to the repository,
|
||||
or a report on the issue tracker. Thanks!`
|
||||
|
||||
const GitHubCode = ({ url, lang, errorMsg, className }) => {
|
||||
const GitHubCode = ({ url, lang, errorMsg = defaultErrorMsg, className }) => {
|
||||
const [initialized, setInitialized] = useState(false)
|
||||
const [code, setCode] = useState(errorMsg)
|
||||
const codeClassNames = classNames(classes.code, classes.maxHeight, className)
|
||||
|
@ -56,10 +56,6 @@ const GitHubCode = ({ url, lang, errorMsg, className }) => {
|
|||
)
|
||||
}
|
||||
|
||||
GitHubCode.defaultProps = {
|
||||
errorMsg: defaultErrorMsg,
|
||||
}
|
||||
|
||||
GitHubCode.propTypes = {
|
||||
url: PropTypes.string.isRequired,
|
||||
lang: PropTypes.string,
|
||||
|
|
|
@ -4,7 +4,13 @@ import classNames from 'classnames'
|
|||
|
||||
import classes from '../styles/grid.module.sass'
|
||||
|
||||
const Grid = ({ cols, narrow, gutterBottom, className, children }) => {
|
||||
export default function Grid({
|
||||
cols = 1,
|
||||
narrow = false,
|
||||
gutterBottom = true,
|
||||
className,
|
||||
children,
|
||||
}) {
|
||||
const gridClassNames = classNames(classes.root, className, {
|
||||
[classes.narrow]: narrow,
|
||||
[classes.spacing]: gutterBottom,
|
||||
|
@ -15,16 +21,8 @@ const Grid = ({ cols, narrow, gutterBottom, className, children }) => {
|
|||
return <div className={gridClassNames}>{children}</div>
|
||||
}
|
||||
|
||||
Grid.defaultProps = {
|
||||
cols: 1,
|
||||
narrow: false,
|
||||
gutterBottom: true,
|
||||
}
|
||||
|
||||
Grid.propTypes = {
|
||||
cols: PropTypes.oneOf([1, 2, 3, 4]),
|
||||
narrow: PropTypes.bool,
|
||||
gutterBottom: PropTypes.bool,
|
||||
}
|
||||
|
||||
export default Grid
|
||||
|
|
|
@ -51,7 +51,7 @@ const icons = {
|
|||
download: DownloadIcon,
|
||||
}
|
||||
|
||||
const Icon = ({ name, width, height, inline, variant, className }) => {
|
||||
export default function Icon({ name, width = 20, height, inline = false, variant, className }) {
|
||||
const IconComponent = icons[name]
|
||||
const iconClassNames = classNames(classes.root, className, {
|
||||
[classes.inline]: inline,
|
||||
|
@ -69,11 +69,6 @@ const Icon = ({ name, width, height, inline, variant, className }) => {
|
|||
)
|
||||
}
|
||||
|
||||
Icon.defaultProps = {
|
||||
width: 20,
|
||||
inline: false,
|
||||
}
|
||||
|
||||
Icon.propTypes = {
|
||||
name: PropTypes.oneOf(Object.keys(icons)),
|
||||
width: PropTypes.number,
|
||||
|
@ -82,5 +77,3 @@ Icon.propTypes = {
|
|||
variant: PropTypes.oneOf(['success', 'error', 'subtle']),
|
||||
className: PropTypes.string,
|
||||
}
|
||||
|
||||
export default Icon
|
||||
|
|
|
@ -5,7 +5,7 @@ import classNames from 'classnames'
|
|||
import Icon from './icon'
|
||||
import classes from '../styles/infobox.module.sass'
|
||||
|
||||
const Infobox = ({ title, emoji, id, variant, className, children }) => {
|
||||
export default function Infobox({ title, emoji, id, variant = 'default', className, children }) {
|
||||
const infoboxClassNames = classNames(classes.root, className, {
|
||||
[classes.warning]: variant === 'warning',
|
||||
[classes.danger]: variant === 'danger',
|
||||
|
@ -32,10 +32,6 @@ const Infobox = ({ title, emoji, id, variant, className, children }) => {
|
|||
)
|
||||
}
|
||||
|
||||
Infobox.defaultProps = {
|
||||
variant: 'default',
|
||||
}
|
||||
|
||||
Infobox.propTypes = {
|
||||
title: PropTypes.node,
|
||||
id: PropTypes.string,
|
||||
|
@ -43,5 +39,3 @@ Infobox.propTypes = {
|
|||
className: PropTypes.string,
|
||||
children: PropTypes.node.isRequired,
|
||||
}
|
||||
|
||||
export default Infobox
|
||||
|
|
|
@ -8,7 +8,7 @@ import { OutputArea, OutputAreaModel } from '@jupyterlab/outputarea'
|
|||
import { RenderMimeRegistry, standardRendererFactories } from '@jupyterlab/rendermime'
|
||||
import { window } from 'browser-monads'
|
||||
|
||||
class Juniper extends React.Component {
|
||||
export default class Juniper extends React.Component {
|
||||
outputRef = null
|
||||
inputRef = null
|
||||
state = { kernel: null, renderers: null, fromStorage: null }
|
||||
|
@ -270,5 +270,3 @@ Juniper.propTypes = {
|
|||
output: PropTypes.string,
|
||||
}),
|
||||
}
|
||||
|
||||
export default Juniper
|
||||
|
|
|
@ -15,19 +15,19 @@ const Whitespace = ({ children }) => (
|
|||
<> {children} </>
|
||||
)
|
||||
|
||||
const Link = ({
|
||||
export default function Link({
|
||||
children,
|
||||
to,
|
||||
href,
|
||||
onClick,
|
||||
activeClassName,
|
||||
hidden,
|
||||
hideIcon,
|
||||
ws,
|
||||
forceExternal,
|
||||
hidden = false,
|
||||
hideIcon = false,
|
||||
ws = false,
|
||||
forceExternal = false,
|
||||
className,
|
||||
...other
|
||||
}) => {
|
||||
}) {
|
||||
const dest = to || href
|
||||
const external = forceExternal || /(http(s?)):\/\//gi.test(dest)
|
||||
const isApi = !external && !hidden && !hideIcon && /^\/?api/.test(dest)
|
||||
|
@ -100,13 +100,6 @@ export const OptionalLink = ({ to, href, children, ...props }) => {
|
|||
)
|
||||
}
|
||||
|
||||
Link.defaultProps = {
|
||||
hidden: false,
|
||||
hideIcon: false,
|
||||
ws: false,
|
||||
forceExternal: false,
|
||||
}
|
||||
|
||||
Link.propTypes = {
|
||||
children: PropTypes.node.isRequired,
|
||||
to: PropTypes.string,
|
||||
|
@ -118,5 +111,3 @@ Link.propTypes = {
|
|||
ws: PropTypes.bool,
|
||||
className: PropTypes.string,
|
||||
}
|
||||
|
||||
export default Link
|
||||
|
|
|
@ -19,7 +19,14 @@ export const Content = ({ Component = 'div', className, children }) => (
|
|||
<Component className={classNames(classes.content, className)}>{children}</Component>
|
||||
)
|
||||
|
||||
const Main = ({ sidebar, asides, wrapContent, theme, footer, children }) => {
|
||||
export default function Main({
|
||||
sidebar = false,
|
||||
asides = false,
|
||||
wrapContent = false,
|
||||
theme = 'blue',
|
||||
footer,
|
||||
children,
|
||||
}) {
|
||||
const pattern = patterns[theme]
|
||||
const mainClassNames = classNames(classes.root, {
|
||||
[classes.withSidebar]: sidebar,
|
||||
|
@ -37,13 +44,6 @@ const Main = ({ sidebar, asides, wrapContent, theme, footer, children }) => {
|
|||
)
|
||||
}
|
||||
|
||||
Main.defaultProps = {
|
||||
sidebar: false,
|
||||
asides: false,
|
||||
wrapContent: false,
|
||||
theme: 'blue',
|
||||
}
|
||||
|
||||
Main.propTypes = {
|
||||
sidebar: PropTypes.bool,
|
||||
asides: PropTypes.bool,
|
||||
|
@ -51,5 +51,3 @@ Main.propTypes = {
|
|||
theme: PropTypes.string.isRequired,
|
||||
footer: PropTypes.node,
|
||||
}
|
||||
|
||||
export default Main
|
||||
|
|
|
@ -9,7 +9,7 @@ import { github } from './util'
|
|||
import { ReactComponent as Logo } from '../images/logo.svg'
|
||||
import classes from '../styles/navigation.module.sass'
|
||||
|
||||
const NavigationDropdown = ({ items, section }) => {
|
||||
const NavigationDropdown = ({ items = [], section }) => {
|
||||
const active = items.find(({ text }) => text.toLowerCase() === section)
|
||||
const defaultValue = active ? active.url : 'title'
|
||||
return (
|
||||
|
@ -26,7 +26,7 @@ const NavigationDropdown = ({ items, section }) => {
|
|||
)
|
||||
}
|
||||
|
||||
const Navigation = ({ title, items, section, search, children }) => {
|
||||
export default function Navigation({ title, items = [], section, search, children }) {
|
||||
return (
|
||||
<nav className={classes.root}>
|
||||
<Link to="/" aria-label={title} hidden>
|
||||
|
@ -64,10 +64,6 @@ const Navigation = ({ title, items, section, search, children }) => {
|
|||
)
|
||||
}
|
||||
|
||||
Navigation.defaultProps = {
|
||||
items: [],
|
||||
}
|
||||
|
||||
Navigation.propTypes = {
|
||||
title: PropTypes.string.isRequired,
|
||||
items: PropTypes.arrayOf(
|
||||
|
@ -79,5 +75,3 @@ Navigation.propTypes = {
|
|||
section: PropTypes.string,
|
||||
search: PropTypes.node,
|
||||
}
|
||||
|
||||
export default Navigation
|
||||
|
|
|
@ -3,7 +3,7 @@ import PropTypes from 'prop-types'
|
|||
|
||||
import classes from '../styles/newsletter.module.sass'
|
||||
|
||||
const Newsletter = ({ user, id, list }) => {
|
||||
export default function Newsletter({ user, id, list }) {
|
||||
const action = `//${user}.list-manage.com/subscribe/post?u=${id}&id=${list}`
|
||||
return (
|
||||
<form
|
||||
|
@ -46,5 +46,3 @@ Newsletter.propTypes = {
|
|||
id: PropTypes.string.isRequired,
|
||||
list: PropTypes.string.isRequired,
|
||||
}
|
||||
|
||||
export default Newsletter
|
||||
|
|
|
@ -20,7 +20,7 @@ function getScrollY() {
|
|||
return isNaN(pos) ? 0 : pos
|
||||
}
|
||||
|
||||
const Progress = () => {
|
||||
export default function Progress() {
|
||||
const progressRef = useRef()
|
||||
const [initialized, setInitialized] = useState(false)
|
||||
const [offset, setOffset] = useState(getOffset())
|
||||
|
@ -53,5 +53,3 @@ const Progress = () => {
|
|||
const value = scrollY === 0 ? 0 : total || 0
|
||||
return <progress ref={progressRef} className={classes.root} value={value} max="100" />
|
||||
}
|
||||
|
||||
export default Progress
|
||||
|
|
|
@ -25,12 +25,12 @@ function getRawContent(ref) {
|
|||
}
|
||||
|
||||
const Quickstart = ({
|
||||
data,
|
||||
data = [],
|
||||
title,
|
||||
description,
|
||||
copy,
|
||||
copy = true,
|
||||
download,
|
||||
id,
|
||||
id = 'quickstart',
|
||||
setters = {},
|
||||
hidePrompts,
|
||||
children,
|
||||
|
@ -242,12 +242,6 @@ const Quickstart = ({
|
|||
)
|
||||
}
|
||||
|
||||
Quickstart.defaultProps = {
|
||||
data: [],
|
||||
id: 'quickstart',
|
||||
copy: true,
|
||||
}
|
||||
|
||||
Quickstart.propTypes = {
|
||||
title: PropTypes.oneOfType([PropTypes.string, PropTypes.node]),
|
||||
description: PropTypes.oneOfType([PropTypes.string, PropTypes.node]),
|
||||
|
|
|
@ -7,7 +7,8 @@ import { Label } from './typography'
|
|||
|
||||
import classes from '../styles/readnext.module.sass'
|
||||
|
||||
const ReadNext = ({ title, to }) => (
|
||||
export default function ReadNext({ title, to }) {
|
||||
return (
|
||||
<div className={classes.root}>
|
||||
<Link to={to} hidden>
|
||||
<Label>Read next</Label>
|
||||
|
@ -17,11 +18,10 @@ const ReadNext = ({ title, to }) => (
|
|||
<Icon name="arrowright" />
|
||||
</Link>
|
||||
</div>
|
||||
)
|
||||
)
|
||||
}
|
||||
|
||||
ReadNext.propTypes = {
|
||||
title: PropTypes.string.isRequired,
|
||||
to: PropTypes.string.isRequired,
|
||||
}
|
||||
|
||||
export default ReadNext
|
||||
|
|
|
@ -5,7 +5,7 @@ import { window } from 'browser-monads'
|
|||
import Icon from './icon'
|
||||
import classes from '../styles/search.module.sass'
|
||||
|
||||
const Search = ({ id, placeholder, settings }) => {
|
||||
export default function Search({ id = 'docsearch', placeholder = 'Search docs', settings = {} }) {
|
||||
const { apiKey, indexName } = settings
|
||||
if (!apiKey && !indexName) return null
|
||||
const [initialized, setInitialized] = useState(false)
|
||||
|
@ -36,12 +36,6 @@ const Search = ({ id, placeholder, settings }) => {
|
|||
)
|
||||
}
|
||||
|
||||
Search.defaultProps = {
|
||||
id: 'docsearch',
|
||||
placeholder: 'Search docs',
|
||||
settings: {},
|
||||
}
|
||||
|
||||
Search.propTypes = {
|
||||
settings: PropTypes.shape({
|
||||
apiKey: PropTypes.string.isRequired,
|
||||
|
@ -50,5 +44,3 @@ Search.propTypes = {
|
|||
id: PropTypes.string.isRequired,
|
||||
placeholder: PropTypes.string.isRequired,
|
||||
}
|
||||
|
||||
export default Search
|
||||
|
|
|
@ -6,7 +6,7 @@ import { window } from 'browser-monads'
|
|||
|
||||
import classes from '../styles/section.module.sass'
|
||||
|
||||
const Section = ({ id, className, ...props }) => {
|
||||
export default function Section({ id, className, ...props }) {
|
||||
const sectionClassNames = classNames(classes.root, className)
|
||||
const relId = id && id.startsWith('section-') ? id.slice(8) : id
|
||||
const [ref, inView] = useInView({ threshold: 0 })
|
||||
|
@ -24,6 +24,4 @@ Section.propTypes = {
|
|||
className: PropTypes.string,
|
||||
}
|
||||
|
||||
export default Section
|
||||
|
||||
export const Hr = () => <hr className={classes.hr} />
|
||||
|
|
|
@ -25,7 +25,16 @@ function getImage(section, nightly) {
|
|||
return socialImageDefault
|
||||
}
|
||||
|
||||
const SEO = ({ description, lang, title, section, sectionTitle, bodyClass, nightly }) => (
|
||||
export default function SEO({
|
||||
description,
|
||||
lang = 'en',
|
||||
title,
|
||||
section,
|
||||
sectionTitle,
|
||||
bodyClass,
|
||||
nightly,
|
||||
}) {
|
||||
return (
|
||||
<StaticQuery
|
||||
query={query}
|
||||
render={data => {
|
||||
|
@ -104,10 +113,7 @@ const SEO = ({ description, lang, title, section, sectionTitle, bodyClass, night
|
|||
)
|
||||
}}
|
||||
/>
|
||||
)
|
||||
|
||||
SEO.defaultProps = {
|
||||
lang: 'en',
|
||||
)
|
||||
}
|
||||
|
||||
SEO.propTypes = {
|
||||
|
@ -120,8 +126,6 @@ SEO.propTypes = {
|
|||
bodyClass: PropTypes.string,
|
||||
}
|
||||
|
||||
export default SEO
|
||||
|
||||
const query = graphql`
|
||||
query DefaultSEOQuery {
|
||||
site {
|
||||
|
|
|
@ -37,7 +37,7 @@ const DropdownNavigation = ({ items, defaultValue }) => {
|
|||
)
|
||||
}
|
||||
|
||||
const Sidebar = ({ items, pageMenu, slug }) => {
|
||||
export default function Sidebar({ items = [], pageMenu = [], slug }) {
|
||||
const [initialized, setInitialized] = useState(false)
|
||||
const [activeSection, setActiveSection] = useState(null)
|
||||
const activeRef = useRef()
|
||||
|
@ -109,11 +109,6 @@ const Sidebar = ({ items, pageMenu, slug }) => {
|
|||
)
|
||||
}
|
||||
|
||||
Sidebar.defaultProps = {
|
||||
items: [],
|
||||
pageMenu: [],
|
||||
}
|
||||
|
||||
Sidebar.propTypes = {
|
||||
items: PropTypes.arrayOf(
|
||||
PropTypes.shape({
|
||||
|
@ -140,5 +135,3 @@ Sidebar.propTypes = {
|
|||
})
|
||||
),
|
||||
}
|
||||
|
||||
export default Sidebar
|
||||
|
|
|
@ -8,7 +8,7 @@ import classes from '../styles/tag.module.sass'
|
|||
|
||||
const MIN_VERSION = 3
|
||||
|
||||
const Tag = ({ spaced, variant, tooltip, children }) => {
|
||||
export default function Tag({ spaced = false, variant, tooltip, children }) {
|
||||
if (variant === 'new') {
|
||||
const isValid = isString(children) && !isNaN(children)
|
||||
const version = isValid ? Number(children).toFixed(1) : children
|
||||
|
@ -49,14 +49,8 @@ const TagTemplate = ({ spaced, tooltip, children }) => {
|
|||
)
|
||||
}
|
||||
|
||||
Tag.defaultProps = {
|
||||
spaced: false,
|
||||
}
|
||||
|
||||
Tag.propTypes = {
|
||||
spaced: PropTypes.bool,
|
||||
tooltip: PropTypes.string,
|
||||
children: PropTypes.node.isRequired,
|
||||
}
|
||||
|
||||
export default Tag
|
||||
|
|
|
@ -24,7 +24,7 @@ const MetaItem = ({ label, url, children, help }) => (
|
|||
</span>
|
||||
)
|
||||
|
||||
const Title = ({
|
||||
export default function Title({
|
||||
id,
|
||||
title,
|
||||
tag,
|
||||
|
@ -35,7 +35,7 @@ const Title = ({
|
|||
apiDetails,
|
||||
children,
|
||||
...props
|
||||
}) => {
|
||||
}) {
|
||||
const hasApiDetails = Object.values(apiDetails || {}).some(v => v)
|
||||
const metaIconProps = { className: classes.metaIcon, width: 18 }
|
||||
return (
|
||||
|
@ -111,5 +111,3 @@ Title.propTypes = {
|
|||
image: PropTypes.string,
|
||||
children: PropTypes.node,
|
||||
}
|
||||
|
||||
export default Title
|
||||
|
|
|
@ -9,7 +9,7 @@ import { InlineCode } from '../components/code'
|
|||
const DEFAULT_REPO = 'https://github.com/explosion/projects'
|
||||
const COMMAND = 'python -m spacy project clone'
|
||||
|
||||
const Project = ({ id, repo, children }) => {
|
||||
export default function Project({ id, repo, children }) {
|
||||
const repoArg = repo ? ` --repo ${repo}` : ''
|
||||
const text = `${COMMAND} ${id}${repoArg}`
|
||||
const url = `${repo || DEFAULT_REPO}/${id}`
|
||||
|
@ -28,5 +28,3 @@ const Project = ({ id, repo, children }) => {
|
|||
</Infobox>
|
||||
)
|
||||
}
|
||||
|
||||
export default Project
|
||||
|
|
|
@ -33,7 +33,7 @@ const data = [
|
|||
},
|
||||
]
|
||||
|
||||
const QuickstartInstall = ({ id, title, description, defaultLang, children }) => (
|
||||
const QuickstartInstall = ({ id, title, description, defaultLang = 'en', children }) => (
|
||||
<StaticQuery
|
||||
query={query}
|
||||
render={({ site }) => {
|
||||
|
@ -85,10 +85,6 @@ const QuickstartInstall = ({ id, title, description, defaultLang, children }) =>
|
|||
/>
|
||||
)
|
||||
|
||||
QuickstartInstall.defaultProps = {
|
||||
defaultLang: 'en',
|
||||
}
|
||||
|
||||
export default QuickstartInstall
|
||||
|
||||
const query = graphql`
|
||||
|
|
|
@ -55,7 +55,7 @@ const DATA = [
|
|||
},
|
||||
]
|
||||
|
||||
const QuickstartTraining = ({ id, title, download = 'config.cfg' }) => {
|
||||
export default function QuickstartTraining({ id, title, download = 'config.cfg' }) {
|
||||
const [lang, setLang] = useState(DEFAULT_LANG)
|
||||
const [pipeline, setPipeline] = useState([])
|
||||
const setters = { lang: setLang, components: setPipeline }
|
||||
|
@ -124,5 +124,3 @@ const query = graphql`
|
|||
}
|
||||
}
|
||||
`
|
||||
|
||||
export default QuickstartTraining
|
||||
|
|
Loading…
Reference in New Issue
Block a user