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

chore: alterative functional templating syntax #15599

Conversation

paoloricciuti
Copy link
Member

@paoloricciuti paoloricciuti commented Mar 24, 2025

Note, this PR is against #15538

You can use this playground link if you want to play around with the output.

It's implementing a version of the comment from @Rich-Harris #15538 (comment) that moves the logic to invoke the function to the runtime instead of build time. Basically instead of actually creating the body of an arrow function this create a structure that template_fn can convert to a series of functional calls. Specifically the structure looks like this

type TemplateStructure = {
    /** the element name */
    e: string, 
    /** if defined the custom element that the element extends */
    is?: string,
    /** all the attributes */
    p: Record<string, string>,
    /** all the children */
    c: Array<TemplateStructure>,
} | null | string | [string];

the function accepts an array of TemplateStructure and follows the following convention:

  • If it's undefined or an array it's a comment (if it's an array with a string inside it's the data of <!--data--> otherwise it's an empty comment...this allow us to save bytes because 99% of the times we can actually just send undefined which means an array with an empty spot eg. `[,,"there are two comments before me"];
  • if it's a string then it's a text node
  • if it's an object we create the actual element, append all the attributes and append all the children

I've opened another PR for a couple of reason:

  1. i was not able to find a "shorter" data structure that could represent everything but i'm open to ideas
  2. we have the eternal debate between data sent over the wire (in the original pr) vs CPU cycles (in this PR)...we just need to choose what we want.

Before submitting the PR, please make sure you do the following

  • It's really useful if your PR references an issue where it is discussed ahead of time. In many cases, features are absent for a reason. For large changes, please create an RFC: https://github.com/sveltejs/rfcs
  • Prefix your PR title with feat:, fix:, chore:, or docs:.
  • This message body should clearly illustrate what problems it solves.x

Tests and linting

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

Copy link

changeset-bot bot commented Mar 24, 2025

⚠️ No Changeset found

Latest commit: b79fcd1

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

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

Copy link
Contributor

Playground

pnpm add https://pkg.pr.new/svelte@15599

@paoloricciuti
Copy link
Member Author

I'm gonna merge this since we definitely will go either with this or something similar

@paoloricciuti paoloricciuti merged commit be39867 into templateless-template-generation Apr 1, 2025
10 checks passed
@paoloricciuti paoloricciuti deleted the functional-template-alternative-syntax branch April 1, 2025 21:27
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

Successfully merging this pull request may close these issues.

1 participant