From 134cca28485d44c22be2bbfac0f986a403e34d8c Mon Sep 17 00:00:00 2001 From: "patrick.lafrance" Date: Tue, 3 Dec 2019 16:59:27 -0500 Subject: [PATCH] In page linking now updates url with the hash --- addons/docs/src/blocks/mdx.tsx | 53 +++++++++++++++++++++------------- 1 file changed, 33 insertions(+), 20 deletions(-) diff --git a/addons/docs/src/blocks/mdx.tsx b/addons/docs/src/blocks/mdx.tsx index 0f682f1042f..78a60960506 100644 --- a/addons/docs/src/blocks/mdx.tsx +++ b/addons/docs/src/blocks/mdx.tsx @@ -43,21 +43,31 @@ export const CodeOrSourceMdx: FC = ({ className, children, ); }; -interface AnchorInPageProps { - href: string; +function generateHrefWithHash(hash: string): string { + const url = new URL(window.parent.location); + const href = `${url.origin}/${url.search}#${hash}`; + + return href; } // @ts-ignore const A = components.a; -const AnchorInPage: FC = ({ href, children }) => ( +interface AnchorInPageProps { + hash: string; +} + +const AnchorInPage: FC = ({ hash, children }) => ( { event.preventDefault(); - const element = document.getElementById(href.substring(1)); + const hashValue = hash.substring(1); + const element = document.getElementById(hashValue); + if (element) { + window.parent.history.replaceState(null, '', generateHrefWithHash(hashValue)); scrollToElement(element); } }} @@ -77,7 +87,7 @@ export const AnchorMdx: FC = props => { if (!isNil(href)) { // Enable scrolling for in-page anchors. if (href.startsWith('#')) { - return {children}; + return {children}; } // Links to other pages of SB should use the base URL of the top level iframe instead of the base URL of the preview iframe. @@ -99,7 +109,7 @@ export const AnchorMdx: FC = props => { const SUPPORTED_MDX_HEADERS = ['h1', 'h2', 'h3', 'h4', 'h5', 'h6']; -const OctolinkHeaders = SUPPORTED_MDX_HEADERS.reduce( +const OcticonHeaders = SUPPORTED_MDX_HEADERS.reduce( (acc, headerType) => ({ ...acc, // @ts-ignore @@ -115,37 +125,39 @@ const OctolinkHeaders = SUPPORTED_MDX_HEADERS.reduce( {} ); -const OcticonLink = styled.a(() => ({ +const OcticonAnchor = styled.a(() => ({ float: 'left', paddingRight: '4px', marginLeft: '-20px', })); -interface HeaderWithOcticonLinkProps { +interface HeaderWithOcticonAnchorProps { as: string; id: string; children: any; } -const HeaderWithOcticonLink: FC = ({ as, id, children, ...rest }) => { +const HeaderWithOcticonAnchor: FC = ({ + as, + id, + children, + ...rest +}) => { // @ts-ignore - const OctolinkHeader = OctolinkHeaders[as]; - - const url = new URL(window.parent.location); - const href = `${url.origin}/${url.search}#${id}`; + const OcticonHeader = OcticonHeaders[as]; return ( - - + {children} - + ); }; @@ -157,11 +169,12 @@ interface HeaderMdxProps { const HeaderMdx: FC = props => { const { as, id, children, ...rest } = props; + // An id should have been added on every header by the "remark-slug" plugin. if (!isNil(id)) { return ( - + {children} - + ); }