One place for hosting & domains

      Filter

      Sort and Filter a Table Using Angular

      Introduction

      When building Angular applications, one of the cornerstones we will use is ng-repeat. Showing data is something that we do in applications like when we show a table of users or whatever other data we need to show our users. Today we’ll be looking at a way to sort and filter our tabular data. This is a common feature that is always useful so let’s look at what we’ll be building and dive right into the code.

      Here’s a quick demo: http://codepen.io/sevilayha/pen/AmFLE/

      Our application will allow us to:

      • Show a table of data (ng-repeat)
      • Sort by ascending or descending columns (orderBy)
      • Filter by using a search field (filter)

      These are three common functions in any application and Angular lets us implement these features in a very simple way. Let’s set up our sample application’s HTML and Angular parts and then look at how we can sort and filter.

      We’ll be using Bootstrap and Font Awesome to style our app. Let’s take a look at the Angular module first. This will be a simple module with one controller where we define a few variables and the list of data we’ll show to our users (we’ll be using sushi, yum). The files we will need are:

      Our demo is built inside of CodePen, so you can create the two files above or just work within your own CodePen. Here is the code for app.js

      
      angular.module('sortApp', [])
        .controller('mainController', function($scope) {
          $scope.sortType     = 'name'; 
          $scope.sortReverse  = false;  
          $scope.searchFish   = '';     
      
          
          $scope.sushi = [
            { name: 'Cali Roll', fish: 'Crab', tastiness: 2 },
            { name: 'Philly', fish: 'Tuna', tastiness: 4 },
            { name: 'Tiger', fish: 'Eel', tastiness: 7 },
            { name: 'Rainbow', fish: 'Variety', tastiness: 6 }
          ];
        });
      

      We have set the 3 variables and the list of sushi. Now let’s use this module in our HTML. Here is the HTML we’ll need for index.html:

      <div class="container" ng-app="sortApp" ng-controller="mainController">
        <div class="alert alert-info">
          <p>Sort Type: {{ sortType }}</p>
          <p>Sort Reverse: {{ sortReverse }}</p>
          <p>Search Query: {{ searchFish }}</p>
        </div>
      
        <table class="table table-bordered table-striped">
          <thead>
            <tr>
              <td>
                  Sushi Roll
                </a>
              </td>
              <td>
                Fish Type
                </a>
              </td>
              <td>
                Taste Level
                </a>
              </td>
            </tr>
          </thead>
          <tbody>
            <tr ng-repeat="roll in sushi">
              <td>{{ roll.name }}</td>
              <td>{{ roll.fish }}</td>
              <td>{{ roll.tastiness }}</td>
            </tr>
          </tbody>
        </table>
      </div>
      

      We are loading Bootstrap, Font Awesome, and Angular. We will also apply the Angular module named sortApp and the Angular controller called mainController to the tag.

      We are also using an ngRepeat to loop over the sushi in our $scope.sushi array we created in our Angular module.

      Great. We have the list of data displayed all nicely for our users. Now let’s offer them some functionality by letting them sort the table.

      We will be accomplishing this sorting feature using two of the variables that we created earlier ($scope.sortType and $scope.sortReverse). We will also be using the Angular orderBy filter. Basically, applying a combination of sortType and sortReverse variables to an orderBy clause in our ng-repeat will sort the table.

      <tr ng-repeat="roll in sushi | orderBy:sortType:sortReverse">
      

      That’s all we need to change the sort order of our ngRepeat. If you refresh your page, you’ll see that your list is sorted by name in normal order. Now go into your Angular module and change the sortType variable to $scope.sortType="fish" and refresh the page. You’ll now see the table sorted by Fish Type. The next step is to change the headings of our table so that they will change the sortType variable. That will automatically sort our table without refreshing the page (as is the Angular way).

      Making Table Headings Clickable

      We’ll be adding links to our table headings. Let’s look at the thead section of our site and use ng-click to adjust the sortType variable.

      <td>
        <a href="#" ng-click="sortType = 'name';">
          Sushi Roll
        </a>
      </td>
      

      Now as you click the links across your table headers, you’ll see your table sorted since we are setting the sortType variable using ng-click.

      Changing the Sort Order

      Next up, we’ll be adding a way to change the sort order so users can sort by ascending or descending. The orderBy filter arguments offer a third parameter for reverse. We just have to pass in true or false to change the sort order. Currently, we have it set to false since we defined that as one of the variables earlier ($scope.sortReverse). The way we will give users the option to reverse the sort is to add sortReverse = !sortReverse in the ng-click of our table headers. This will change the order if users click the link.

      <td>
        <a href="#" ng-click="sortType = 'name'; sortReverse = !sortReverse">
          Sushi Roll
        </a>
      </td>
      

      Just add that to all the other ng-clicks in the code as well. Now if you click your header links, you’ll see the sort order changing. This isn’t very intuitive right now though since we don’t provide any sort of visual feedback that the sort is changing. Let’s add carets to show up and down to represent our current sort order. We’ll add an up and down caret here and then use ngShow and ngHide to show and hide the caret based on order.

      <td>
        <a href="#" ng-click="sortType = 'name'; sortReverse = !sortReverse">
          Sushi Roll
          <span ng-show="sortType == 'name' && !sortReverse" class="fa fa-caret-down"></span>
          <span ng-show="sortType == 'name' && sortReverse" class="fa fa-caret-up"></span>
        </a>
      </td>
      

      Now the up arrow will only show if sortType is name and sortReverse is set to true. Applying this to the other headers will give you the same effect. With a few Angular directives, we are now able to show proper feedback for sorting and for sort order. The last part of this tutorial will deal with filtering the table of data.

      Filtering data in an ng-repeat is fairly easy since Angular also comes with the filter module. There are only two things we need to do here: create the form and apply the form variable to the ng-repeat.

      Let’s create the form first. Above the code for the table and below the code for the alert.

      <form>
        <div class="form-group">
          <div class="input-group">
            <div class="input-group-addon"><i class="fa fa-search"></i></div>
            <input type="text" class="form-control" placeholder="Search the Fish" ng-model="searchFish">
          </div>
        </div>
      </form>
      

      A lot of that is Bootstrap markup to style our form beautifully, but the line we need to pay attention to is the input. This is where we define our ng-model to adjust the searchFish variable. Now as we type into that input box, you should see that variable change in the alert box above. With that variable bound and ready to go, all we have to do is apply it to our ng-repeat.

      Just like that, our filter will now be applied to the table. Go ahead and type into your filter box and see the table data change. You’ll also notice that the orderBy and filter will work together to find you the exact sushi roll that you want.

      Using some built-in Angular tools like ngRepeat, orderBy, filter, ngClick, and ngShow, we’ve been able to build a clean and fast table of data. This is a great look at the power that Angular has in building some great functionality into your own applications without too much work.

      Further Reading

      For more Angular goodness, here are some other great articles:

      Metode filter() Larik di JavaScript


      Pengantar

      Metode larik filter() membuat larik baru bersama elemen yang termasuk dalam kriteria yang ditentukan dari larik yang ada:

      var numbers = [1, 3, 6, 8, 11];
      
      var lucky = numbers.filter(function(number) {
        return number > 7;
      });
      
      // [ 8, 11 ]
      

      Contoh di atas mengambil larik numbers dan mengembalikan larik terfilter yang baru bersama nilai-nilai yang lebih besar dari tujuh saja.

      Sintaks filter

      var newArray = array.filter(function(item) {
        return condition;
      });
      

      Argumen item adalah referensi ke elemen saat ini di larik karena filter() memeriksanya terhadap condition. Ini berguna untuk mengakses properti, dalam hal objek.

      Jika item saat ini menyalurkan syarat, ia akan dikirim ke larik baru.

      Menyaring larik objek

      Kasus penggunaan umum .filter() adalah bersama larik objek melalui propertinya:

      var heroes = [
          {name: “Batman”, franchise: “DC”},
          {name: “Ironman”, franchise: “Marvel”},
          {name: “Thor”, franchise: “Marvel”},
          {name: “Superman”, franchise: “DC”}
      ];
      
      var marvelHeroes =  heroes.filter(function(hero) {
          return hero.franchise == “Marvel”;
      });
      
      // [ {name: “Ironman”, franchise: “Marvel”}, {name: “Thor”, franchise: “Marvel”} ]
      

      Sumber Daya Tambahan

      Untuk detail selengkapnya tentang filter() lihat Referensi MDN.

      Filter hanya salah satu dari beberapa metode iterasi terhadap Larik di JavaScript, bacalah Cara Menggunakan Metode Iterasi Larik di JavaScript untuk mempelajari tentang metode lain seperti map() dan reduce().



      Source link

      filter() Array-Metode in JavaScript


      Einführung

      Die Array-Methode filter() erstellt aus einem vorhandenen Array ein neues Array mit Elementen, die unter ein gegebenes Kriterium fallen:

      var numbers = [1, 3, 6, 8, 11];
      
      var lucky = numbers.filter(function(number) {
        return number > 7;
      });
      
      // [ 8, 11 ]
      

      Das obige Beispiel nimmt das Array numbers und gibt ein neues gefiltertes Array mit nur jenen Werten zurück, die größer als sieben sind.

      Syntax des Filters

      var newArray = array.filter(function(item) {
        return condition;
      });
      

      Das Argument item ist eine Referenz auf das aktuelle Element im Array, da filter() es gegen die Bedingung condition prüft. Dies ist im Fall von Objekten für den Zugriff auf Eigenschaften nützlich.

      Wenn das aktuelle item die Bedingung erfüllt, wird es an das neue Array gesendet.

      Filtern eines Arrays von Objekten

      Ein üblicher Anwendungsfall von .filter() ist die Verwendung eines Arrays von Objekten über ihre Eigenschaften:

      var heroes = [
          {name: “Batman”, franchise: “DC”},
          {name: “Ironman”, franchise: “Marvel”},
          {name: “Thor”, franchise: “Marvel”},
          {name: “Superman”, franchise: “DC”}
      ];
      
      var marvelHeroes =  heroes.filter(function(hero) {
          return hero.franchise == “Marvel”;
      });
      
      // [ {name: “Ironman”, franchise: “Marvel”}, {name: “Thor”, franchise: “Marvel”} ]
      

      Zusätzliche Informationen

      Weitere Details zu filter() finden Sie in der MDN-Referenz.

      Filter ist nur eine von mehreren Iterationsmethoden für Arrays in JavaScript. Lesen Sie Verwenden von Array-Iterationsmethoden in JavaScript, um mehr über die anderen Methoden wie map() und reduce() zu erfahren.



      Source link