/** ******************************************************************************************************************* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. * ******************************************************************************************************************** */ import React, { ReactNode, useCallback } from 'react'; import { makeStyles } from '@material-ui/core/styles'; import Box from '../../src/layouts/Box'; import NorthStarThemeProvider from '../../src/components/NorthStarThemeProvider'; import AppLayout from '../../src/layouts/AppLayout'; import Header from '../../src/components/Header'; import Landing from './Landing'; import ButtonDropdown from '../../src/components/ButtonDropdown'; import SideNavigationTemplate from '../../src/components/SideNavigation/components/SideNavigationTemplate'; const useStyles = makeStyles((theme) => ({ container: { padding: theme.spacing(4), paddingBottom: 0, }, })); export interface StyleGuideRendererProps { title: string; toc?: ReactNode; } const StyleGuideRenderer: React.FC = ({ title, children, toc }) => { const classes = useStyles(); const handleMenuClick = useCallback((url: string) => { window.open(url, '_blank'); return false; }, []); const feedBack = ( handleMenuClick('https://github.com/aws/aws-northstar/issues'), }, { text: 'Issues', onClick: () => handleMenuClick('https://github.com/aws/aws-northstar/issues'), }, { text: 'Source code', onClick: () => handleMenuClick('https://github.com/aws/aws-northstar'), }, { text: 'Getting started', onClick: () => handleMenuClick('/#/Getting%20Started'), }, { text: 'Contribution', onClick: () => handleMenuClick('/#/Contribution%20Guide'), }, ]} /> ); const header =
; const sideNavigation = ( {toc} ); return ( {window.location.hash === '' ? : {children}} ); }; export default StyleGuideRenderer;