https://github.com/aeisenberg/angular-bind-notifier
On demand refreshing of AngularJS bindings. Vast performance improvements on complex apps.
https://github.com/aeisenberg/angular-bind-notifier
angular angular-bindings angular-extension angular-performance javascript
Last synced: about 2 months ago
JSON representation
On demand refreshing of AngularJS bindings. Vast performance improvements on complex apps.
- Host: GitHub
- URL: https://github.com/aeisenberg/angular-bind-notifier
- Owner: aeisenberg
- License: mit
- Archived: true
- Created: 2015-04-19T19:48:28.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2020-04-04T04:23:26.000Z (almost 6 years ago)
- Last Synced: 2025-12-24T16:20:51.972Z (2 months ago)
- Topics: angular, angular-bindings, angular-extension, angular-performance, javascript
- Language: JavaScript
- Homepage: http://aeisenberg.github.io/angular-bind-notifier/
- Size: 674 KB
- Stars: 111
- Watchers: 7
- Forks: 13
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
## angular-bind-notifier
[](https://travis-ci.org/kasperlewau/angular-bind-notifier) [](https://www.bithound.io/github/kasperlewau/angular-bind-notifier) [](http://badge.fury.io/bo/angular-bind-notifier) 
> On-demand & semi-automatic re-evaluation of angular one-time bindings
### 'ok' examples @ [gh-pages](http://aeisenberg.github.io/angular-bind-notifier/)
### installation
```js
bower install angular-bind-notifier --save
jspm install angular-bind-notifier --save
npm install angular-bind-notifier --save
```
### description
This package is meant for those looking for a middleground between two way binding, and one time bindings. *someTimeBinding?*
Based off of the work done by [@kseamon](https://github.com/kseamon/fast-bind) on fast-bind, [a proposal from August 2014 on labeled bindings](https://docs.google.com/document/d/1fTqaaQYD2QE1rz-OywvRKFSpZirbWUPsnfaZaMq8fWI/edit#) and [@kasperlewau's bower port of fast-bind](https://github.com/kasperlewau/fast-bind),
designed to closely resemble the one-time double-colon syntax introduced with Angular 1.3.
The idea is to pass a set of `key(s)` between the first and second colon of a one-time expression.
Said key(s) will need to be pre-registered with a corresponding value, either by a `bind-notifier` directive or or a `$Notifier` instance, DI'd and coupled with your `$scope`.
Once a key's value changes, a broadcast will be sent down through the descendant scopes, letting each expression
with the `:key:expr` syntax know that it is time to re-evaluate the result of the expression.
Possible use cases include but are not limited to;
* Model data that changes seldomly, that then needs to be reflected in the view.
* Translation(s) of the entire page (or a subsection), where static data needs to be re-translated.
Keys are determined by the following rules:
- surrounded by `:` character
- consists only of alphanumeric characters and `-`
- cannot start with a `-`
- is at the start of the binding or follows another key
For example: in `:keyOne:key-2:3:variable | someFilter:true:10` the following are keys: `keyOne`, `key-2`, `3` and the
remaining contents are the expression due to `variable | someFilter` not matching the rules of being a key
### usage
```js
// inject the module dependency
angular.module('your_module_name', [ 'angular.bind.notifier' ]);
```
#### bind-notifier
> [jsbin example](http://jsbin.com/boxafasibo/1/edit?html,js,output)
```html
{{:notifierKey:someExpressionToBind}}
```
```html
{{:keyOne:someExpressionToBind}}
{{:keyTwo:someExpressionToBind}}
```
```html
{{:keyOne:keyTwo:someExpressionToBind}}
```
```html
{{:keyOne:someExpressionToBind}}
{{:keyTwo:someExpressionToBind}}
{{:keyOne:anotherExpressionToBind}}
```
#### $Notifier(scope, notifierMap)
> [jsbin example](http://jsbin.com/zelaqimihe/1/edit?html,js,output)
The `$Notifier` *factory* returns a constructor function for you to setup a new $Notifier instance.
Both params (`$scope` & `notifierMap`) are **required**, a lack of either is considered a programmatical error and an error will be thrown.
```js
.controller('...', function ($scope, $Notifier) {
$scope.a = 'a';
$scope.b = 'b';
new $Notifier($scope, {
aNameSpace: 'a',
bNameSpace: 'b'
});
});
```
```html
```
#### manual refreshment
> [jsbin example](http://jsbin.com/tovexareje/1/edit?html,js,output)
The above use cases showcase how $watched expressions refresh bindings.
What happens behind the scenes is that a `$broadcast` is sent with the `$$rebind::` prefix, followed by the key
of your notifier key:value mapping.
As such, you can manually $broadcast whenever you want to refresh the binds - you don't *need* to setup a semi-automatic watcher through `bind-notifier` or `$Notifier`.
```html
```
```js
$scope.$broadcast('$$rebind::' + 'superduper'); // binding: refreshed!
```
### building/testing
* `npm install; npm install gulp -g`
* `gulp [lint|test|test:browser]`
### license
MIT © [Kasper Lewau](https://github.com/kasperlewau) and [Andrew Eisenberg](https://github.com/aeisenberg)