platform/angel_jael
2018-06-27 19:57:53 -04:00
..
example If node now only renders if true 2018-06-27 19:57:53 -04:00
lib If node now only renders if true 2018-06-27 19:57:53 -04:00
test Working, just need switch 2017-09-30 23:14:44 -04:00
.gitignore Use Renderer.errorDocument 2018-04-03 11:34:52 -04:00
analysis_options.yaml core nearly done 2017-09-29 18:39:37 -04:00
CHANGELOG.md Bump Angel version 2018-06-26 11:31:34 -04:00
LICENSE Pre-processor needs work 2017-09-30 01:27:31 -04:00
pubspec.yaml Bump Angel version 2018-06-26 11:31:34 -04:00
README.md angel patch 2017-10-02 12:12:51 -04:00

jael

Pub build status

Angel support for Jael.

Installation

In your pubspec.yaml:

dependencies:
  angel_jael: ^1.0.0-alpha

Usage

Just like mustache and other renderers, configuring Angel to use Jael is as simple as calling app.configure:

import 'package:angel_framework/angel_framework.dart';
import 'package:angel_jael/angel_jael.dart';
import 'package:file/file.dart';

AngelConfigurer myPlugin(FileSystem fileSystem) {
    return (Angel app) async {
        // Connect Jael to your server...
        await app.configure(
        jael(fileSystem.directory('views')),
      );
    };
}

package:angel_jael supports caching views, to improve server performance. You might not want to enable this in development, so consider setting the flag to app.isProduction:

jael(viewsDirectory, cacheViews: app.isProduction);

Keep in mind that this package uses package:file, rather than dart:io.

The following is a basic example of a server setup that can render Jael templates from a directory named views:

import 'package:angel_framework/angel_framework.dart';
import 'package:angel_jael/angel_jael.dart';
import 'package:file/local.dart';
import 'package:logging/logging.dart';

main() async {
  var app = new Angel();
  var fileSystem = const LocalFileSystem();

  await app.configure(
    jael(fileSystem.directory('views')),
  );

  // Render the contents of views/index.jl
  app.get('/', (res) => res.render('index', {'title': 'ESKETTIT'}));

  app.use(() => throw new AngelHttpException.notFound());

  app.logger = new Logger('angel')
    ..onRecord.listen((rec) {
      print(rec);
      if (rec.error != null) print(rec.error);
      if (rec.stackTrace != null) print(rec.stackTrace);
    });

  var server = await app.startServer(null, 3000);
  print('Listening at http://${server.address.address}:${server.port}');
}

To apply additional transforms to parsed documents, provide a set of patch functions, like in package:jael_preprocessor.