-
-
Notifications
You must be signed in to change notification settings - Fork 2k
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
Comments
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? |
@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. Such a thing, that you install the package, turn it on and you have the whole login system (under the selected database, etc.). Along with that, using an External layout would add a login bar, maybe provide some pre-processed, typical data in |
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 |
@Rich-Harris Well tough, at least I got the idea out of my head. |
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> |
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
adder containing the layout.
wrapper in
__layout.svelte
with imported component:...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
The text was updated successfully, but these errors were encountered: