mirror of https://github.com/lukechilds/docs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.6 KiB
46 lines
1.6 KiB
import React from 'react';
|
|
import { Box, BoxProps, color, Flex, space, Stack, themeColor } from '@blockstack/ui';
|
|
import { MDXComponents, Link } from '@components/mdx';
|
|
import { SadIcon, NeutralIcon, HappyIcon } from '@components/icons/feedback';
|
|
import { useHover } from 'use-events';
|
|
import { border } from '@common/utils';
|
|
import { useRouter } from 'next/router';
|
|
|
|
const Icon: React.FC<BoxProps & { icon: React.FC<any> }> = ({ icon: IconComponent, ...props }) => {
|
|
const [isHovered, bind] = useHover();
|
|
return (
|
|
<Box _hover={{ color: color('accent'), cursor: 'pointer' }} size="42px" {...props} {...bind}>
|
|
<IconComponent bg={isHovered ? themeColor('blue.200') : themeColor('ink.200')} />
|
|
</Box>
|
|
);
|
|
};
|
|
|
|
export const FeedbackSection: React.FC<BoxProps> = props => {
|
|
const { pathname } = useRouter();
|
|
return (
|
|
<Flex
|
|
flexDirection={['column', 'column', 'row']}
|
|
justifyContent="space-between"
|
|
borderTop={border()}
|
|
mt={space('extra-loose')}
|
|
>
|
|
<Box>
|
|
<MDXComponents.h3>Was this page helpful?</MDXComponents.h3>
|
|
<Stack isInline spacing={space('base-loose')} mt={space('base-loose')}>
|
|
<Icon icon={SadIcon} />
|
|
<Icon icon={NeutralIcon} />
|
|
<Icon icon={HappyIcon} />
|
|
</Stack>
|
|
</Box>
|
|
<Box mt={space(['extra-loose', 'extra-loose', 'base-loose'])}>
|
|
<Link
|
|
href={`https://github.com/blockstack/docs.blockstack/tree/feat/next/src/pages${pathname}.md`}
|
|
target="_blank"
|
|
rel="nofollow noopener noreferrer"
|
|
>
|
|
Edit this page on GitHub
|
|
</Link>
|
|
</Box>
|
|
</Flex>
|
|
);
|
|
};
|
|
|