How to use simple filter for gender












0















Im creating a simple customer management app and want to filter through my list! I have a gender filter and want it to display all the male/female customers when requested. I am able to do that, since I redeclare the customerArray I can practically only use it once, then have to refresh the page to use it again. There must be a way around this, ngModel maybe? Any tips are much appreciated! Below is my code!



<div class="allCustomers">
<div class="container">
<div class="row">
<div class="col">
<div class="navigation">
<i routerLink="/homepage" routerLinkActive="active" class="fas fa-home"></i> / View Customers
</div>
</div>
<div class="col">
<div class="navbar">
Filter:
<div class="dropdown">
<button class="dropbtn btn btn-outline-primary btn-sm ml-2">Gender
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a (click)="displayAllMale()">Male</a>
<a (click)="displayAllFemale()">Female</a>
</div>
</div>
<div class="dropdown">
<button class="dropbtn btn btn-outline-primary btn-sm ml-2">Country
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="#">AT</a>
<a href="#">US</a>
<a href="#">IN</a>
<a href="#">DE</a>
<a href="#">TB</a>
</div>
</div>
</div>
</div>
</div>
<div class="row justify-content-center">
<div>
<h1> List of all customers: </h1>
</div>
</div>
<div class="row">
<table class="table">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">First</th>
<th scope="col">Last</th>
<th scope="col">Country</th>
<th scope="col">Gender</th>
<th scope="col">Age</th>
<th scope="col">Edit</th>
<th scope="col">Delete</th>
</tr>
</thead>
<tbody>
<tr *ngFor="let customer of customerArray; let i = index">
<td>{{i + 1}}</td>
<td>{{customer.firstname}}</td>
<td>{{customer.lastname}}</td>
<td>{{customer.countryCode}}</td>
<td>{{customer.gender}}</td>
<td>{{customer.age}}</td>
<td><i class="fas fa-edit"></i></td>
<td><i class="fas fa-trash-alt"></i></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>




and here is my angular code:



customerArray: ;

constructor(
private http: HttpClient
) { }

ngOnInit() {
this.http.get('http://www.mocky.io/v2/5bfb15823200006d00bee442')
.subscribe((data) => {
this.customerArray = data;
console.log(this.customerArray);
}
}

// works but not quite because customerArray get overriden

displayAllMale() {
let filterForMale = this.customerArray
.filter(customer => customer.gender === "M");
this.customerArray = filterForMale;
}

displayAllFemale() {
let filterForFemale = this.customerArray
.filter(customer => customer.gender === "F");
this.customerArray = filterForFemale;
}
}











share|improve this question





























    0















    Im creating a simple customer management app and want to filter through my list! I have a gender filter and want it to display all the male/female customers when requested. I am able to do that, since I redeclare the customerArray I can practically only use it once, then have to refresh the page to use it again. There must be a way around this, ngModel maybe? Any tips are much appreciated! Below is my code!



    <div class="allCustomers">
    <div class="container">
    <div class="row">
    <div class="col">
    <div class="navigation">
    <i routerLink="/homepage" routerLinkActive="active" class="fas fa-home"></i> / View Customers
    </div>
    </div>
    <div class="col">
    <div class="navbar">
    Filter:
    <div class="dropdown">
    <button class="dropbtn btn btn-outline-primary btn-sm ml-2">Gender
    <i class="fa fa-caret-down"></i>
    </button>
    <div class="dropdown-content">
    <a (click)="displayAllMale()">Male</a>
    <a (click)="displayAllFemale()">Female</a>
    </div>
    </div>
    <div class="dropdown">
    <button class="dropbtn btn btn-outline-primary btn-sm ml-2">Country
    <i class="fa fa-caret-down"></i>
    </button>
    <div class="dropdown-content">
    <a href="#">AT</a>
    <a href="#">US</a>
    <a href="#">IN</a>
    <a href="#">DE</a>
    <a href="#">TB</a>
    </div>
    </div>
    </div>
    </div>
    </div>
    <div class="row justify-content-center">
    <div>
    <h1> List of all customers: </h1>
    </div>
    </div>
    <div class="row">
    <table class="table">
    <thead>
    <tr>
    <th scope="col">#</th>
    <th scope="col">First</th>
    <th scope="col">Last</th>
    <th scope="col">Country</th>
    <th scope="col">Gender</th>
    <th scope="col">Age</th>
    <th scope="col">Edit</th>
    <th scope="col">Delete</th>
    </tr>
    </thead>
    <tbody>
    <tr *ngFor="let customer of customerArray; let i = index">
    <td>{{i + 1}}</td>
    <td>{{customer.firstname}}</td>
    <td>{{customer.lastname}}</td>
    <td>{{customer.countryCode}}</td>
    <td>{{customer.gender}}</td>
    <td>{{customer.age}}</td>
    <td><i class="fas fa-edit"></i></td>
    <td><i class="fas fa-trash-alt"></i></td>
    </tr>
    </tbody>
    </table>
    </div>
    </div>
    </div>




    and here is my angular code:



    customerArray: ;

    constructor(
    private http: HttpClient
    ) { }

    ngOnInit() {
    this.http.get('http://www.mocky.io/v2/5bfb15823200006d00bee442')
    .subscribe((data) => {
    this.customerArray = data;
    console.log(this.customerArray);
    }
    }

    // works but not quite because customerArray get overriden

    displayAllMale() {
    let filterForMale = this.customerArray
    .filter(customer => customer.gender === "M");
    this.customerArray = filterForMale;
    }

    displayAllFemale() {
    let filterForFemale = this.customerArray
    .filter(customer => customer.gender === "F");
    this.customerArray = filterForFemale;
    }
    }











    share|improve this question



























      0












      0








      0








      Im creating a simple customer management app and want to filter through my list! I have a gender filter and want it to display all the male/female customers when requested. I am able to do that, since I redeclare the customerArray I can practically only use it once, then have to refresh the page to use it again. There must be a way around this, ngModel maybe? Any tips are much appreciated! Below is my code!



      <div class="allCustomers">
      <div class="container">
      <div class="row">
      <div class="col">
      <div class="navigation">
      <i routerLink="/homepage" routerLinkActive="active" class="fas fa-home"></i> / View Customers
      </div>
      </div>
      <div class="col">
      <div class="navbar">
      Filter:
      <div class="dropdown">
      <button class="dropbtn btn btn-outline-primary btn-sm ml-2">Gender
      <i class="fa fa-caret-down"></i>
      </button>
      <div class="dropdown-content">
      <a (click)="displayAllMale()">Male</a>
      <a (click)="displayAllFemale()">Female</a>
      </div>
      </div>
      <div class="dropdown">
      <button class="dropbtn btn btn-outline-primary btn-sm ml-2">Country
      <i class="fa fa-caret-down"></i>
      </button>
      <div class="dropdown-content">
      <a href="#">AT</a>
      <a href="#">US</a>
      <a href="#">IN</a>
      <a href="#">DE</a>
      <a href="#">TB</a>
      </div>
      </div>
      </div>
      </div>
      </div>
      <div class="row justify-content-center">
      <div>
      <h1> List of all customers: </h1>
      </div>
      </div>
      <div class="row">
      <table class="table">
      <thead>
      <tr>
      <th scope="col">#</th>
      <th scope="col">First</th>
      <th scope="col">Last</th>
      <th scope="col">Country</th>
      <th scope="col">Gender</th>
      <th scope="col">Age</th>
      <th scope="col">Edit</th>
      <th scope="col">Delete</th>
      </tr>
      </thead>
      <tbody>
      <tr *ngFor="let customer of customerArray; let i = index">
      <td>{{i + 1}}</td>
      <td>{{customer.firstname}}</td>
      <td>{{customer.lastname}}</td>
      <td>{{customer.countryCode}}</td>
      <td>{{customer.gender}}</td>
      <td>{{customer.age}}</td>
      <td><i class="fas fa-edit"></i></td>
      <td><i class="fas fa-trash-alt"></i></td>
      </tr>
      </tbody>
      </table>
      </div>
      </div>
      </div>




      and here is my angular code:



      customerArray: ;

      constructor(
      private http: HttpClient
      ) { }

      ngOnInit() {
      this.http.get('http://www.mocky.io/v2/5bfb15823200006d00bee442')
      .subscribe((data) => {
      this.customerArray = data;
      console.log(this.customerArray);
      }
      }

      // works but not quite because customerArray get overriden

      displayAllMale() {
      let filterForMale = this.customerArray
      .filter(customer => customer.gender === "M");
      this.customerArray = filterForMale;
      }

      displayAllFemale() {
      let filterForFemale = this.customerArray
      .filter(customer => customer.gender === "F");
      this.customerArray = filterForFemale;
      }
      }











      share|improve this question
















      Im creating a simple customer management app and want to filter through my list! I have a gender filter and want it to display all the male/female customers when requested. I am able to do that, since I redeclare the customerArray I can practically only use it once, then have to refresh the page to use it again. There must be a way around this, ngModel maybe? Any tips are much appreciated! Below is my code!



      <div class="allCustomers">
      <div class="container">
      <div class="row">
      <div class="col">
      <div class="navigation">
      <i routerLink="/homepage" routerLinkActive="active" class="fas fa-home"></i> / View Customers
      </div>
      </div>
      <div class="col">
      <div class="navbar">
      Filter:
      <div class="dropdown">
      <button class="dropbtn btn btn-outline-primary btn-sm ml-2">Gender
      <i class="fa fa-caret-down"></i>
      </button>
      <div class="dropdown-content">
      <a (click)="displayAllMale()">Male</a>
      <a (click)="displayAllFemale()">Female</a>
      </div>
      </div>
      <div class="dropdown">
      <button class="dropbtn btn btn-outline-primary btn-sm ml-2">Country
      <i class="fa fa-caret-down"></i>
      </button>
      <div class="dropdown-content">
      <a href="#">AT</a>
      <a href="#">US</a>
      <a href="#">IN</a>
      <a href="#">DE</a>
      <a href="#">TB</a>
      </div>
      </div>
      </div>
      </div>
      </div>
      <div class="row justify-content-center">
      <div>
      <h1> List of all customers: </h1>
      </div>
      </div>
      <div class="row">
      <table class="table">
      <thead>
      <tr>
      <th scope="col">#</th>
      <th scope="col">First</th>
      <th scope="col">Last</th>
      <th scope="col">Country</th>
      <th scope="col">Gender</th>
      <th scope="col">Age</th>
      <th scope="col">Edit</th>
      <th scope="col">Delete</th>
      </tr>
      </thead>
      <tbody>
      <tr *ngFor="let customer of customerArray; let i = index">
      <td>{{i + 1}}</td>
      <td>{{customer.firstname}}</td>
      <td>{{customer.lastname}}</td>
      <td>{{customer.countryCode}}</td>
      <td>{{customer.gender}}</td>
      <td>{{customer.age}}</td>
      <td><i class="fas fa-edit"></i></td>
      <td><i class="fas fa-trash-alt"></i></td>
      </tr>
      </tbody>
      </table>
      </div>
      </div>
      </div>




      and here is my angular code:



      customerArray: ;

      constructor(
      private http: HttpClient
      ) { }

      ngOnInit() {
      this.http.get('http://www.mocky.io/v2/5bfb15823200006d00bee442')
      .subscribe((data) => {
      this.customerArray = data;
      console.log(this.customerArray);
      }
      }

      // works but not quite because customerArray get overriden

      displayAllMale() {
      let filterForMale = this.customerArray
      .filter(customer => customer.gender === "M");
      this.customerArray = filterForMale;
      }

      displayAllFemale() {
      let filterForFemale = this.customerArray
      .filter(customer => customer.gender === "F");
      this.customerArray = filterForFemale;
      }
      }








      json filter angular6 ngmodel






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 26 '18 at 20:16







      kontenurban

















      asked Nov 25 '18 at 22:24









      kontenurbankontenurban

      889




      889
























          0






          active

          oldest

          votes











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53472623%2fhow-to-use-simple-filter-for-gender%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes
















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53472623%2fhow-to-use-simple-filter-for-gender%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Tonle Sap (See)

          I get strange results when I access the Sqlitedatabase with Unity C# via XAMPP

          Guatemaltekische Davis-Cup-Mannschaft