List of commits:
Subject Hash Author Date (UTC)
Implement reset filter 9f956ee48f51fde8bdec9de21e3847ab0fbd0ad2 antcalatayud 2019-03-01 12:23:16
Add make filter on client side 8723fcfe5cfcdc96700c4cc0a923551c6ba9e6e6 antcalatayud 2019-03-01 12:17:47
Start adding the filter 585116126385b86a3e091e709296356e401e8bdf antcalatayud 2019-03-01 12:13:25
Added html to list componenet. Fix bug with vehicle service json 02ab64b8fc3bd28dfa7316a5b9861c2ad24157c6 antcalatayud 2019-03-01 11:54:49
Add vehcile list component logic f96645d6de189b56c4f5d2dd01916e2b13ac4253 antcalatayud 2019-03-01 11:09:55
API get vehicles API. Fix bug *ngIf cba365b66c9bf87c6142f09ef2a673bfec91e837 antcalatayud 2019-03-01 10:24:59
Add delete vehicle functionality ec8398b6bb475a8326491ec59de955c55c1d8ee9 Antonio Calatayud 2019-02-18 16:41:02
Update vehicle c35c1d2f0ef4cc27bab1c261e4655a7a91eb1c7c Antonio Calatayud 2019-02-18 16:24:34
Populate checkboxes form. Fixed typo isRegistered 49b9fad3eb0ff05358e47eab61c6d06428f3d632 Antonio Calatayud 2019-02-18 15:50:04
Populate Model dropdown when form is vehicle form populated e71ebedf4a0bf1572dda7885eefd96d119693d69 Antonio Calatayud 2019-02-18 15:18:45
Prepare vehicle object to fill form db2a4dbb892ab8fdec34cf19cddcf6a5aa99d3aa antonio.calatayud 2019-01-29 16:46:02
Make parralle request to load vehicle b66d537ee97e2b0d1840e1440e04ea56b27e9557 antonio.calatayud 2019-01-28 16:50:35
Add get vehicle methon on vehicle service 27c078d382ae489c49855b77d0151ea506486a96 antonio.calatayud 2019-01-28 15:55:08
Add "logging" on prod mode - just example ead0ba75a9cf099e37676ab95f60a37aa3b883ca antonio.calatayud 2019-01-14 16:36:16
Add ngxToasta and global error handler cb0935ff5752b72870b6b9b5138e76fd0f7d7718 antonio.calatayud 2019-01-14 12:42:32
Remove font awesome 9ba33a938e20010daf4743f75301c994ec043a9d antonio.calatayud 2019-01-14 10:32:05
Updating solution to Angular 7 and bootsrap4. Missing font-awesome c277172b144f2d0c11fd9a246eaf4d00dedd6092 antonio.calatayud 2019-01-09 16:06:28
Implemented client side validation on new vehicle 10a9108113bdfbe2ae3b998a32633702e4bc13fc Antonio Calatayud 2019-01-08 16:24:50
Implement submit form 1e197fc2a202658d14526f2791b0a4a1dc4f568b Antonio Calatayud 2019-01-08 16:10:49
Biniding inputs to vehicle object d971e6fcc584e947b65547024fa9fd5407089b3e Antonio Calatayud 2019-01-08 16:04:25
Commit 9f956ee48f51fde8bdec9de21e3847ab0fbd0ad2 - Implement reset filter
Author: antcalatayud
Author date (UTC): 2019-03-01 12:23
Committer name: antcalatayud
Committer date (UTC): 2019-03-01 12:23
Parent(s): 8723fcfe5cfcdc96700c4cc0a923551c6ba9e6e6
Signing key:
Tree: def48582baa2ca70403eca54f04a926445fc4cbc
File Lines added Lines deleted
ClientApp/src/app/vehicle-list/vehicle-list.component.html 10 6
ClientApp/src/app/vehicle-list/vehicle-list.component.ts 4 0
File ClientApp/src/app/vehicle-list/vehicle-list.component.html changed (mode: 100644) (index 26da0e5..101acee)
2 2 <p> <p>
3 3 <a [routerLink]="['/vehicles/new']" class="btn btn-primary">New Vehicle</a> <a [routerLink]="['/vehicles/new']" class="btn btn-primary">New Vehicle</a>
4 4 </p> </p>
5 <div class="form-group card card-body bg-light">
6 <label for="make">Make</label>
7 <select name="make" id="make" class="form-control" [(ngModel)]="filter.makeId" (change)="onFilterChange()">
8 <option value=""></option>
9 <option *ngFor="let m of makes" value="{{ m.id }}">{{ m.name }}</option>
10 </select>
5 <div class="card card-body bg-light">
6 <div class="form-group">
7 <label for="make">Make</label>
8 <select name="make" id="make" class="form-control" [(ngModel)]="filter.makeId" (change)="onFilterChange()">
9 <option value=""></option>
10 <option *ngFor="let m of makes" value="{{ m.id }}">{{ m.name }}</option>
11 </select>
12 </div>
13 <button class="btn btn-secondary" (click)="resetFilter()">Reset</button>
11 14 </div> </div>
15
12 16 <table class="table"> <table class="table">
13 17 <thead> <thead>
14 18 <tr> <tr>
File ClientApp/src/app/vehicle-list/vehicle-list.component.ts changed (mode: 100644) (index 2e1eeae..82b04de)
... ... export class VehicleListComponent implements OnInit {
33 33 this.vehicles = vehicles; this.vehicles = vehicles;
34 34 } }
35 35
36 resetFilter() {
37 this.filter = {};
38 this.onFilterChange();
39 }
36 40 } }
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/antcalatayud/vega

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/antcalatayud/vega

Clone this repository using git:
git clone git://git.rocketgit.com/user/antcalatayud/vega

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main