Giter Club home page Giter Club logo

rt-nested-layouts's People

Contributors

dependabot[bot] avatar kheruc avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

rt-nested-layouts's Issues

Need Help!

@kheruc what if i want to wrap my component in router or something like that

for example in docs page:

import { withRouter } from "next/router";
import DocsLayout from '../../components/layouts/docs';
const DocsPage = () => ();

DocsPage.Layout = DocsLayout;

export default withRouter(DocsPage);


or i restricted some pages with ProtectRoute wrapper like this:

.../ProtectRoute.jsx
function ProtectRoute(Component) {
return () => {

const { authenticated, loading } = useAuth();
const router = useRouter();

useEffect(() => {
    if (!authenticated && !loading) router.push('/user/login')
}, [loading, authenticated]);

return (!loading && authenticated && <Component {...arguments} />)
}

}


in this case how to access page layout from component object in _app.js? Component.Layout is going to be undefined
const Layouter = Component.Layout || Layout;

and sorry for my english

Cool project :)

Hi, was looking around for exactly this and I'm surprised that there's no information about this on the web.

I was wondering if you've faced any problems using this approach for nested routes and re sharing of Layout? :)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.