mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 20:47:54 +00:00
Improve search page
This commit is contained in:
Generated
+3
-3
@@ -3440,9 +3440,9 @@
|
|||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"angular-tag-cloud-module": {
|
"angular-tag-cloud-module": {
|
||||||
"version": "5.2.0",
|
"version": "5.2.2",
|
||||||
"resolved": "https://registry.npmjs.org/angular-tag-cloud-module/-/angular-tag-cloud-module-5.2.0.tgz",
|
"resolved": "https://registry.npmjs.org/angular-tag-cloud-module/-/angular-tag-cloud-module-5.2.2.tgz",
|
||||||
"integrity": "sha512-F89pvDWmpy4VHMhw1CN5kSwiGjGhBIXS4ektJZraJTBwjxCf9GsTNiw0mjcMWpuqEIxccxcaN3kIx+Z+wvoV3Q==",
|
"integrity": "sha512-lb/GeK5n0CDH3rjRC7PHBMgRcafc102sovfjyU3W05m9B8JELTDqk6jVEFqiCg+NbLy+zDm7g68Ij7k7LzxmAA==",
|
||||||
"requires": {
|
"requires": {
|
||||||
"tslib": "^2.0.0"
|
"tslib": "^2.0.0"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -38,6 +38,7 @@
|
|||||||
"@ionic/pwa-elements": "^3.0.1",
|
"@ionic/pwa-elements": "^3.0.1",
|
||||||
"@ionic/storage": "^2.3.1",
|
"@ionic/storage": "^2.3.1",
|
||||||
"@logisticinfotech/ionic4-datepicker": "^1.4.4",
|
"@logisticinfotech/ionic4-datepicker": "^1.4.4",
|
||||||
|
"angular-tag-cloud-module": "^5.2.2",
|
||||||
"cordova-ios": "6.1.0",
|
"cordova-ios": "6.1.0",
|
||||||
"cordova-plugin-camera": "^5.0.1",
|
"cordova-plugin-camera": "^5.0.1",
|
||||||
"cordova-plugin-file": "^6.0.2",
|
"cordova-plugin-file": "^6.0.2",
|
||||||
|
|||||||
@@ -23,16 +23,11 @@
|
|||||||
<ion-tab-button tab="publications">
|
<ion-tab-button tab="publications">
|
||||||
<ion-icon class="nav-icon" src="assets/images/icons-nav-actions.svg"></ion-icon>
|
<ion-icon class="nav-icon" src="assets/images/icons-nav-actions.svg"></ion-icon>
|
||||||
<ion-label>Acções</ion-label>
|
<ion-label>Acções</ion-label>
|
||||||
</ion-tab-button>
|
|
||||||
<ion-tab-button tab="search">
|
|
||||||
<ion-icon name="search"></ion-icon>
|
|
||||||
<ion-label>Pesquisa</ion-label>
|
|
||||||
</ion-tab-button>
|
</ion-tab-button>
|
||||||
<ion-tab-button tab="chat">
|
<ion-tab-button tab="chat">
|
||||||
<ion-icon class="nav-icon" src="assets/images/icons-nav-chat-inactive.svg"></ion-icon>
|
<ion-icon class="nav-icon" src="assets/images/icons-nav-chat-inactive.svg"></ion-icon>
|
||||||
<ion-label>Chat</ion-label>
|
<ion-label>Chat</ion-label>
|
||||||
</ion-tab-button>
|
</ion-tab-button>
|
||||||
-->
|
|
||||||
</ion-tab-bar>
|
</ion-tab-bar>
|
||||||
|
|
||||||
</ion-tabs>
|
</ion-tabs>
|
||||||
|
|||||||
@@ -76,7 +76,7 @@
|
|||||||
<!-- SLIDE -->
|
<!-- SLIDE -->
|
||||||
<ion-slides class="slide" pager="false" [options]="slideOpts">
|
<ion-slides class="slide" pager="false" [options]="slideOpts">
|
||||||
<ion-slide *ngFor="let category of searchCategories; index as i;">
|
<ion-slide *ngFor="let category of searchCategories; index as i;">
|
||||||
<div class="button" (click)="filterDocList(category.Name)" [ngClass]="{'active-category': category.Active}">
|
<div class="button" (click)="filterDocList(category.Name)" (click)="activeCategoty(i)"[ngClass]="{'active-category': category.Active}">
|
||||||
<p>{{ category.Name }}</p>
|
<p>{{ category.Name }}</p>
|
||||||
<ion-label class="label">{{ category.Qtd }}</ion-label>
|
<ion-label class="label">{{ category.Qtd }}</ion-label>
|
||||||
</div>
|
</div>
|
||||||
@@ -109,8 +109,8 @@
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<ion-icon *ngIf="ordinance == 'recent'" (click)="reorderList('old')" src="assets/images/icons-arrow-arrow-up.svg"></ion-icon>
|
<ion-icon *ngIf="ordinance == 'old'" (click)="reorderList('recent')" src="assets/images/icons-arrow-arrow-up.svg"></ion-icon>
|
||||||
<ion-icon *ngIf="ordinance == 'old'" (click)="reorderList('recent')" src="assets/images/icons-arrow-arrow-down-25.svg"></ion-icon>
|
<ion-icon *ngIf="ordinance == 'recent'" (click)="reorderList('old')" src="assets/images/icons-arrow-arrow-down-25.svg"></ion-icon>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -83,7 +83,7 @@ ion-slide{
|
|||||||
border-radius: 15px;
|
border-radius: 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.button:hover{
|
.active-category{
|
||||||
background-color: #42b9fe;
|
background-color: #42b9fe;
|
||||||
color: white;
|
color: white;
|
||||||
p{
|
p{
|
||||||
|
|||||||
@@ -72,9 +72,9 @@ export class SearchPage implements OnInit {
|
|||||||
this.ordinance = orderBy;
|
this.ordinance = orderBy;
|
||||||
|
|
||||||
if(this.ordinance == 'recent'){
|
if(this.ordinance == 'recent'){
|
||||||
this.showSearchDocuments = this.sortArrayISODate(this.searchDocuments);
|
|
||||||
} else {
|
|
||||||
this.showSearchDocuments = this.sortArrayISODate(this.searchDocuments).reverse();
|
this.showSearchDocuments = this.sortArrayISODate(this.searchDocuments).reverse();
|
||||||
|
} else {
|
||||||
|
this.showSearchDocuments = this.sortArrayISODate(this.searchDocuments)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -102,6 +102,8 @@ export class SearchPage implements OnInit {
|
|||||||
|
|
||||||
this.searchDocuments = this.sortArrayISODate(res.Documents);
|
this.searchDocuments = this.sortArrayISODate(res.Documents);
|
||||||
|
|
||||||
|
this.reorderList(this.ordinance);
|
||||||
|
|
||||||
// hide show document
|
// hide show document
|
||||||
if(this.searchDocuments.length >= 1){
|
if(this.searchDocuments.length >= 1){
|
||||||
this.showDocuments = true;
|
this.showDocuments = true;
|
||||||
@@ -130,6 +132,15 @@ export class SearchPage implements OnInit {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
activeCategoty(i){
|
||||||
|
|
||||||
|
this.searchCategories.forEach((e) => {
|
||||||
|
e['Active'] = false;
|
||||||
|
})
|
||||||
|
|
||||||
|
this.searchCategories[i]['Active'] = true;
|
||||||
|
}
|
||||||
|
|
||||||
clearInputRemetente(){
|
clearInputRemetente(){
|
||||||
this.searchSender = "";
|
this.searchSender = "";
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
export const environment = {
|
export const environment = {
|
||||||
production: false,
|
production: false,
|
||||||
apiURL: 'https://equilibrium.dyndns.info/GabineteDigital.Services/V3/api/',
|
apiURL: 'http://gpr-dev-01.gabinetedigital.local/GabineteDigital.Services/V3/api/',
|
||||||
apiChatUrl: 'http://chat.gabinetedigital.local:3000/api/v1/',
|
apiChatUrl: 'http://chat.gabinetedigital.local:3000/api/v1/',
|
||||||
domain: 'gabinetedigital.local',
|
domain: 'gabinetedigital.local',
|
||||||
defaultuser: 'paulo.pinto',
|
defaultuser: 'paulo.pinto',
|
||||||
|
|||||||
Reference in New Issue
Block a user