-
Notifications
You must be signed in to change notification settings - Fork 16
[mustache_template] Adopt code-excerpts for README #40
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
Open
danielleon-cmd
wants to merge
2
commits into
flutter:main
Choose a base branch
from
danielleon-cmd:fpoctsmp-8-mustache-template-readme-excerpts
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
119 changes: 119 additions & 0 deletions
119
third_party/packages/mustache_template/example/lib/main.dart
|
danielleon-cmd marked this conversation as resolved.
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,119 @@ | ||
| // ignore_for_file: avoid_print | ||
|
|
||
| import 'package:mustache_template/mustache_template.dart'; | ||
|
|
||
| void _basicUsage() { | ||
| // #docregion BasicUsage | ||
| const source = ''' | ||
| {{# names }} | ||
| <div>{{ lastname }}, {{ firstname }}</div> | ||
| {{/ names }} | ||
| {{^ names }} | ||
| <div>No names.</div> | ||
| {{/ names }} | ||
| {{! I am a comment. }} | ||
| '''; | ||
|
|
||
| final template = Template(source, name: 'template-filename.html'); | ||
|
|
||
| final String output = template.renderString(<String, Object>{ | ||
| 'names': <Map<String, String>>[ | ||
| <String, String>{'firstname': 'Greg', 'lastname': 'Lowe'}, | ||
| <String, String>{'firstname': 'Bob', 'lastname': 'Johnson'}, | ||
| ], | ||
| }); | ||
| // #enddocregion BasicUsage | ||
| print(output); | ||
| } | ||
|
|
||
| void _nestedPaths() { | ||
| // #docregion NestedPaths | ||
| final template = Template('{{ author.name }}'); | ||
| final String output = template.renderString(<String, Object>{ | ||
| 'author': <String, String>{'name': 'Greg Lowe'}, | ||
| }); | ||
| // #enddocregion NestedPaths | ||
| print(output); | ||
| } | ||
|
|
||
| void _partials() { | ||
| // #docregion Partials | ||
| final partial = Template('{{ foo }}', name: 'partial'); | ||
|
|
||
| Template? resolver(String name) { | ||
| if (name == 'partial-name') { | ||
| // Name of partial tag. | ||
| return partial; | ||
| } | ||
| return null; | ||
| } | ||
|
|
||
| final template = Template('{{> partial-name }}', partialResolver: resolver); | ||
|
|
||
| final String output = template.renderString(<String, String>{'foo': 'bar'}); // bar | ||
| // #enddocregion Partials | ||
| print(output); | ||
| } | ||
|
|
||
| void _lambdaReturningValue() { | ||
| // #docregion LambdaReturningValue | ||
| final template = Template('{{# foo }}inner{{/ foo }}'); | ||
| Object lambda(Object? _) => 'bar'; | ||
| final String output = template.renderString(<String, Object>{'foo': lambda}); // bar | ||
| // #enddocregion LambdaReturningValue | ||
| print(output); | ||
| } | ||
|
|
||
| void _lambdaHidingSection() { | ||
| // #docregion LambdaHidingSection | ||
| final template = Template('{{# foo }}hidden{{/ foo }}'); | ||
| Object lambda(Object? _) => 'shown'; | ||
| final String output = template.renderString(<String, Object>{'foo': lambda}); // shown | ||
| // #enddocregion LambdaHidingSection | ||
| print(output); | ||
| } | ||
|
|
||
| void _lambdaWithContext() { | ||
| // #docregion LambdaWithContext | ||
| final template = Template('{{# foo }}oi{{/ foo }}'); | ||
| Object lambda(LambdaContext ctx) => '<b>${ctx.renderString().toUpperCase()}</b>'; | ||
| final String output = template.renderString(<String, Object>{'foo': lambda}); // <b>OI</b> | ||
| // #enddocregion LambdaWithContext | ||
| print(output); | ||
| } | ||
|
|
||
| void _lambdaWithContextAndVariables() { | ||
| // #docregion LambdaWithContextAndVariables | ||
| final template = Template('{{# foo }}{{bar}}{{/ foo }}'); | ||
| Object lambda(LambdaContext ctx) => '<b>${ctx.renderString().toUpperCase()}</b>'; | ||
| final String output = template.renderString(<String, Object>{ | ||
| 'foo': lambda, | ||
| 'bar': 'pub', | ||
| }); // <b>PUB</b> | ||
| // #enddocregion LambdaWithContextAndVariables | ||
| print(output); | ||
| } | ||
|
|
||
| void _lambdaReparsingSource() { | ||
| // #docregion LambdaReparsingSource | ||
| final template = Template('{{# foo }}{{bar}}{{/ foo }}'); | ||
| Object lambda(LambdaContext ctx) => ctx.renderSource('${ctx.source} {{cmd}}'); | ||
| final String output = template.renderString(<String, Object>{ | ||
| 'foo': lambda, | ||
| 'bar': 'pub', | ||
| 'cmd': 'build', | ||
| }); // pub build | ||
| // #enddocregion LambdaReparsingSource | ||
| print(output); | ||
| } | ||
|
|
||
| void main() { | ||
| _basicUsage(); | ||
| _nestedPaths(); | ||
| _partials(); | ||
| _lambdaReturningValue(); | ||
| _lambdaHidingSection(); | ||
| _lambdaWithContext(); | ||
| _lambdaWithContextAndVariables(); | ||
| _lambdaReparsingSource(); | ||
| } |
10 changes: 10 additions & 0 deletions
10
third_party/packages/mustache_template/example/pubspec.yaml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| name: mustache_template_example | ||
| description: Example code for the mustache_template package. | ||
| publish_to: none | ||
|
|
||
| environment: | ||
| sdk: ^3.10.0 | ||
|
|
||
| dependencies: | ||
| mustache_template: | ||
| path: ../ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.