pheasant_temp 0.1.0-tested copy "pheasant_temp: ^0.1.0-tested" to clipboard
pheasant_temp: ^0.1.0-tested copied to clipboard

The Pheasant Framework Templating Engine to Create Renderable Dart Code for Pheasant Code.

#

Pub Version Pub Publisher GitHub Actions Workflow Status

Welcome to the Pheasant Templating engine package.

This package is used to render content from .phs files into dart template files to be used during build time.

This resource is not intended for use by the end user or for general use, but mainly for the background/behind-the-scenes working of the Pheasant Framework. It can be used for low-level handling of pheasant file data.

This package is constantly under development, and may not be perfect. If you have any issues with this package, or any packages that depend on it because of this package, please feel free to raise an issue, and we will work on it. Ensure to follow the guidelines, though.

If you have any contributions to make, feel free, just follow the contribution guidelines, and make your contributions as guided. All contributions concerning this package are welcome and are reviewed in order to constantly give performant features.

Features #

For basic usage of this package, there really isn't much to it.

There are only two basic functions. One of them is the rendering function, renderFunc, which takes in two required and one optional parameter: script, which represents the script portion of a '.phs' file, template which represents the template part of a '.phs' file, and the optional buildExtension parameter, which must represent the extension of built pheasant files (when building them to dart files) when using this package as a part of the much larger Pheasant Framework - by default, it is set to '.phs.dart'.

The function returns the desired Dart Code Composition for the built pheasant file, including all necessary imports and the Component Class. In the later future, the code will be optimized, and there may be alternative ways to achieve this effect, but would be presented differently. The Dart Code Composition is formatted and returned as a String.

The second function, renderMain, is used to render the main pheasant dart file - main.phs.dart. There are no required parameters, although there are some optional parameters that can customize the rendering process

Getting started #

In order to install this package, you can use the dart pub command as you would with any other pheasant package.

dart pub add dev:pheasant_temp # Dev Dependency

dart pub add pheasant_temp # Dependency

You can also clone this git repository and work with it from there.

Afterwards, you can make use of the features in the package by adding the necessary import

import 'package:pheasant_temp/pheasant_temp.dart';

Usage #

Here is an example usage of the renderFunc function.

import 'package:pheasant_temp/pheasant_temp.dart';


void main() {
  print(
    renderFunc(script: """
String myData = "Hello World";
""", template: """
<div>
  Welcome to Pheasant
  <p>{{myData}}</p>
</div>
""")
  );
}

Contributing #

All contributions are welcome, and we continuously review them to make necessary and important changes to our framework.

Please read the contribution file for more information on how you can make a contribution.

License #

This package is licensed under the same license as the Pheasant Framework. For more info check it out

Additional information #

For more information on how this package is used in the Pheasant Framework, please check out the full framework on Github or on Dart Pub.

For more information on this particular package, including it's api reference, you can check it out on dart pub here.

1
likes
140
pub points
29%
popularity

Publisher

verified publishertech.nugegroup.com

The Pheasant Framework Templating Engine to Create Renderable Dart Code for Pheasant Code.

Repository (GitHub)
View/report issues
Contributing

Topics

#pheasant #web

Documentation

API reference

License

MIT (LICENSE)

Dependencies

analyzer, code_builder, dart_style, html, markdown, pheasant_assets, pheasant_meta

More

Packages that depend on pheasant_temp