Coder Social home page Coder Social logo

xgrommx / angular-ui-tree-filter Goto Github PK

View Code? Open in Web Editor NEW

This project forked from ee/angular-ui-tree-filter

0.0 3.0 0.0 6.94 MB

A module providing an AngularJS filter which can be used with angular-ui-tree to match tree nodes.

Home Page: ee.github.io/angular-ui-tree-filter

License: MIT License

angular-ui-tree-filter's Introduction

#ui.tree-filter Build Status Built with Grunt

A module providing an AngularJS filter which can be used with angular-ui-tree to match tree nodes.

Table of Contents generated with DocToc

How it works?

  1. It's is configurable:
  • you may provide default properties of your nodes that should matched against provided pattern:
angular.module('myApp')
  .config(function (uiTreeFilterSettingsProvider) {
    uiTreeFilterSettingsProvider.addresses = ['title', 'description', 'username'];
  });
  • or you may pass property list as an optional 3rd argument:
$filter('uiTreeFilter')(nodeObject, pattern, ['title', 'description', 'username'])
  1. It matches the whole path If a sub-node matches all its ancestors up to the tree root match as well:
Filtered string: "the matched string"

    1. Foo
    2. Bar                            # matches as one of its descendants matches
        2.1 Baz                       # matches as one of its descendants matches
            2.1.1 The matched string  # matches exactly

How to use?

Filter can be used in the template to as an argument of the ng-show or ng-if.

<input ng-model="pattern">
<script type="text/ng-template" id="items_renderer.html">
  <div ui-tree-handle>{{item.title}}</div>
  <ol ui-tree-nodes ng-model="item.items">
    <li ng-repeat="item in item.items" ui-tree-node ng-include="'items_renderer.html'" 
        ng-hide="filter(item, pattern)">
    </li>
  </ol>
</script>
<div ui-tree>
  <ol ui-tree-nodes ng-model="list">
    <li ng-repeat="item in list" ui-tree-node ng-include="'items_renderer.html'" 
        ng-hide="filter(item, pattern)"></li>
  </ol>
</div>

Configuration reference

  • addresses (default: ['title']): properties of notes against which pattern will be matched. Deep filed access is supported: one can provide foo.bar.baz to match against item.foo.bar.baz value.
  • regexFlags (default: 'gi'): Regular expression flags applied during he matching
  • descendantCollection (default: 'items'): name of item property that holds item descendants

Performance

The filter is not provided with any performance improving mechanisms. It may turn out suboptimal for large trees with thousands of nodes and. If you need it to become perform better let us know what your case is by filing an issue

Support

Basically all the browsers down to Firefox 3.0, IE 9, Opera 10.5 and Safari 4.0 are supported.

Potential support blockers:

  • Array.reduce support: Fx 3, IE 9, Op 10.5, Sf4
  • Array.forEach support IE 9

If you wish to support IE8 (as AngularJS 1.2.x do) you'd have to provide proper polyfills. But you know it anyway

License

The module is available under the MIT license (see LICENSE for details).

angular-ui-tree-filter's People

Contributors

jrencz avatar

Watchers

 avatar  avatar  avatar

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.