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

Add support for importing partial templates #2

Closed
Olian04 opened this issue Jul 2, 2024 · 0 comments · Fixed by #3
Closed

Add support for importing partial templates #2

Olian04 opened this issue Jul 2, 2024 · 0 comments · Fixed by #3
Assignees
Labels
enhancement New feature or request

Comments

@Olian04
Copy link
Owner

Olian04 commented Jul 2, 2024

Syntax

Both mustache and handlebars uses {{> }} for partials. So it would make sense for handles to use the same.

{{>someName some.property.path}}

Suggested API

import gleam/io
import handles
import handles/ctx

pub fn main() {
  let assert Ok(index_template) = handles.prepare("
    {{#each users}}
      {{>hello .}}
    {{/each}}
  ")
  let assert Ok(hello_template) = handles.prepare("Hello {{name}}")
  let assert Ok(string) =
    handles.run(index_template, ctx.Dict([
      ctx.Prop("users", ctx.List([
        ctx.Dict([ ctx.Prop("name", ctx.Str("Knatte")) ]),
        ctx.Dict([ ctx.Prop("name", ctx.Str("Fnatte")) ]),
        ctx.Dict([ ctx.Prop("name", ctx.Str("Tjatte")) ]),
      ])),
    ]), [
      #("hello", hello_template)
    ])

  io.debug(string)
}
@Olian04 Olian04 changed the title Add support for Add support for importing partial templates Jul 2, 2024
@Olian04 Olian04 added the enhancement New feature or request label Jul 2, 2024
@Olian04 Olian04 self-assigned this Jul 2, 2024
@Olian04 Olian04 linked a pull request Jul 2, 2024 that will close this issue
@Olian04 Olian04 closed this as completed in #3 Jul 2, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant