Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Named layouts #4388

Merged
merged 54 commits into from
Apr 4, 2022
Merged

Named layouts #4388

merged 54 commits into from
Apr 4, 2022

Conversation

Rich-Harris
Copy link
Member

@Rich-Harris Rich-Harris commented Mar 18, 2022

Differences from #4275:

  • it uses a @ character instead of #, because URL encoding
  • no parent layouts on directories, only on pages and layouts (same expressive power)
  • layouts can inherit from siblings (including sibling default, if explicit with [email protected])
  • no [email protected] or page@~.svelte, they are now unnecessary

Docs here. I'm not completely happy with them but I think the interactive version will be much clearer.

Please don't delete this checklist! Before submitting the PR, please make sure you do the following:

Tests

  • Run the tests with pnpm test and lint the project with pnpm lint and pnpm check

Changesets

  • If your PR makes a change that should be noted in one or more packages' changelogs, generate a changeset by running pnpx changeset and following the prompts. All changesets should be patch until SvelteKit 1.0

@changeset-bot
Copy link

changeset-bot bot commented Mar 18, 2022

🦋 Changeset detected

Latest commit: 001a235

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 1 package
Name Type
@sveltejs/kit Patch

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

* add missing layout error

* simplify layout nodes compression

Co-authored-by: mrkishi <[email protected]>
@ondrejjcizek
Copy link

ondrejjcizek commented Apr 6, 2022

I still don't get it. When I have nested folder and there I created layout-foo.svelte
Now I after update 307 I can use in the same folder => [email protected]
But I have there layout from foo and default layout also. How does it work for index.svelte in nested folder then?
When I want to use as a reset layout as before?

camargo added a commit to NASA-AMMOS/aerie-ui that referenced this pull request Apr 11, 2022
- Remove obsolete layout reset via
sveltejs/kit#4388
- Update CssGrid component to accept a class attribute
@smithliam

This comment was marked as off-topic.

@ObieMunoz
Copy link
Contributor

ObieMunoz commented Jun 3, 2022

I still don't get it. When I have nested folder and there I created layout-foo.svelte Now I after update 307 I can use in the same folder => [email protected] But I have there layout from foo and default layout also. How does it work for index.svelte in nested folder then? When I want to use as a reset layout as before?

I'm currently having this issue. Default layout still appears and wraps around the named layout. Is there a solution you have found?

[Edit]: I placed the named layout in /routes instead of having it in the nested folder and it works as intended here.

@danfoust
Copy link

danfoust commented Jun 3, 2022

]: I placed the named layout in /routes instead of having it in the nested folder and it works as intended

That doesn't seem to be the case for me. I'm trying to implement an auth guard behavior and been racking my brain on it a bit.

I'm trying to use the default layout as an auth guard to redirect unauthenticated users for all pages, and then using a named __layout-public.svelte to opt-out of authentication for pages like login/sign-up. I have console logs inside the __layout files and it seems on my login/sign-up pages, both the named layout and default layout are both firing.

My file structure is like this:

/routes
  __layout.svelte
  __layout-public.svelte
  /login
     [email protected]

@ObieMunoz
Copy link
Contributor

ObieMunoz commented Jun 3, 2022

]: I placed the named layout in /routes instead of having it in the nested folder and it works as intended

Interesting, that doesn't seem to be the case for me. I'm trying to implement an auth guard behavior and been racking my brain on it a bit.

I'm trying to use the default layout as an auth guard to redirect unauthenticated users for all pages, and then using a named [email protected] to opt-out of authentication for pages like login/sign-up. I have console logs inside the __layout files and it seems on my login/sign-up pages, both the named layout and default layout are both firing.

My file structure is like this:

/routes
  __layout.svelte
  __layout-public.svelte
  /login
     [email protected]

That's pretty much what my new structure looks like. I had originally tried doing:

/routes
  __layout.svelte
  /page
      __layout-test.svelte
      [slug]@test.svelte

but it was wrapping the default __layout.svelte (contains header and footer) around the "test" layout.

I switched to this structure:

/routes
  __layout.svelte
  __layout-test.svelte
  /page
      [slug]@test.svelte

and it works the way I thought it should, only rendering the test layout.

@danfoust
Copy link

danfoust commented Jun 4, 2022

@ObieMunoz Interesting, that's what I had, and it wasn't working. The named layout was in the same directory as the main layout. I scrapped my project and starting over from scratch I can't reproduce, and it seems to be working as expected.

@ondrejjcizek
Copy link

How can I simulate the same __layout.reset.svelte functionality with this new feature that mostly feels like a downgrade?😐
It seems to be better way how to improve old classic __layout.reset.svelte 😁

JosephVolosin pushed a commit to NASA-AMMOS/aerie-ui that referenced this pull request Aug 20, 2024
- Remove obsolete layout reset via
sveltejs/kit#4388
- Update CssGrid component to accept a class attribute
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
9 participants