Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(392)

Unified Diff: example/angular/routing/accessing_route_params_within_components/book_component.dart

Issue 135183008: First group of routing examples (Closed) Base URL: https://github.com/dart-lang/dart_by_example.git@master
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: example/angular/routing/accessing_route_params_within_components/book_component.dart
diff --git a/example/angular/routing/accessing_route_params_within_components/book_component.dart b/example/angular/routing/accessing_route_params_within_components/book_component.dart
new file mode 100644
index 0000000000000000000000000000000000000000..86238ebbd5babb9acf4c180226b67b84138bb148
--- /dev/null
+++ b/example/angular/routing/accessing_route_params_within_components/book_component.dart
@@ -0,0 +1,25 @@
+// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+library book_component;
+
+import 'package:angular/angular.dart';
+import './book.dart' show Book;
+
+@NgComponent(
+ selector: 'book-component',
+ templateUrl: './book_component.html',
pavelj 2014/01/21 21:59:59 remove ./ ?
+ publishAs: 'cmp'
pavelj 2014/01/21 21:59:59 stick with ctrl if posible
+)
+class BookComponent {
+ @NgTwoWay('book-map')
+ Map<String, Book> bookMap;
+ String _bookId;
+
+ BookComponent(RouteProvider routeProvider) {
+ _bookId = routeProvider.parameters['bookId'];
+ }
+
+ Book get book => bookMap[_bookId];
+}

Powered by Google App Engine
This is Rietveld 408576698