GithubHelp home page GithubHelp logo

niieani / aurelia-binding-functions Goto Github PK

View Code? Open in Web Editor NEW
1.0 4.0 3.0 83 KB

An Aurelia plugin that makes it possible create BindingFunctions

JavaScript 44.88% Shell 2.03% TypeScript 53.09%

aurelia-binding-functions's Introduction

aurelia-binding-functions

An Aurelia plugin that allows you to create bi-directional BindingFunctions in a similar way to ValueConverters or BindingBehaviors.

How to install this plugin?

  1. In your project install the plugin via jspm with following command
jspm install npm:aurelia-binding-functions
  1. Make Aurelia load the plugin by adding the following line to the configure function in the main.js file of your src folder
  export function configure(aurelia) {
    aurelia.use
      .standardConfiguration()
      .developmentLogging();

+   aurelia.use.plugin('aurelia-binding-functions');

    aurelia.start().then(a => a.setRoot());
  }
  1. If you use TypeScript or use Visual Studio Code the type declarations for aurelia-binding-functions should be visible automatically.

Using the plugin

You may create a BindingFunction the same way as you would BindingBehaviors or ValueConverters.

The simplest implementation for a one-way binding might look as follows:

// async-binding-function.ts //

export class AsyncBindingFunction implements BindingFunction {
  connect(callScope: CallScope, binding: Binding, scope: Scope) {
    // get the value of the first argument passed to our CallScope, 
    // e.g. the property from async(property)
    const promise = callScope.args[0].evaluate(scope, binding.lookupFunctions, true) as Promise<any> & {promiseResult:any}
    
    // make sure the binding is updated 
    // once the property "promiseResult" changes on the "promise"
    binding.observeProperty(promise, 'promiseResult')
    
    // set the "promiseResult" property once the Promise resolves
    if (promise.promiseResult === undefined && typeof promise.then === 'function') {
      promise.then(value => {
        promise.promiseResult = value
      })
    }
  }
  
  evaluate(callScope: CallScope, scope: Scope, lookupFunctions, mustEvaluate: boolean) {
    const promise = callScope.args[0].evaluate(scope, lookupFunctions, true) as Promise<any> & {promiseResult:any}
    // return the value of "promiseResult" property 
    // or undefined if the value of the argument is not set 
    return promise ? promise.promiseResult : undefined
  }
}

Now the BindingFunction can be used inside bindings prefixed by @, i.e. @async():

<require from="./async-binding-function"></require>

<h2>${ @async(somePromise) }</h2>

A BindingFunction can implement the following methods:

export interface BindingFunction {
  /**
   * invoked by Aurelia to either: 
   *  - retrieve the current value of the binding
   *  - trigger a call (e.g. by click.delegate)
   */
  evaluate(bindingFunctionScope: BindingFunctionScope, scope: Scope, lookupFunctions, mustEvaluate: boolean): any
  
  /**
   * invoked if the binding is used as a source of values
   * (as opposed to being used to trigger changes, like in click.delegate)
   * this is invoked by Aurelia after bind() and every time the binding is recomputed
   */
  connect?(bindingFunctionScope: BindingFunctionScope, binding: Binding, scope: Scope): void
  
  /**
   * when the binding is two-way, invoked every time new values are fed into the binding by Aurelia
   */
  assign?(bindingFunctionScope: BindingFunctionScope, scope: Scope, value: any, lookupFunctions: any): void
  
  /**
   * invoked when the binding is bound
   */
  bind?(bindingFunctionScope: BindingFunctionScope, binding: Binding, scope: Scope, lookupFunctions: any): void
  
  /**
   * invoked when the binding is unbound
   */
  unbind?(bindingFunctionScope: BindingFunctionScope, binding: Binding, scope: Scope): void
}

For a one-time binding you only need to implement the evaluate() method. A one-way binding will require you to also implement connect(), while a two-way binding requires you to also implement assign().

ScopeFunctions

If you want to create lower-level, global, arbitraitly named Expressions, you may also use ScopeFunctions:

import {ParserImplementation} from 'aurelia-binding';

export function configure(aurelia) {
  let parser = aurelia.container.get(ParserImplementation);
  parser.registerScopeFunction('@custom', CustomExpression);
}

Where CustomExpression is a class that implements Expression. For references see ast.js.

Dependencies

Used By

This library isn't used by Aurelia. It is an optional plugin.

Platform Support

This library can be used in the browser as well as on the server.

Building The Code

To build the code, follow these steps.

  1. Ensure that NodeJS is installed. This provides the platform on which the build tooling runs.
  2. From the project folder, execute the following command:
npm install
  1. Ensure that Gulp is installed. If you need to install it, use the following command:
npm install -g gulp
  1. To build the code, you can now run:
gulp build
  1. You will find the compiled code in the dist folder, available in three module formats: AMD, CommonJS and ES6.

  2. See gulpfile.js for other tasks related to generating the docs and linting.

Running The Tests

To run the unit tests, first ensure that you have followed the steps above in order to install all dependencies and successfully build the library. Once you have done that, proceed with these additional steps:

  1. Ensure that the Karma CLI is installed. If you need to install it, use the following command:
npm install -g karma-cli
  1. Ensure that jspm is installed. If you need to install it, use the following commnand:
npm install -g jspm
  1. Install the client-side dependencies with jspm:
jspm install
  1. You can now run the tests with this command:
karma start

aurelia-binding-functions's People

Contributors

niieani avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar  avatar

aurelia-binding-functions's Issues

Cannot use plugin

When adding the aurelia.use.plugin('aurelia-binding-functions') to a new skeleton project(ES6, not TS), I get the following errors:

view-resources.ts:60 Uncaught (in promise) TypeError: Cannot read property 'bind' of undefined
    at Object.patchViewResources (http://127.0.0.1:7777/jspm_packages/npm/[email protected]/view-resources.js:35:106)
    at Object.configure (http://127.0.0.1:7777/jspm_packages/npm/[email protected]/index.js:9:26)
    at http://127.0.0.1:7777/jspm_packages/npm/[email protected]/aurelia-framework.js:276:36

Cannot find name 'Expression' in binding-function-scope.d.ts

I added aurelia-rxjs and aurelia-binding-functions to my project but I'm having trouble compiling the BindingFunctionScope class.
The import statement at the top seems to understand the Expression interface, but BindingFunctionScope can't extend it. (This happens in the tooling and in the gulp build task.)

aurelia-binding-functions version 0.2.2

image

Project status update

This project is very interesting, is it actively maintained? I tried to clone but the build was unsuccessful and since Aurelia changed a bit since the last commit I don't know if even built the project would work.

Relative module names in aurelia-binding-functions.d.ts

Hello niieani---I'm having a little trouble when I add the aurelia.use.plugin('aurelia-binding-functions'); line to my main.ts. It causes Chrome to show system.src.js:4597 GET http://localhost:9000/dist/aurelia-logging.js 404 (Not Found) in the debug console and the app doesn't load. This is resolved if I remove aurelia.use.plugin('aurelia-binding-functions');.

The only reference I can find to it is in view-resources.js, I noticed that the import was missing in view-resources.d.ts but adding import * as LogManager from 'aurelia-logging'; didn't achieve anything.

Do you have any ideas on what might be the cause, or what I should do to investigate?

As an aside, there's a couple of issues when I run the build task. I'm not sure if it's related, but I see this in the output:

"~/jspm_packages/npm/[email protected]/aurelia-binding-functions.d.ts(4,1): Import or export declaration in an ambient module declaration cannot reference module through relative module name."
"~/jspm_packages/npm/[email protected]/aurelia-binding-functions.d.ts(4,38): Cannot find module './binding-function-scope'."
"~/jspm_packages/npm/[email protected]/aurelia-binding-functions.d.ts(5,1): Import or export declaration in an ambient module declaration cannot reference module through relative module name."
"~/jspm_packages/npm/[email protected]/aurelia-binding-functions.d.ts(6,1): Import or export declaration in an ambient module declaration cannot reference module through relative module name."

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.