|
|
@@ -0,0 +1,97 @@
|
|
|
+import React from 'react'
|
|
|
+import styled from 'styled-components'
|
|
|
+import t from 'prop-types'
|
|
|
+
|
|
|
+const scales = {
|
|
|
+ small: `
|
|
|
+ padding: 5px 10px;
|
|
|
+ font-size: 14px;
|
|
|
+ `,
|
|
|
+ normal: `
|
|
|
+ padding: 10px 20px;
|
|
|
+ font-size: 16px;
|
|
|
+ `,
|
|
|
+ big: `
|
|
|
+ padding: 20px 30px;
|
|
|
+ font-size: 18px;
|
|
|
+ `,
|
|
|
+}
|
|
|
+
|
|
|
+const kind = outline => (bg, color) => {
|
|
|
+ const boxShadowColor = outline ? bg : 'transparent'
|
|
|
+ const backgroundColor = outline ? 'transparent' : bg
|
|
|
+
|
|
|
+ return `
|
|
|
+ background: ${backgroundColor};
|
|
|
+ box-shadow: inset 0 0 0 1px ${boxShadowColor};
|
|
|
+ color: ${outline ? bg : color};
|
|
|
+ transition: all .3s;
|
|
|
+
|
|
|
+ &:hover {
|
|
|
+ box-shadow: inset 0 0 0 1000px ${boxShadowColor};
|
|
|
+ color: ${color};
|
|
|
+ }
|
|
|
+ `
|
|
|
+}
|
|
|
+
|
|
|
+const kinds = outline => {
|
|
|
+ const get = kind(outline)
|
|
|
+
|
|
|
+ return {
|
|
|
+ primary: get('#1FB6FF', 'white'),
|
|
|
+ secondary: get('#5352ED', 'white'),
|
|
|
+ cancel: get('#FF4949', 'white'),
|
|
|
+ dark: get('#273444', 'white'),
|
|
|
+ gray: get('#8492A6', 'white'),
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+const getScale = ({ scale = 'normal' }) => scales[scale]
|
|
|
+const getKind = ({ kind = 'primary', outline = false }) => kinds(outline)[kind]
|
|
|
+
|
|
|
+const ButtonStyled = styled('button')`
|
|
|
+ ${getKind};
|
|
|
+ ${getScale};
|
|
|
+ cursor: pointer;
|
|
|
+ margin: 3px 5px;
|
|
|
+ border: none;
|
|
|
+ border-radius: 3px;
|
|
|
+`
|
|
|
+
|
|
|
+export const addpageButton = ({ children, ...props }) => (
|
|
|
+ <ButtonStyled {...props}>{children}</ButtonStyled>
|
|
|
+)
|
|
|
+
|
|
|
+Button.propTypes = {
|
|
|
+ /**
|
|
|
+ * This is a pretty good description for this prop
|
|
|
+ */
|
|
|
+ scales: t.oneOf(['small', 'normal', 'big']),
|
|
|
+ kind: t.oneOf(['primary', 'secondary', 'cancel', 'dark', 'gray']),
|
|
|
+ outline: t.bool.isRequired,
|
|
|
+}
|
|
|
+
|
|
|
+Button.defaultProps = {
|
|
|
+ scales: 'normal',
|
|
|
+ kind: 'primary',
|
|
|
+ outline: false,
|
|
|
+}
|
|
|
+
|
|
|
+export function AddPageButton(props) {
|
|
|
+ let encodedStatus = encodeURIComponent(
|
|
|
+ "This live editor looks pretty darn handy #JavaScript"
|
|
|
+ )
|
|
|
+ let encodedURL = encodeURIComponent(
|
|
|
+ "https://ecs.chenxixian.cn/chenxixian/docz/src/master"
|
|
|
+ )
|
|
|
+
|
|
|
+ return (
|
|
|
+ <a
|
|
|
+ href={`https://ecs.chenxixian.cn/chenxixian/docz/_new/master/`}
|
|
|
+ target="_blank"
|
|
|
+ className="EditButton">
|
|
|
+ Edit This Page!
|
|
|
+ </a>
|
|
|
+ )
|
|
|
+}
|
|
|
+
|