theme-ui#Heading JavaScript Examples
The following examples show how to use
theme-ui#Heading.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ArticlesList.js From developer-portal with Apache License 2.0 | 6 votes |
ListItem = ({ title, type, link, linkText, description, isMobile }) => {
return (
<Card px={4}>
<Link href={link} passHref>
<Grid columns={['1fr auto', '1fr 1fr auto']}>
<Flex sx={{ flexDirection: 'column' }}>
<Heading sx={{ cursor: 'pointer' }} variant="microHeading">
{title}
</Heading>
<Text sx={{ cursor: 'pointer' }}>{description}</Text>
</Flex>
{!isMobile && (
<Flex sx={{ alignItems: 'center' }}>
<Text>{type}</Text>
</Flex>
)}
<Flex sx={{ alignItems: 'center', justifyContent: 'flex-end' }}>
<Text sx={{ variant: 'smallText', cursor: 'pointer' }} pr={2}>
{linkText}
</Text>
<Icon name="increase" />
</Flex>
</Grid>
</Link>
</Card>
);
}
Example #2
Source File: SignupCta.js From developer-portal with Apache License 2.0 | 6 votes |
SignupCta = () => {
const placeholder = 'We saved a slot for your email';
return (
<Container>
<Grid columns={2} sx={{ mb: 6, mx: 5 }}>
<Box sx={{ p: 5 }}>
<Heading variant="largeHeading">
Want Maker dev updates dripping into your mailbox?
</Heading>
</Box>
<Flex sx={{ justifyContent: 'center', alignItems: 'center' }}>
<EmailSignup placeholder={placeholder} />
</Flex>
</Grid>
</Container>
);
}
Example #3
Source File: RelatedResources.js From developer-portal with Apache License 2.0 | 6 votes |
RelatedResources = ({ resources = [], contentType, show = 3 }) => {
const nextType = contentType === ContentTypes.GUIDES ? 'relatedGuides' : 'relatedDocs';
return (
<Box>
<Heading variant="mediumHeading" sx={{ my: 4 }}>
<InlineText name={nextType} />
</Heading>
{resources.slice(0, show).map(({ data }, i) => {
return (
<Link key={data.frontmatter.slug} href={`/${nextType}/${data.frontmatter.slug}`} passHref>
<Flex
sx={{
alignItems: 'center',
py: 3,
px: 0,
border: 'light',
borderColor: 'muted',
borderWidth: '0 0 1px 0',
cursor: 'pointer',
}}
>
<Icon sx={{ size: 4, minWidth: 32 }} name={`num_${i + 1}`} />
<Text variant="largeText" sx={{ pl: 3 }}>
{data.frontmatter.title}
</Text>
<Icon sx={{ ml: 'auto', minWidth: 16 }} color="primary" name={'arrow_right'}></Icon>
</Flex>
</Link>
);
})}
</Box>
);
}
Example #4
Source File: Ecosystem.js From developer-portal with Apache License 2.0 | 6 votes |
ListItem = ({ title, link, description }) => (
<Card px={4}>
<ThemeLink href={link} target="_blank">
<Grid columns={'1fr auto'}>
<Flex sx={{ flexDirection: 'column' }}>
<Heading sx={{ cursor: 'pointer' }} variant="microHeading">
{title}
</Heading>
<Text sx={{ cursor: 'pointer' }} variant="smallText">
{description}
</Text>
</Flex>
<Flex sx={{ alignItems: 'center', justifyContent: 'flex-end' }}>
<Icon name="increase" color="text" />
</Flex>
</Grid>
</ThemeLink>
</Card>
)
Example #5
Source File: GuideCard.js From developer-portal with Apache License 2.0 | 6 votes |
GuideCard = ({ title, link, linkText, description, icon, tags, ...props }) => {
return (
<Box {...props}>
<Link href={link} passHref>
<Grid sx={{ height: '100%', gap: 3, gridTemplateRows: '50px auto 1fr auto' }}>
<Icon color="mutedAlt" name={icon} size={5}></Icon>
<Heading sx={{ cursor: 'pointer' }} variant="smallHeading">
{title}
</Heading>
<Text
sx={{
cursor: 'pointer',
display: '-webkit-inline-box',
overflow: 'hidden',
maxHeight: '70px',
WebkitLineClamp: 3,
WebkitBoxOrient: 'vertical',
}}
>
{description}
</Text>
<TagList tags={tags} />
<Flex sx={{ alignItems: 'center', alignSelf: 'end' }}>
<Icon name="arrow_right" color="primary" mr={2} />
<ThemeLink>{linkText}</ThemeLink>
</Flex>
</Grid>
</Link>
</Box>
);
}
Example #6
Source File: AboutThisSite.js From developer-portal with Apache License 2.0 | 5 votes |
AboutThisSite = ({ preview }) => {
return (
<Container>
<Grid columns={[1, 2]}>
<Flex sx={{ flexDirection: 'column', alignSelf: 'end' }}>
<Heading
variant="megaHeading"
sx={{
color: 'onBackgroundMuted',
}}
>
About
</Heading>
<Heading variant="megaHeading">This Site</Heading>
</Flex>
<Heading sx={{ alignSelf: 'end', pb: 3 }}>
<InlineTextarea name="aboutThisSiteSubheading" />
</Heading>
</Grid>
<Flex>
<Text
sx={{
py: [0, 4],
color: 'onBackgroundMuted',
columns: preview ? undefined : '2 200px',
width: '100%',
}}
>
<InlineTextarea name="aboutThisSiteSubtext" />
</Text>
</Flex>
<Flex sx={{ width: '100%', justifyContent: 'center' }}>
<Flex sx={{ flexDirection: 'column', pt: 2, justifyContent: 'center' }}>
<Box
sx={{
ml: [0, 'auto'],
px: [0, 4],
py: [3, 3, 4],
}}
>
<EditLink />
</Box>
<ThemeLink href={`${GITHUB_EDIT_LINK}/data/landingPage.json`} target="_blank">
<Flex sx={{ alignItems: 'center', justifyContent: 'center' }}>
<Icon sx={{ mr: 2 }} color="primary" name="github"></Icon>
<Text sx={{ color: 'text', cursor: 'pointer' }}>Edit on Github</Text>
</Flex>
</ThemeLink>
</Flex>
</Flex>
</Container>
);
}
Example #7
Source File: index.js From developer-portal with Apache License 2.0 | 5 votes |
Page = ({ file, guides, documentation, bannerFile, featGuidesFile, preview }) => {
const [mobile, setMobile] = useState(false);
const bpi = useBreakpointIndex({ defaultIndex: 2 });
const router = useRouter();
const [data, form] = useGithubJsonForm(file, landingPageFormOptions);
const [bannerData, bannerForm] = useBannerForm(bannerFile, preview);
const [featGuidesData, featGuidesForm] = useFeaturedGuidesForm(featGuidesFile, preview);
useFormScreenPlugin(bannerForm);
useFormScreenPlugin(featGuidesForm);
usePlugin(form);
useGithubToolbarPlugins();
useCreateDocument([...guides, ...documentation]);
useEffect(() => {
setMobile(bpi < 2);
}, [bpi]);
const featuredGuides = featGuidesData.featuredGuides.map((slug) =>
guides.find(({ data }) => data.frontmatter.slug === slug)
);
return (
<SingleLayout bannerData={bannerData.banner} mobile={mobile} router={router}>
<Head>
<title>Maker Protocol Developer Portal</title>
</Head>
<InlineForm form={form}>
<Grid sx={{ rowGap: 6 }}>
<PageLead cta="Start learning about the Maker Protocol" mobile={mobile} />
<GuideList title="Featured Guides" path="guides" guides={featuredGuides} />
<IntroText mobile={mobile} />
<Grid>
<Container>
<Heading variant="megaHeading">
Get Started <span sx={{ color: 'onBackgroundMuted' }}>With</span>
</Heading>
</Container>
<Grid sx={{ rowGap: 5 }}>
<DocumentationList />
<LibrariesSdks />
</Grid>
</Grid>
<SecurityFeatures />
<CommunityCta mobile={mobile} />
<AboutThisSite preview={preview} />
<NewsletterCallout />
</Grid>
</InlineForm>
</SingleLayout>
);
}
Example #8
Source File: SecurityFeatures.js From developer-portal with Apache License 2.0 | 5 votes |
SecurityFeatures = () => {
return (
<Container>
<Flex
sx={{
flexDirection: 'column',
}}
>
<Heading variant="largeHeading">Security Features</Heading>
<Flex
sx={{
alignItems: 'center',
mt: 5,
}}
>
<Grid columns={[1, '1fr 2fr']}>
<Icon color="textMuted" name="security" size={7} sx={{ ml: 4 }} />
<Flex
sx={{
flexDirection: 'column',
width: ['100%', '80%', '100%'],
p: 0,
ml: [0, 5, 0],
}}
>
<Heading variant="mediumHeading" sx={{ pb: 3 }}>
Security details
</Heading>
<Text sx={{ pb: 3, fontSize: [4, 5], color: 'onBackgroundMuted' }}>
<InlineTextarea name="securitySubtext" />
</Text>
<Link href="/security">
<Flex sx={{ alignItems: 'center' }}>
<Icon sx={{ mr: 2 }} color="primary" name={'arrow_right'}></Icon>
<ThemeLink>Learn more about Security</ThemeLink>
</Flex>
</Link>
</Flex>
</Grid>
</Flex>
</Flex>
</Container>
);
}
Example #9
Source File: IntroText.js From developer-portal with Apache License 2.0 | 5 votes |
IntroText = ({ mobile }) => {
return (
<Container>
<Flex
sx={{
alignItems: 'center',
flexWrap: mobile ? 'wrap' : 'nowrap',
}}
>
<Flex pb="4" sx={{ width: '100%', flexDirection: 'column', minWidth: ['50vw', 600] }}>
<Heading variant="megaHeading">About</Heading>
<Heading
variant="megaHeading"
sx={{
color: 'onBackgroundMuted',
}}
>
The Protocol
</Heading>
</Flex>
<Heading
sx={{
pb: 4,
color: 'onBackgroundMuted',
}}
>
<InlineTextarea name="aboutSubheading" />
</Heading>
</Flex>
<Grid columns={[1, 2]}>
<Flex sx={{ flexDirection: 'column', width: '100%' }}>
<Text
sx={{
pb: 4,
color: 'onBackgroundMuted',
}}
>
<InlineTextarea name="aboutMakerProtocol" />
</Text>
<Link href="/documentation/introduction-to-the-maker-protocol">
<Flex sx={{ alignItems: 'center', pb: [5, 0] }}>
<Icon sx={{ mr: 2 }} color="primary" name={'arrow_right'}></Icon>
<ThemeLink>Learn more about the Maker Protocol.</ThemeLink>
</Flex>
</Link>
</Flex>
<Flex sx={{ px: 4, flexDirection: 'column' }}>
<Heading sx={{ pb: 3, pr: [0, 0, 6] }}>
<InlineText name="devUpdates1" />
</Heading>
<EmailSignup sx={{ fontSize: 5 }} placeholder="We saved a slot for your email" />
</Flex>
</Grid>
</Container>
);
}
Example #10
Source File: GuideList.js From developer-portal with Apache License 2.0 | 5 votes |
GuideList = ({ guides, title, path }) => {
return (
<Flex>
<Box>
<Container>
<Flex
sx={{
alignItems: 'center',
flexWrap: 'wrap',
mb: 3,
}}
>
<Heading variant="largeHeading">{title}</Heading>
<Link href={'/guides'} passHref>
<Flex sx={{ ml: 'auto', alignItems: 'center' }}>
<Icon sx={{ mr: 2 }} color="primary" name={'arrow_right'}></Icon>
<ThemeLink sx={{ color: 'text', cursor: 'pointer' }}>View All</ThemeLink>
</Flex>
</Link>
</Flex>
</Container>
<Grid
gap={4}
sx={{
ml: [0, 2],
gridAutoFlow: 'column',
overflowX: 'auto',
pl: [2, 'calc(50% - 1140px / 2)'],
'::-webkit-scrollbar': {
display: 'none',
},
scrollbarWidth: 'none',
}}
>
{guides.map((guide, i) => {
if (!guide) return null;
const {
data: {
frontmatter: { group, title, slug, description, tags },
},
} = guide;
return (
<GuideCard
key={title}
title={title}
type={group}
description={description}
link={`/${path}/${slug}/`}
linkText={'Read'}
icon={`stamp_${(i % 5) + 1}`}
tags={tags}
sx={{
width: 7,
border: 'light',
borderColor: 'muted',
borderRadius: 'small',
'&:hover': {
borderColor: 'primaryEmphasis',
},
p: 3,
}}
/>
);
})}
</Grid>
</Box>
</Flex>
);
}
Example #11
Source File: Ecosystem.js From developer-portal with Apache License 2.0 | 5 votes |
Ecosystem = ({ title, items }) => {
const tabs = items
.reduce((acc, { categories }) => acc.push(...categories) && acc, [])
.filter((item, idx, array) => array.indexOf(item) === idx)
.sort();
const [activeTab, setActiveTab] = useState(tabs[0]);
return (
<Container>
<Flex
sx={{
flexDirection: 'column',
mb: 6,
}}
>
<Flex
sx={{
pb: 4,
alignItems: 'center',
}}
>
<Flex sx={{ width: '100%', justifyContent: 'space-between', alignItems: 'center' }}>
<Heading>{title}</Heading>
<ThemeLink href={SUBMIT_LINK} target="_blank">
<Flex sx={{ alignItems: 'center' }}>
<Text sx={{ color: 'text', cursor: 'pointer' }}>Submit your tool</Text>
<Icon sx={{ ml: 2 }} color="primary" name={'arrow_right'}></Icon>
</Flex>
</ThemeLink>
</Flex>
</Flex>
<Flex
sx={{
alignItems: 'center',
pb: 2,
overflow: 'auto',
}}
>
{tabs.map((name) => (
<NavLink
key={name}
onClick={() => setActiveTab(name)}
sx={{
color: activeTab === name ? 'primary' : undefined,
minWidth: 'max-content',
pl: 2,
pr: 4,
'&:first-of-type': { pl: 0 },
}}
>
{EcosystemCategories[name]}
</NavLink>
))}
</Flex>
<Grid columns={[1, 2]} sx={{ width: '100%' }}>
{items
.filter(({ categories }) => categories.includes(activeTab))
.map(({ title, link, description }) => {
return <ListItem key={title} title={title} description={description} link={link} />;
})}
</Grid>
</Flex>
</Container>
);
}
Example #12
Source File: DocumentationList.js From developer-portal with Apache License 2.0 | 5 votes |
DocumentationList = () => {
return (
<Box>
<Container>
<Flex sx={{ mb: 3, alignItems: 'center', justifyContent: 'space-between' }}>
<Heading variant="largeHeading">Documentation</Heading>
<Link href={'/documentation'} passHref>
<Flex sx={{ ml: 3, alignItems: 'center' }}>
<Icon sx={{ mr: 2 }} color="primary" name={'arrow_right'}></Icon>
<ThemeLink sx={{ color: 'text', cursor: 'pointer' }}>Start learning</ThemeLink>
</Flex>
</Link>
</Flex>
</Container>
<Grid
sx={{
columnGap: 3,
gridAutoFlow: 'column',
overflowX: 'auto',
pl: [2, 'calc(50% - 1140px / 2)'],
'::-webkit-scrollbar': {
display: 'none',
},
scrollbarWidth: 'none',
gridTemplateRows: 'auto',
rowGap: 3,
}}
>
{docLinks.map(({ name, url }) => {
return (
<Link key={name} href={`${url}`} passHref>
<Card
sx={{
width: 180,
border: 'light',
bg: 'background',
borderColor: 'muted',
cursor: 'pointer',
'&:hover': {
borderColor: 'primaryEmphasis',
},
}}
>
<Flex
sx={{
flexDirection: 'column',
justifyContent: 'space-between',
height: '100%',
}}
>
<Heading>{name}</Heading>
<Flex sx={{ alignItems: 'center' }}>
<Icon sx={{ mr: 2 }} color="primary" name={'arrow_right'}></Icon>
<ThemeLink sx={{ color: 'text', cursor: 'pointer' }}>View Docs</ThemeLink>
</Flex>
</Flex>
</Card>
</Link>
);
})}
</Grid>
</Box>
);
}
Example #13
Source File: CodeBox.js From developer-portal with Apache License 2.0 | 5 votes |
CodeBox = ({ cta, sections }) => {
const [activeTool, setActiveTool] = useState(0);
return (
<Container>
<Heading sx={{ pb: [3, 4] }} variant="mediumHeading">
{cta}
</Heading>
<Grid
columns={[1, '1fr auto']}
sx={{
columnGap: 4,
}}
>
<Box>
<Card
sx={{
height: '500px',
width: '100%',
bg: 'background',
}}
>
<CodeWrapper
value={sections[activeTool].code}
language={sections[activeTool].language}
/>
</Card>
</Box>
<Box>
<Grid
sx={{
rowGap: 4,
}}
>
{sections.map((tool, i) => {
const { title, des, link } = tool;
const isActive = i === activeTool;
return (
<Box key={tool.title}>
<Heading
variant="microHeading"
onClick={() => {
setActiveTool(i);
}}
sx={{ cursor: 'pointer' }}
>
{title}
</Heading>
{!isActive ? null : (
<Grid
sx={{
rowGap: 2,
pt: 2,
}}
>
<Text>{des}</Text>
<Link href={link} passHref>
<Flex sx={{ alignItems: 'center' }}>
<Icon sx={{ mr: 2 }} name={'arrow_right'}></Icon>
<ThemeLink sx={{ color: 'text', cursor: 'pointer' }}>Read More</ThemeLink>
</Flex>
</Link>
</Grid>
)}
</Box>
);
})}
</Grid>
</Box>
</Grid>
</Container>
);
}
Example #14
Source File: ArticlesList.js From developer-portal with Apache License 2.0 | 5 votes |
ArticlesList = ({ resources, title, path }) => {
const bpi = useBreakpointIndex({ defaultIndex: 2 });
return (
<Container>
<Flex
sx={{
flexDirection: 'column',
}}
>
<Flex
sx={{
pb: 4,
alignItems: 'center',
}}
>
<Heading pr={3}>{title}</Heading>
</Flex>
<Grid sx={{ width: '100%' }}>
{resources.map(
({
data: {
frontmatter: { group, title, slug, description },
},
}) => {
return (
<ListItem
key={title}
title={title}
type={group}
description={description}
link={`/${path}/${slug}/`}
linkText={'Read'}
isMobile={bpi < 2}
/>
);
}
)}
</Grid>
</Flex>
</Container>
);
}
Example #15
Source File: Feedback.js From developer-portal with Apache License 2.0 | 4 votes |
Feedback = ({ route, cms, mobile }) => {
const ref = useRef(null);
const rcRef = useRef(null);
const [reaction, setReaction] = useState(null);
const isNegative = reaction === 'negative';
const isPositive = reaction === 'positive';
const isSubmitted = reaction === 'submitted';
const { title, placeholder } = isNegative
? {
title: mobile ? 'sorryMobile' : 'sorry',
placeholder: 'Please let us know how we can improve it.',
}
: isPositive
? {
title: mobile ? 'gladMobile' : 'glad',
placeholder: 'Please let us know how we can make it even better.',
}
: isSubmitted
? { title: mobile ? 'thanksMobile' : 'thanks' }
: { title: mobile ? 'helpfulMobile' : 'helpful' };
const sendFeedback = useCallback(async () => {
const markdown = constructMarkdownString(reaction, rcRef.current?.value, ref.current?.value);
try {
const response = await fetch(process.env.FEEDBACK_ENDPOINT || '/api/feedback', {
body: JSON.stringify({
reaction,
comment: markdown,
tags: ['feedback', window.location.pathname],
}),
headers: {
'Content-Type': 'application/json',
},
method: 'POST',
credentials: 'same-origin',
referrerPolicy: 'no-referrer',
});
if (!response.ok) {
throw Error(response.statusText);
}
cms.alerts.success('Your feedback has been submitted');
setReaction('submitted');
} catch (err) {
console.error(err);
cms.alerts.error('there was an error in submitting your feedback');
}
}, [reaction, cms.alerts]);
useEffect(() => {
setReaction(null);
}, [route]);
return (
<Card
sx={{
bg: 'background',
border: 'light',
borderColor: 'muted',
borderRadius: 'small',
width: '100%',
}}
>
<Flex sx={{ justifyContent: 'space-between', alignItems: 'center' }}>
<Flex sx={{ alignItems: 'center' }}>
<Icon
sx={{ mr: 2 }}
color="primary"
size="auto"
height="20px"
width="20px"
name="document"
></Icon>
<Heading variant="smallHeading">
<InlineText name={title} />
</Heading>
</Flex>
{isSubmitted ? (
<Flex
sx={{
alignItems: 'center',
justifyContent: 'center',
bg: 'primary',
size: 4,
borderRadius: 'round',
ml: 'auto',
}}
>
<Icon name="checkmark" size="3" />
</Flex>
) : (
<Grid columns={2}>
<Button
variant="contrastButtonSmall"
sx={{
bg: isPositive ? 'primary' : undefined,
color: isPositive ? 'onPrimary' : undefined,
minWidth: 42,
}}
onClick={() => setReaction('positive')}
>
Yes
</Button>
<Button
variant="contrastButtonSmall"
sx={{
bg: isNegative ? 'primary' : undefined,
color: isNegative ? 'onPrimary' : undefined,
minWidth: 42,
}}
onClick={() => setReaction('negative')}
>
No
</Button>
</Grid>
)}
</Flex>
{(isNegative || isPositive) && (
<Flex sx={{ flexDirection: 'column', alignItems: 'flex-start' }}>
<Text sx={{ fontWeight: 'body', mb: 2, mt: 3 }} variant="caps">
FEEDBACK
</Text>
<Textarea
aria-label="Feedback textarea"
ref={ref}
placeholder={placeholder}
sx={{
mb: 2,
bg: 'surface',
borderColor: 'muted',
fontSize: 3,
}}
></Textarea>
<Text sx={{ fontWeight: 'body', mb: 2, mt: 3 }} variant="caps">
ROCKET CHAT HANDLE (OPTIONAL)
</Text>
<Flex sx={{ justifyContent: 'space-between', width: '100%' }}>
<Input
sx={{
mr: 3,
fontFamily: 'body',
fontSize: 3,
bg: 'surface',
borderColor: 'muted',
width: ['66%', '100%'],
}}
type="email"
aria-label="Feedback handle"
placeholder="Enter your Rocket Chat handle if you would like to be in contact."
ref={rcRef}
></Input>
<Button
sx={{ px: [2, 4], width: ['33%', 'initial'] }}
variant="small"
onClick={sendFeedback}
>
Submit
</Button>
</Flex>
<Flex sx={{ pt: 3, flexWrap: 'wrap' }}>
<Text sx={{ color: 'onBackgroundMuted', pr: 3 }}>
<InlineText name="additional" />
</Text>
<ThemeLink href={'https://chat.makerdao.com/channel/dev'} target="_blank">
<Flex sx={{ alignItems: 'center' }}>
<Icon sx={{ mr: 2 }} color="primary" name="chat"></Icon>
<Text
sx={{
color: 'text',
cursor: 'pointer',
'&:hover': {
color: 'primaryEmphasis',
},
}}
>
chat.makerdao.com
</Text>
</Flex>
</ThemeLink>
</Flex>
</Flex>
)}
</Card>
);
}
Example #16
Source File: ContributeCta.js From developer-portal with Apache License 2.0 | 4 votes |
Contributors = ({ file }) => {
return (
<Flex
sx={{
py: 3,
px: 3,
border: 'light',
borderColor: 'muted',
borderRadius: 'small',
width: '100%',
}}
>
<Icon
name="edit"
sx={{ mr: 2, mb: 'auto', pt: 1 }}
color="primary"
size="auto"
height="24px"
width="24px"
></Icon>
<Flex sx={{ flexDirection: 'column', width: '100%' }}>
<Heading>
<InlineText name="edit" />
</Heading>
<Heading sx={{ width: '100%', color: 'onBackgroundMuted' }}>
<InlineText name="editSub" />
</Heading>
<Grid columns={[1, '1fr 1fr auto']} sx={{ width: '100%' }}>
<Flex
sx={{
mt: 3,
flexDirection: 'column',
alignItems: 'flex-start',
justifyContent: 'space-between',
}}
>
<Text>
<InlineTextarea name="editLCol" />
</Text>
<Flex sx={{ flexDirection: 'column', pt: 4 }}>
<EditLink enterText="Edit This Page" sx={{ px: 3 }} />
<ThemeLink href={`${GITHUB_EDIT_LINK}${file.fileRelativePath}`} target="_blank">
<Flex sx={{ alignItems: 'center', mt: 2, pl: 3 }}>
<Icon sx={{ mr: 2 }} color="primary" name="github"></Icon>
<Text
sx={{
color: 'text',
cursor: 'pointer',
'&:hover': {
color: 'primaryEmphasis',
},
}}
>
Edit on Github
</Text>
</Flex>
</ThemeLink>
</Flex>
</Flex>
<Flex sx={{ mt: 3, flexDirection: 'column', alignItems: 'flex-start' }}>
<Text>
<InlineTextarea name="editRCol" />
</Text>
<Flex sx={{ flexDirection: 'column', mt: 'auto' }}>
<Text sx={{ fontWeight: 'bold' }}>Questions?</Text>
<Text>Ask us in the #dev channel</Text>
<ThemeLink href={'https://chat.makerdao.com/channel/dev'} target="_blank">
<Flex sx={{ alignItems: 'center', mt: 2 }}>
<Icon sx={{ mr: 2 }} color="primary" name="chat"></Icon>
<Text
sx={{
color: 'text',
cursor: 'pointer',
'&:hover': {
color: 'primaryEmphasis',
},
}}
>
chat.makerdao.com
</Text>
</Flex>
</ThemeLink>
</Flex>
</Flex>
<Icon
sx={{ transform: 'rotate(45deg)', width: 'auto', ml: 'auto', zIndex: -1 }}
name="smiley"
size={6}
/>
</Grid>
</Flex>
</Flex>
);
}
Example #17
Source File: LibrariesSdks.js From developer-portal with Apache License 2.0 | 4 votes |
LibrariesSdks = () => {
const daijsCode = `import Maker from '@makerdao/dai';
const maker =
await Maker.create('http', {
url: myRpcUrl,
privateKey: myPrivateKey
});
const vault =
await maker
.service('mcd:cdpManager')
.openLockAndDraw(
'ETH-A', ETH(50), DAI(1000)
);`;
return (
<Container>
<Heading variant="largeHeading" pb={3}>
Libraries
</Heading>
<Grid columns={[1, '1fr auto']} sx={{ gridColumnGap: 4, gridRowGap: [4, 'auto'] }}>
<CodeWindow code={daijsCode} />
<Grid columns={[1, 'auto', 2]} sx={{ gridRowGap: 3, gridTemplateRows: '2em' }}>
<Heading variant="smallHeading">Dai.js</Heading>
<Flex
sx={{
flexDirection: 'column',
gridRowStart: 2,
justifyContent: 'space-between',
pb: [4, 0],
}}
>
<Flex sx={{ flexDirection: 'column', color: 'onBackgroundMuted' }}>
<Text
variant="plainText"
sx={{
pb: 2,
}}
>
<InlineTextarea name="sdksAndToolsHeading" />
</Text>
<Text>
<InlineTextarea name="sdksAndToolsText" />
</Text>
</Flex>
<Link href="/documentation/introduction-to-dai-js">
<Flex sx={{ alignItems: 'center', py: [3, 3, 0] }}>
<Icon sx={{ mr: 2 }} color="primary" name={'arrow_right'}></Icon>
<ThemeLink>View Dai.js docs</ThemeLink>
</Flex>
</Link>
</Flex>
<Flex
sx={{
flexDirection: 'column',
gridRowStart: ['auto', 4, 2],
gridColumnStart: [1, 1, 2],
}}
>
<Flex
sx={{
flexDirection: 'column',
color: 'onBackgroundMuted',
}}
>
<Text sx={{ pb: 2, fontSize: [4, 5] }}>
<InlineTextarea name="pyMakerHeading" />
</Text>
<Text>
<InlineTextarea name="pyMakerSubtext" />
</Text>
</Flex>
<Link href="/documentation/pymaker">
<Flex sx={{ alignItems: 'center', py: [3, 3, 4] }}>
<Icon sx={{ mr: 2 }} color="primary" name={'arrow_right'}></Icon>
<ThemeLink>View pyMaker docs</ThemeLink>
</Flex>
</Link>
</Flex>
</Grid>
</Grid>
<Grid
columns={[1, 'auto', 3]}
sx={{
pt: 4,
}}
>
<Heading
variant="largeHeading"
sx={{ py: 4, gridColumnStart: [1, 2], gridColumnEnd: [2, 4] }}
>
<InlineTextarea name="toolsHeading" />
</Heading>
<Flex
sx={{
flexDirection: 'column',
gridColumnStart: [1, 2],
}}
>
<Icon name="keeper" color="textMuted" sx={{ width: '164px', height: '164px', mb: 4 }} />
<Heading>Keepers</Heading>
<Text sx={{ py: 3, color: 'onBackgroundMuted' }}>
<InlineTextarea name="keepersSubtext" />
</Text>
<Link href="/documentation/introduction-to-auction-keepers">
<Flex sx={{ alignItems: 'center' }}>
<Icon sx={{ mr: 2 }} color="primary" name={'arrow_right'}></Icon>
<ThemeLink>Learn more about Maker Keepers</ThemeLink>
</Flex>
</Link>
</Flex>
<Flex
sx={{
flexDirection: 'column',
gridColumnStart: [1, 3],
mt: [4, 0],
}}
>
<Icon
name="wireframeGlobe"
color="textMuted"
sx={{ width: '164px', height: '164px', mb: 4 }}
/>
<Heading>CLIs</Heading>
<Text sx={{ py: 3, color: 'onBackgroundMuted' }}>
<InlineTextarea name="CLIsSubtext" />
</Text>
<Link href="/documentation/mcd-cli">
<Flex sx={{ alignItems: 'center', mt: 'auto' }}>
<Icon sx={{ mr: 2 }} color="primary" name={'arrow_right'}></Icon>
<ThemeLink>Learn more about the CLIs</ThemeLink>
</Flex>
</Link>
</Flex>
</Grid>
</Container>
);
}
Example #18
Source File: NewsletterCallout.js From developer-portal with Apache License 2.0 | 4 votes |
NewsletterCallout = () => {
const { inputEl, subscribe, loading, success, errorMessage } = useEmailSubscribe();
return (
<Container sx={{ display: 'flex', justifyContent: 'center', pb: 6 }}>
<Grid gap={3}>
<Heading sx={{ display: 'flex', justifyContent: 'center' }} variant="mediumHeading">
Want Maker dev updates dripping into your inbox?
</Heading>
<Flex sx={{ flexDirection: 'column', justifyContent: 'center' }}>
<Text variant="plainText" sx={{ alignSelf: 'center' }}>
<InlineTextarea name="devUpdatesSubtext1" />
</Text>
<Text sx={{ alignSelf: 'center', pb: 3 }} variant="plainText">
<InlineTextarea name="devUpdatesSubtext2" />
</Text>
</Flex>
{success ? (
<Card sx={{ p: 4 }}>
<Flex sx={{ flexDirection: 'column', alignItems: 'center', position: 'relative' }}>
<Flex
sx={{
position: 'absolute',
top: '-50px',
alignItems: 'center',
justifyContent: 'center',
bg: 'primary',
size: '40px',
borderRadius: 'round',
mx: 2,
}}
>
<Icon name="checkmark" size="3" />
</Flex>
<Text variant="plainText" sx={{ fontWeight: 'bold', fontSize: 4 }}>
Thank you for signing up!
</Text>
<Text variant="plainText" sx={{ fontSize: 2 }}>
Stay tuned, you will get dev updates soon.
</Text>
</Flex>
</Card>
) : (
<>
<Flex sx={{ flexDirection: 'column' }}>
<Flex sx={{ justifyContent: 'center' }}>
<Input
aria-label="Email for newsletter"
ref={inputEl}
type="email"
placeholder="Email"
disabled={loading}
sx={{
fontFamily: 'heading',
fontSize: 5,
bg: 'onBackground',
borderColor: 'onBackground',
borderRadius: (theme) =>
`${theme.radii.small}px 0px 0px ${theme.radii.small}px`,
pl: 4,
'&:focus': {
color: 'background',
},
}}
></Input>
<Button
disabled={loading}
onClick={subscribe}
sx={{
borderColor: 'primary',
borderRadius: (theme) =>
`0px ${theme.radii.small}px ${theme.radii.small}px 0px`,
py: 2,
width: 7,
fontSize: 5,
}}
>
Sign up
</Button>
</Flex>
{errorMessage && (
<Text variant="plainText" sx={{ py: 2, px: 4, fontSize: 1, color: 'primary' }}>
{errorMessage}
</Text>
)}
</Flex>
</>
)}
</Grid>
</Container>
);
}
Example #19
Source File: PageLead.js From developer-portal with Apache License 2.0 | 4 votes |
PageLead = ({ cta, mobile }) => {
return (
<Container>
<Flex sx={{ py: [4, 4, 6], flexDirection: 'column', position: 'relative' }}>
<Icon
color="textMuted"
name="rect_1"
size="100px"
sx={{
position: 'absolute',
left: mobile ? '5%' : '30%',
transform: mobile ? 'scale(0.5, 0.5)' : undefined,
top: mobile ? '-10%' : '30px',
}}
/>
<Icon
color="textMuted"
name="rect_2"
size="120px"
sx={{
position: 'absolute',
top: mobile ? '-50px' : '85px',
right: mobile ? '30%' : '200px',
transform: mobile ? 'scale(0.5, 0.5)' : undefined,
}}
/>
<Icon
color="textMuted"
name="rect_3"
size="160px"
sx={{
position: 'absolute',
top: mobile ? '-50px' : '200px',
right: mobile ? '-5%' : '25px',
transform: mobile ? 'scale(0.3, 0.3)' : undefined,
}}
/>
<Icon
color="textMuted"
name="rect_4"
size="120px"
sx={{
position: 'absolute',
bottom: mobile ? '-15%' : '65px',
right: mobile ? '10%' : '225px',
transform: mobile ? 'scale(0.5, 0.5)' : undefined,
}}
/>
<Icon
color="textMuted"
name="rect_5"
size="115px"
sx={{
position: 'absolute',
bottom: mobile ? '-60%' : '-50px',
left: mobile ? '60%' : '400px',
transform: mobile ? 'translate(-100%, -100%) scale(0.5, 0.5);' : undefined,
}}
/>
<Icon
color="textMuted"
name="rect_6"
size="180px"
sx={{
position: 'absolute',
bottom: mobile ? '20px' : '40px',
left: mobile ? undefined : '-65px',
right: mobile ? '67%' : undefined,
transform: mobile ? 'scale(0.4, 0.4)' : undefined,
}}
/>
<Heading variant="megaHeading">
<InlineText name="primaryNavHeader" />
</Heading>
<Heading sx={{ color: 'onBackgroundMuted' }} variant="megaHeading">
<InlineText name="secondaryNavHeader" />
</Heading>
<Flex sx={{ flexDirection: 'column', pl: [5, 7], mt: 3, width: ['100%', '75%'] }}>
<Text
className="subtext"
sx={{
color: 'onBackgroundMuted',
mb: 2,
}}
>
<InlineText name="subtext" />
</Text>
<Link href="/documentation/introduction-to-the-maker-protocol">
<Flex sx={{ alignItems: 'center' }}>
<Icon sx={{ mr: 2 }} color="primary" name={'arrow_right'}></Icon>
<ThemeLink>{cta}</ThemeLink>
</Flex>
</Link>
</Flex>
</Flex>
</Container>
);
}
Example #20
Source File: CommunityCta.js From developer-portal with Apache License 2.0 | 4 votes |
CommunitySection = ({ mobile }) => {
const ctaContent = [
{
title: 'Join our dev community',
link: 'https://chat.makerdao.com/channel/dev',
text: 'Join our chat',
},
{
title: 'Join the conversation',
link: 'https://forum.makerdao.com/c/devs/19',
text: 'Join our forum',
},
{
title: 'Be a contributor',
link: 'https://github.com/makerdao/developer-portal',
text: 'Github',
},
];
return (
<Container>
<Card sx={{ p: 0, display: 'flex', width: '100%', position: 'relative', zIndex: 0 }}>
<Icon
color="textMuted"
name="tri_1"
size="150px"
sx={{
position: 'absolute',
top: '-70px',
left: '60px',
transform: mobile ? 'scale(0.5, 0.5)' : undefined,
}}
/>
<Icon
color="textMuted"
name="tri_2"
size="250px"
sx={{
position: 'absolute',
alignSelf: 'flex-end',
right: '5px',
top: '-120px',
transform: mobile ? 'scale(0.5, 0.5)' : undefined,
}}
/>
<Icon
color="textMuted"
name="tri_3"
size="240px"
sx={{
position: 'absolute',
left: '-130px',
top: '240px',
}}
/>
<Icon
color="textMuted"
name="tri_4"
size="90px"
sx={{
position: 'absolute',
alignSelf: 'flex-end',
right: '60px',
bottom: '-50px',
}}
/>
<Grid sx={{ p: 4, rowGap: 4 }}>
<Flex sx={{ justifyContent: 'center' }}>
<Heading variant="largeHeading">
<InlineText name="joinUs" />
</Heading>
</Flex>
<Grid columns={[1, 3]} sx={{ py: 4 }}>
{ctaContent.map(({ title, link, text }) => (
<Card sx={{ p: [3, 3, 4], bg: 'onBackground' }} key={title}>
<Grid sx={{ height: '100%' }}>
<Heading sx={{ color: 'background' }}>{title}</Heading>
<ThemeLink sx={{ alignSelf: 'end' }} href={link} target="_blank">
<Flex sx={{ alignItems: 'center' }}>
<Icon name="increase" color="primary"></Icon>
<Text variant="largeText" sx={{ color: 'background', px: 2 }}>
{text}
</Text>
</Flex>
</ThemeLink>
</Grid>
</Card>
))}
</Grid>
</Grid>
</Card>
<Flex
sx={{
justifyContent: mobile ? 'space-between' : 'center',
alignItems: 'center',
px: [0, 5, 4],
py: [5, 4],
}}
>
<Icon color="textMuted" name="smiley" size={6} />
<Flex sx={{ width: ['50%', '100%', '50%'], p: [0, 4] }}>
<Heading>
<InlineTextarea name="communityCallout" />
</Heading>
</Flex>
</Flex>
</Container>
);
}
Example #21
Source File: PreferencesRoute.js From NoteMaster with GNU General Public License v3.0 | 4 votes |
PreferencesRoute = ({ preferences, updatePreferences }) => {
const history = useHistory();
const fontFamilyChange = e => {
updatePreferences({
fontFamily: e.target.value,
// HACK: If the initial content is updated to match the existing autosaveContent then the user will lose all changes
// since the file was read from the disk into memory.
editorContent: preferences.autosaveContent
});
};
const fontSizeChange = e => {
updatePreferences({
fontSize: Number(e.target.value),
// HACK: If the initial content is updated to match the existing autosaveContent then the user will lose all changes
// since the file was read from the disk into memory.
editorContent: preferences.autosaveContent
});
};
const fontWeightChange = e => {
updatePreferences({
fontWeight: e.target.value,
// HACK: If the initial content is updated to match the existing autosaveContent then the user will lose all changes
// since the file was read from the disk into memory.
editorContent: preferences.autosaveContent
});
};
const lineHeightChange = e => {
updatePreferences({
lineHeight: Number(e.target.value),
// HACK: If the initial content is updated to match the existing autosaveContent then the user will lose all changes
// since the file was read from the disk into memory.
editorContent: preferences.autosaveContent
});
};
const lineNumbersChange = e => {
updatePreferences({
lineNumbers: e.target.value,
// HACK: If the initial content is updated to match the existing autosaveContent then the user will lose all changes
// since the file was read from the disk into memory.
editorContent: preferences.autosaveContent
});
};
const autoLaunchChange = e => {
updatePreferences({
autoLaunch: e.target.value === 'true',
// HACK: If the initial content is updated to match the existing autosaveContent then the user will lose all changes
// since the file was read from the disk into memory.
editorContent: preferences.autosaveContent
});
};
const nmlEnabledChange = e => {
updatePreferences({
nmlEnabled: e.target.value === 'true',
// HACK: If the initial content is updated to match the existing autosaveContent then the user will lose all changes
// since the file was read from the disk into memory.
editorContent: preferences.autosaveContent
});
};
const fontLigaturesChange = e => {
updatePreferences({
fontLigatures: e.target.value === 'true',
// HACK: If the initial content is updated to match the existing autosaveContent then the user will lose all changes
// since the file was read from the disk into memory.
editorContent: preferences.autosaveContent
});
};
const nmlBaseCurrencyChange = e => {
updatePreferences({
nmlBaseCurrency: e.target.value,
// HACK: If the initial content is updated to match the existing autosaveContent then the user will lose all changes
// since the file was read from the disk into memory.
editorContent: preferences.autosaveContent
});
};
const wrappingIndentChange = e => {
updatePreferences({
wrappingIndent: e.target.value,
// HACK: If the initial content is updated to match the existing autosaveContent then the user will lose all changes
// since the file was read from the disk into memory.
editorContent: preferences.autosaveContent
});
};
const editorThemeChange = e => {
updatePreferences({
editorTheme: e.target.value,
// HACK: If the initial content is updated to match the existing autosaveContent then the user will lose all changes
// since the file was read from the disk into memory.
editorContent: preferences.autosaveContent
});
};
const navigateToNotes = e => {
updatePreferences({
editorContent: preferences.autosaveContent
});
history.push('/');
};
const {
editorTheme,
fontFamily,
fontSize,
fontWeight,
lineNumbers,
lineHeight,
fontLigatures,
autoLaunch,
nmlEnabled,
nmlBaseCurrency,
wrappingIndent
} = preferences;
const renderNmlOptions = () => {
return (
<Box
className={
nmlEnabled ? styles.smartOptionsActive : styles.smartOptionsHidden
}
mb="2"
>
<Flex mt="3">
<Box sx={{ flex: '1 1 auto' }}>
<TooltipComponent content="Set this value to your most commonly used currency. The default is: USD.">
<Label mt="2" variant="labelTooltip">
Base Currency
</Label>
</TooltipComponent>
</Box>
<Box>
<Select
disabled={!nmlEnabled}
defaultValue={nmlBaseCurrency}
onChange={nmlBaseCurrencyChange}
>
<option value="USD">USD</option>
<option value="GBP">GBP</option>
<option value="EUR">EUR</option>
</Select>
</Box>
</Flex>
</Box>
);
};
return (
<div className={styles.container} data-tid="container">
<div className={styles.header}>
<TitlebarComponent />
</div>
<div className={styles.preferences}>
<ContainerComponent padding="0 8px 0 0">
<Button variant="linkUpper" mb="0" onClick={navigateToNotes}>
<i className="ri-arrow-left-line" /> Return to Notes
</Button>
</ContainerComponent>
<ScrollableContentComponent>
<ContainerComponent padding="0 8px 0 0">
<Heading mt="0" as="h1">
Preferences
</Heading>
<Text mt="1" mb="3" variant="muted">
Customize NoteMaster to your desire. You can request features on{' '}
<Link
href="https://github.com/LiamRiddell/NoteMaster"
target="_blank"
rel="noreferer"
>
NoteMaster GitHub
</Link>
.
</Text>
{/* Editor */}
<Box mb="4">
<Text mb="2" variant="group">
Editor
</Text>
<Flex mt="3">
<Box sx={{ flex: '1 1 auto' }}>
<TooltipComponent content="When enabled, NoteMaster Smart Mode automatically recognizes keywords, and intelligently provides results as you type. The default is: Enabled.">
<Label mt="2" variant="labelTooltip">
Smart Mode
</Label>
</TooltipComponent>
</Box>
<Box>
<Select
defaultValue={nmlEnabled ? 'true' : 'false'}
onChange={nmlEnabledChange}
>
<option value="true">Enabled</option>
<option value="false">Disabled</option>
</Select>
</Box>
</Flex>
{/* NoteMaster Language */}
{renderNmlOptions()}
{/* Line Numbers */}
<Flex mt="3">
<Box sx={{ flex: '1 1 auto' }}>
<TooltipComponent content="When enabled, line numbers will be displayed on the left side of the editor. The default is: Off.">
<Label mt="2" variant="labelTooltip">
Line Numbers
</Label>
</TooltipComponent>
</Box>
<Box>
<Select
defaultValue={lineNumbers}
onChange={lineNumbersChange}
>
<option value="off">Off</option>
<option value="on">On</option>
<option value="relative">Relative</option>
<option value="interval">Interval</option>
</Select>
</Box>
</Flex>
{/* Text Wrap Indentation */}
<Flex mt="3">
<Box sx={{ flex: '1 1 auto' }}>
<TooltipComponent content="This effects how long sentences wrap onto a new line. The default is: Same.">
<Label mt="2" variant="labelTooltip">
Text Wrap Indent
</Label>
</TooltipComponent>
</Box>
<Box>
<Select
defaultValue={wrappingIndent}
onChange={wrappingIndentChange}
>
<option value="same">Same</option>
<option value="indent">Indent</option>
<option value="deepIndent">Deep Indent</option>
<option value="none">None</option>
</Select>
</Box>
</Flex>
{/* Editor Theme */}
<Flex mt="3">
<Box sx={{ flex: '1 1 auto' }}>
<TooltipComponent content="Using the Dark theme will enable rich text highlighting, which compliments Smart Mode. Use Dark Basic, if you find the rich text highlighting distrating. The default is: Dark.">
<Label mt="2" variant="labelTooltip">
Theme
</Label>
</TooltipComponent>
</Box>
<Box>
<Select
defaultValue={editorTheme}
onChange={editorThemeChange}
>
<option value="notemaster-dark-nml-enabled">Dark</option>
<option value="notemaster-dark-nml-disabled">
Dark Basic
</option>
</Select>
</Box>
</Flex>
</Box>
{/* Typography Settings */}
<Box mb="4">
<Text mb="2" variant="group">
Typography
</Text>
{/* Font */}
<Flex mt="3">
<Box sx={{ flex: '1 1 auto' }}>
<TooltipComponent content="Changes the font within the editor. The default is: Roboto.">
<Label mt="2" variant="labelTooltip">
Font
</Label>
</TooltipComponent>
</Box>
<Box>
<Select defaultValue={fontFamily} onChange={fontFamilyChange}>
<option value="Roboto">Roboto</option>
<option value="Arial">Arial</option>
<option value="Helvetica Neue">Helvetica Neue</option>
<option value="Monospace">Monospace</option>
<option value="Ubuntu">Ubuntu</option>
<option value="Segoe UI">Segoe UI</option>
</Select>
</Box>
</Flex>
{/* Font Size */}
<Flex mt="3">
<Box sx={{ flex: '1 1 auto' }}>
<TooltipComponent content="You can adjust the font size within the editor. The default is: 16.">
<Label mt="2" variant="labelTooltip">
Font Size
</Label>
</TooltipComponent>
</Box>
<Box>
<Input
type="number"
defaultValue={fontSize}
onChange={fontSizeChange}
sx={{ width: '72px' }}
/>
</Box>
</Flex>
{/* Font Weight */}
<Flex mt="3">
<Box sx={{ flex: '1 1 auto' }}>
<TooltipComponent content="Changes the font thickness within the editor. The default is: Regular.">
<Label mt="2" variant="labelTooltip">
Font Weight
</Label>
</TooltipComponent>
</Box>
<Box>
<Select defaultValue={fontWeight} onChange={fontWeightChange}>
<option value="100">Thin</option>
<option value="200">Extra Light</option>
<option value="300">Light</option>
<option value="400">Regular</option>
<option value="500">Medium</option>
<option value="600">Semi-Bold</option>
<option value="700">Bold</option>
<option value="800">Extra Bold</option>
<option value="900">Black</option>
</Select>
</Box>
</Flex>
{/* Line Height */}
<Flex mt="3">
<Box sx={{ flex: '1 1 auto' }}>
<TooltipComponent content="Change the line height within the editor. The default is: 24.">
<Label mt="2" variant="labelTooltip">
Line Height
</Label>
</TooltipComponent>
</Box>
<Box>
<Input
type="number"
defaultValue={lineHeight}
onChange={lineHeightChange}
sx={{ width: '72px' }}
/>
</Box>
</Flex>
{/*
<Label mt="2" mb="1">
Font Ligatures
</Label>
<Select
defaultValue={fontLigatures ? 'true' : 'false'}
onChange={fontLigaturesChange}
>
<option value="true">On</option>
<option value="false">Off</option>
</Select> */}
</Box>
{/* System */}
<Box mb="4">
<Text mb="2" variant="group">
SYSTEM
</Text>
{/* Auto Launch */}
<Flex mt="3">
<Box sx={{ flex: '1 1 auto' }}>
<TooltipComponent content="When enabled, NoteMaster will be launched on startup. The default is: On.">
<Label mt="2" variant="labelTooltip">
Auto Launch
</Label>
</TooltipComponent>
</Box>
<Box>
<Select
defaultValue={autoLaunch ? 'true' : 'false'}
onChange={autoLaunchChange}
>
<option value="false">Off</option>
<option value="true">On</option>
</Select>
</Box>
</Flex>
</Box>
{/* Creation Rights */}
<Box
p={3}
color="text"
bg="#27292C"
mb="1"
sx={{ borderRadius: 3 }}
>
Thank you for downloading NoteMaster, an open-source project
created and maintained by{' '}
<Link href="https://github.com/LiamRiddell" target="_blank">
Liam Riddell
</Link>{' '}
❤️
</Box>
</ContainerComponent>
</ScrollableContentComponent>
</div>
</div>
);
}
Example #22
Source File: collapsible.js From medusa with MIT License | 4 votes |
NestedCollapsible = ({ properties, title }) => {
const [isOpen, setIsOpen] = useState(false)
return (
<Box
mt={2}
sx={{
"& .child-attrs": {
cursor: "pointer",
fontSize: "12px",
p: "6px 10px",
boxSizing: "border-box",
width: "max-content",
borderRadius: "small",
border: "1px solid",
borderColor: "faded",
},
"& .child-attrs.is-open": {
width: "100%",
borderBottom: "none",
borderBottomLeftRadius: "0",
borderBottomRightRadius: "0",
},
}}
>
<Collapsible
transitionTime={50}
triggerClassName={"child-attrs"}
triggerOpenedClassName={"child-attrs"}
triggerTagName="div"
trigger={
<Flex
sx={{
alignItems: "baseline",
fontSize: "13px",
fontWeight: "400",
}}
>
<Box
mr={1}
className={isOpen ? "rotated" : null}
sx={{
userSelect: "none",
transition: "all 0.2s ease",
transform: "rotate(45deg)",
"&.rotated": {
transform: "rotate(0deg)",
},
}}
>
×
</Box>{" "}
<Text
sx={{ fontSize: "0", fontFamily: "body", userSelect: "none" }}
>{`${isOpen ? "Hide" : "Show"} child attributes`}</Text>
</Flex>
}
onTriggerOpening={() => setIsOpen(true)}
onTriggerClosing={() => setIsOpen(false)}
>
<Box
sx={{
padding: "2",
borderRadius: "small",
borderTopLeftRadius: 0,
borderTopRightRadius: 0,
border: "hairline",
borderColor: "faded",
}}
mb="2"
>
<Heading as="h3" p={2} sx={{ fontFamily: "body", fontWeight: "500" }}>
{title}
</Heading>
{properties.map((param, i) => {
return (
<Box
p={2}
sx={{
borderTop: "hairline",
}}
key={i}
>
<Flex
sx={{
fontSize: "0",
alignItems: "baseline",
pb: "1",
fontFamily: "monospace",
}}
>
<Box mr={2} fontSize={"12px"}>
{param.property}
</Box>
<Text color={"gray"} fontSize={"10px"}>
{param.type}
</Text>
{param.required && (
<Text ml={1} fontSize={"10px"} variant="labels.required">
required
</Text>
)}
</Flex>
<Description>
<Text
sx={{
fontSize: "0",
lineHeight: "26px",
fontFamily: "body",
}}
>
<Markdown>{param.description}</Markdown>
</Text>
</Description>
</Box>
)
})}
</Box>
</Collapsible>
</Box>
)
}
Example #23
Source File: method.js From medusa with MIT License | 4 votes |
Method = ({ data, section, sectionData, pathname, api }) => {
const { parameters, requestBody, description, method, summary } = data
const jsonResponse = data.responses[0].content?.[0].json
const { updateHash, updateMetadata } = useContext(NavigationContext)
const methodRef = useRef(null)
const [containerRef, isInView] = useInView({
root: null,
rootMargin: "0px 0px -80% 0px",
threshold: 0,
})
const formattedParameters = formatMethodParams({ parameters, requestBody })
useEffect(() => {
if (isInView) {
updateHash(section, convertToKebabCase(summary), sectionData)
}
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [isInView])
const handleMetaChange = () => {
updateMetadata({
title: summary,
description: description,
})
if (methodRef.current) {
methodRef.current.scrollIntoView({
behavior: "smooth",
})
}
}
const getExampleValues = (type, defaultExample) => {
switch (type) {
case "integer":
return 1000
case "boolean":
return false
case "object":
return {}
default:
return defaultExample
}
}
// extract required properties or a non-required property from a json object
// based on the extraction method "getPropertyFromObject"
const getPropertiesFromObject = (
requiredProperties,
properties,
obj,
res,
getPropertyFromObject
) => {
for (const element of requiredProperties) {
try {
res[element.property] = getPropertyFromObject(obj, element.property)
} catch (err) {}
}
// if (Object.keys(res) === requiredProperties.map((p) => p.property)) {
// return res
// }
for (const element of properties) {
try {
res[element.property] = getPropertyFromObject(obj, element.property)
break
} catch (err) {}
}
return res
}
const getCurlJson = (properties, prefix, bodyParameters) => {
if (!properties[0] || !jsonResponse) {
return
}
const jsonObject = JSON.parse(jsonResponse)
const pathParts = pathname.split("/")
const requiredProperties = bodyParameters.filter((p) => p.required)
let res = {}
// if the endpoint is for a relation i.e. /orders/:id/shipment drill down into the properties of the json object
if (pathParts.length > 3) {
const propertyIndex = pathParts[2].match(/{[A-Za-z_]+}/) ? 3 : 2
try {
const obj =
jsonObject[pathParts[propertyIndex].replace("-", "_")] ||
jsonObject[Object.keys(jsonObject)[0]][
pathParts[propertyIndex].replace("-", "_")
]
res = getPropertiesFromObject(
requiredProperties,
properties,
obj,
res,
(obj, property) =>
Array.isArray(obj)
? obj.find((o) => o[property])[property]
: obj[property]
)
} catch (err) {}
}
// if nothing was found drilling down look at the top level properties
if (JSON.stringify(res) === "{}") {
res = getPropertiesFromObject(
requiredProperties,
properties,
jsonObject,
res,
(jsonObject, property) =>
jsonObject[property] ||
jsonObject[Object.keys(jsonObject)[0]][property]
)
}
// Last resort, set the first property to an example
if (JSON.stringify(res) === "{}") {
res[properties[0].property] = getExampleValues(properties[0].type, `${prefix}_${properties[0].property}`)
}
// Add values to 'undefined' properties before returning due to JSON.stringify removing 'undefined' but not 'null'
return requiredProperties.reduce((prev, curr) => {
if(prev[curr.property] === undefined){
prev[curr.property] = getExampleValues(curr.type, `${prefix}_${curr.property}`)
}
return prev
}, res)
}
const getCurlCommand = (requestBody) => {
const body = JSON.stringify(
getCurlJson(
requestBody.properties,
`example_${section}`,
formattedParameters.body
)
)
return `curl -X ${data.method.toUpperCase()} https://medusa-url.com/${api}${formatRoute(
pathname
)} \\
--header "Authorization: Bearer <ACCESS TOKEN>" ${
data.method.toUpperCase() === "POST" && requestBody.properties?.length > 0
? `\\
--header "content-type: application/json" \\
--data '${body}'`
: ""
}`
}
return (
<Flex
py={"5vw"}
sx={{
borderTop: "hairline",
flexDirection: "column",
}}
id={convertToKebabCase(summary)}
ref={methodRef}
>
<Flex>
<Heading
as="h2"
mb={4}
sx={{
fontSize: "4",
fontWeight: "500",
cursor: "pointer",
}}
ref={containerRef}
onClick={() => handleMetaChange()}
>
{summary}
</Heading>
</Flex>
<ResponsiveContainer>
<Flex
className="info"
sx={{
flexDirection: "column",
pr: "5",
"@media screen and (max-width: 848px)": {
pr: "0",
},
}}
>
<Route path={pathname} method={method} />
<Description>
<Text
sx={{
lineHeight: "26px",
}}
mt={3}
>
<Markdown>{description}</Markdown>
</Text>
</Description>
<Box mt={2}>
<Parameters params={formattedParameters} type={"Parameters"} />
</Box>
</Flex>
<Box className="code">
<Box>
<JsonContainer
json={getCurlCommand(requestBody)}
header={"cURL Example"}
language={"shell"}
allowCopy={true}
method={convertToKebabCase(summary)}
/>
</Box>
<Box>
<JsonContainer
json={jsonResponse}
header={"RESPONSE"}
method={convertToKebabCase(summary)}
/>
</Box>
</Box>
</ResponsiveContainer>
</Flex>
)
}
Example #24
Source File: section.js From medusa with MIT License | 4 votes |
Section = ({ data, api }) => {
const section = data;
const [isExpanded, setIsExpanded] = useState(false)
const { openSections, updateSection, updateMetadata, updateHash } = useContext(
NavigationContext
)
const endpoints = section.paths
.map((p) => {
let path = p.name
let ep = []
p.methods.forEach((m) => {
ep.push({ method: m.method, endpoint: path })
})
return ep
})
.flat()
const sectionRef = useRef(null)
const scrollIntoView = () => {
if (sectionRef.current) {
sectionRef.current.scrollIntoView({
behavior: "smooth",
})
}
}
const handleExpand = () => {
updateMetadata({
title: section.section_name,
description: section.schema?.description,
})
setIsExpanded(true)
scrollIntoView()
}
useEffect(() => {
const shouldOpen = openSections.includes(
convertToKebabCase(section.section_name)
)
if (shouldOpen) {
setIsExpanded(true)
}
}, [section.section_name, openSections, openSections.length])
useEffect(() => {
if (section.section_name) {
updateHash(convertToKebabCase(section.section_name), section.paths && section.paths.length ? (section.paths[0].methods[0].path || '') : '', section)
}
}, [section.section_name])
const [containerRef, isInView] = useInView({
root: null,
rootMargin: "0px 0px -80% 0px",
threshold: 1.0,
})
useEffect(() => {
const handleInView = () => {
if (isInView) {
updateSection({id: convertToKebabCase(section.section_name), section})
}
}
handleInView()
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [isInView])
return (
<section ref={sectionRef} id={convertToKebabCase(section.section_name)}>
<Box
sx={{
borderBottom: "hairline",
padding: "5vw",
backgroundColor: isExpanded ? "transparent" : "fadedContrast",
}}
>
<Flex>
<Heading
as="h1"
sx={{
fontWeight: "500",
fontSize: "22",
mb: "3",
cursor: "pointer",
}}
ref={containerRef}
className={`header-${convertToKebabCase(section.section_name)}`}
onClick={handleExpand}
>
{section.section_name}
</Heading>
</Flex>
<Flex
sx={{
flexDirection: "column",
}}
>
<ResponsiveContainer>
<Flex
sx={{
flexDirection: "column",
lineHeight: "26px",
pr: "5",
"@media screen and (max-width: 848px)": {
pr: "0",
},
}}
className="info"
>
<Description>
<Text mb={4}>
<Markdown>{section.schema?.description}</Markdown>
</Text>
</Description>
{isExpanded && section.schema ? (
<Parameters params={section.schema} type={"attr"} />
) : null}
</Flex>
<Flex
className="code"
sx={{
flexDirection: "column",
}}
>
<EndpointContainer endpoints={endpoints} />
{isExpanded ? (
<JsonContainer
json={section.schema?.object}
header={`${section.section_name.toUpperCase()} OBJECT`}
/>
) : null}
</Flex>
</ResponsiveContainer>
{!isExpanded && (
<Flex
sx={{
justifyContent: "center",
alignItems: "center",
width: "100%",
}}
mt={4}
>
<Button
onClick={handleExpand}
sx={{
display: "flex",
alignItems: "center",
borderRadius: "24px",
bg: "light",
fontWeight: "500",
}}
>
SHOW <ChevronDown fill={"dark"} styles={{ mr: "-10px" }} />
</Button>
</Flex>
)}
<Box
id="method-container"
mt={4}
sx={{
display: isExpanded ? "block" : "none",
}}
>
{section.paths.map((p, i) => {
return (
<Flex
key={i}
sx={{
flexDirection: "column",
}}
>
{p.methods.map((m, i) => {
return (
<Method
api={api}
key={i}
data={m}
section={convertToKebabCase(section.section_name)}
sectionData={section}
pathname={p.name}
/>
)
})}
</Flex>
)
})}
</Box>
</Flex>
</Box>
</section>
)
}