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

External Named Layout - from package #4518

Closed
lukaszpolowczyk opened this issue Apr 5, 2022 · 5 comments
Closed

External Named Layout - from package #4518

lukaszpolowczyk opened this issue Apr 5, 2022 · 5 comments

Comments

@lukaszpolowczyk
Copy link
Contributor

lukaszpolowczyk commented Apr 5, 2022

Describe the problem

The new __layout@name.svelte syntax looks cool.

I have a thought to expand or refute:
Support for a layout, loaded externally, from a package.

Describe the proposed solution

You install the npm i packagename package that contains the layout file.
You use this layout via the package name, for example: __layout@packagename.svelte.
That's it. :)

You could also add a built-in, external layout in SvelteKit, e.g. to reset __layout-reset.svelte:
Then use for reset __layout@reset.svelte, so you won't need to create an empty __layout-root.svelte, containing the <slot/> itself (as recommended in the SvelteKit documentation).

Alternatives considered

  1. adder containing the layout.

  2. wrapper in __layout.svelte with imported component:

<script>.
Import packagename from "packagename";
</script>
<Packagename><slot/></Packagename>

...Such a thing doesn't work, because in Packagename you can't, for example, provide a load function.

Importance

would make my life easier

Additional Information

Such a thing would be part of a broader thinking about external modules, as related - #3723

@Rich-Harris
Copy link
Member

Beyond resets (which are better done without an external package, which would only make things harder to follow) is this a real use case or a hypothetical one?

@lukaszpolowczyk
Copy link
Contributor Author

@Rich-Harris Just using an external layout - more hypothetical.

But in my head I have kind of a complete initial login support that would also require external delivery of hooks code.
(For that you would also need - #3723, maybe also with externally loaded routes?)

Such a thing, that you install the package, turn it on and you have the whole login system (under the selected database, etc.).
This could be done with adders, but adders would be less flexible.

Along with that, using an External layout would add a login bar, maybe provide some pre-processed, typical data in stuff or something similar.

@Rich-Harris
Copy link
Member

This doesn't sound like something we'd want to support. It doesn't add any new expressive power, it just adds a very small amount of convenience when solving a very specific problem

@lukaszpolowczyk
Copy link
Contributor Author

@Rich-Harris Well tough, at least I got the idea out of my head.
I don't have any better arguments to convince you of this idea.

@dummdidumm
Copy link
Member

Closing as it sounds we agree that this is too specific to be worth the additional maintenance, and the "workaround" is to just import the package's component, together with a library-provided load function and do something like this:

<script>
  import Layout, { libraryLoad } from 'package';
  export const load = libraryLoad;
</script>

<Layout>
  <slot />
<Layout>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants