2021-05-15 10:45:39 +00:00
|
|
|
# angel3_jael
|
|
|
|
[![version](https://img.shields.io/badge/pub-v4.0.1-brightgreen)](https://pub.dartlang.org/packages/angel3_jael)
|
|
|
|
[![Null Safety](https://img.shields.io/badge/null-safety-brightgreen)](https://dart.dev/null-safety)
|
|
|
|
[![Gitter](https://img.shields.io/gitter/room/angel_dart/discussion)](https://gitter.im/angel_dart/discussion)
|
2017-10-01 03:14:44 +00:00
|
|
|
|
2021-05-15 10:45:39 +00:00
|
|
|
[![License](https://img.shields.io/github/license/dukefirehawk/angel)](https://github.com/dukefirehawk/angel/tree/angel3/packages/jael/angel_jael/LICENSE)
|
2017-10-01 03:14:44 +00:00
|
|
|
|
2021-05-15 10:45:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
[Angel](https://github.com/dukefirehawk/angel/tree/angel3)
|
2017-10-01 03:14:44 +00:00
|
|
|
support for
|
2021-05-15 10:45:39 +00:00
|
|
|
[Jael](https://github.com/dukefirehawk/angel/tree/angel3/packages/jael/jael).
|
2017-10-01 03:14:44 +00:00
|
|
|
|
|
|
|
# Installation
|
|
|
|
In your `pubspec.yaml`:
|
|
|
|
|
|
|
|
```yaml
|
|
|
|
dependencies:
|
2021-05-15 10:45:39 +00:00
|
|
|
angel3_jael: ^4.0.0
|
2017-10-01 03:14:44 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
# Usage
|
|
|
|
Just like `mustache` and other renderers, configuring Angel to use
|
|
|
|
Jael is as simple as calling `app.configure`:
|
|
|
|
|
|
|
|
```dart
|
2021-05-15 10:45:39 +00:00
|
|
|
import 'package:angel3_framework/angel3_framework.dart';
|
|
|
|
import 'package:angel3_jael/angel3_jael.dart';
|
2017-10-01 03:14:44 +00:00
|
|
|
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')),
|
|
|
|
);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2021-05-15 10:45:39 +00:00
|
|
|
`package:angel3_jael` supports caching views, to improve server performance.
|
2017-10-01 03:14:44 +00:00
|
|
|
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`:
|
|
|
|
|
|
|
|
```dart
|
2021-05-15 10:45:39 +00:00
|
|
|
import 'package:angel3_framework/angel3_framework.dart';
|
|
|
|
import 'package:angel3_jael/angel3_jael.dart';
|
2017-10-01 03:14:44 +00:00
|
|
|
import 'package:file/local.dart';
|
|
|
|
import 'package:logging/logging.dart';
|
|
|
|
|
|
|
|
main() async {
|
2021-05-15 10:45:39 +00:00
|
|
|
var app = Angel();
|
2017-10-01 03:14:44 +00:00
|
|
|
var fileSystem = const LocalFileSystem();
|
|
|
|
|
|
|
|
await app.configure(
|
|
|
|
jael(fileSystem.directory('views')),
|
|
|
|
);
|
|
|
|
|
2018-11-10 21:48:03 +00:00
|
|
|
// Render the contents of views/index.jael
|
2017-10-01 03:14:44 +00:00
|
|
|
app.get('/', (res) => res.render('index', {'title': 'ESKETTIT'}));
|
|
|
|
|
2021-05-15 10:45:39 +00:00
|
|
|
app.use(() => throw AngelHttpException.notFound());
|
2017-10-01 03:14:44 +00:00
|
|
|
|
2021-05-15 10:45:39 +00:00
|
|
|
app.logger = Logger('angel')
|
2017-10-01 03:14:44 +00:00
|
|
|
..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}');
|
|
|
|
}
|
2017-10-02 16:12:51 +00:00
|
|
|
```
|
2017-10-01 03:14:44 +00:00
|
|
|
|
2017-10-02 16:12:51 +00:00
|
|
|
To apply additional transforms to parsed documents, provide a
|
2021-05-15 10:45:39 +00:00
|
|
|
set of `patch` functions, like in `package:jael3_preprocessor`.
|