File
Constructor
constructor(navParams: NavParams, viewCtrl: PopoverController, appGlobalService: AppGlobalService, platform: Platform)
|
|
Parameters :
Name |
Type |
Optional |
navParams |
NavParams
|
No
|
viewCtrl |
PopoverController
|
No
|
appGlobalService |
AppGlobalService
|
No
|
platform |
Platform
|
No
|
|
Methods
changeValue
|
changeValue(value, index)
|
|
Parameters :
Name |
Optional |
value |
No
|
index |
No
|
|
getItems
|
getItems(ev: any)
|
|
Parameters :
Name |
Type |
Optional |
ev |
any
|
No
|
|
getSelectedOptionCount
|
getSelectedOptionCount(facet)
|
|
|
handleDeviceBackButton
|
handleDeviceBackButton()
|
|
|
isGroupShown
|
isGroupShown(group)
|
|
|
isSelected
|
isSelected(value)
|
|
|
toggleGroup
|
toggleGroup(group)
|
|
|
backButtonFunc
|
Default value : undefined
|
|
filteredTopicArr
|
Type : []
|
Default value : []
|
|
pagetAssemblefilter
|
Type : PageAssembleFilter
|
Default value : {}
|
|
prevSelectedTopic
|
Type : []
|
Default value : []
|
|
shownGroup
|
Type : null
|
Default value : null
|
|
showTopicFilterList
|
Default value : false
|
|
topicsArr
|
Type : []
|
Default value : []
|
|
topicsSelected
|
Type : any[]
|
|
topicsVal
|
Type : []
|
Default value : []
|
|
import { AppGlobalService } from '../../../services/app-global-service.service';
import { Component, ViewEncapsulation } from '@angular/core';
import {
NavParams,
Platform,
PopoverController,
} from '@ionic/angular';
import { PageAssembleFilter } from 'sunbird-sdk';
@Component({
selector: 'app-page-filter-options',
templateUrl: './page-filter-options.page.html',
styleUrls: ['./page-filter-options.page.scss'],
encapsulation: ViewEncapsulation.None
})
export class PageFilterOptionsPage {
pagetAssemblefilter: PageAssembleFilter = {};
facets: any;
backButtonFunc = undefined;
selected: boolean;
topicsSelected: any[];
items: any[];
shownGroup = null;
topicsArr = [];
topicsVal = [];
filteredTopicArr = [];
showTopicFilterList = false;
prevSelectedTopic = [];
constructor(
private navParams: NavParams,
private viewCtrl: PopoverController,
private appGlobalService: AppGlobalService,
private platform: Platform) {
this.facets = this.navParams.get('facets');
if (this.facets.name === 'Topic') {
// tslint:disable-next-line:forin
for (let i = 0; i < this.facets.values.length; i++) {
this.topicsArr.push(Object.keys(this.facets.values[i])[0]);
this.topicsVal.push(this.facets.values[i][this.topicsArr[i]]);
}
if (this.facets.selected) {
this.prevSelectedTopic = [...this.facets.selected];
}
}
this.handleDeviceBackButton();
}
handleDeviceBackButton() {
this.backButtonFunc = this.platform.backButton.subscribeWithPriority(10 , () => {
this.viewCtrl.dismiss();
this.backButtonFunc.unsubscribe();
});
}
isSelected(value) {
if (!this.facets.selected) {
return false;
}
return this.facets.selected.includes(value);
}
changeValue(value, index) {
if (!this.facets.selected) {
this.facets.selected = [];
if (this.facets.code === 'contentType') {
this.facets.selectedValuesIndices = [];
}
}
if (this.facets.selected.includes(value)) {
index = this.facets.selected.indexOf(value);
if (index > -1) {
this.facets.selected.splice(index, 1);
if (this.facets.code === 'contentType') {
this.facets.selectedValuesIndices.splice(index, 1);
}
}
} else {
if (!this.appGlobalService.isUserLoggedIn() && this.facets.code === 'board') {
this.facets.selected = [];
}
this.facets.selected.push(value);
if (this.facets.code === 'contentType') {
this.facets.selectedValuesIndices.push(index);
}
}
}
confirm() {
this.viewCtrl.dismiss();
if (this.backButtonFunc) {
this.backButtonFunc.unsubscribe();
}
}
toggleGroup(group) {
if (this.isGroupShown(group)) {
this.shownGroup = null;
} else {
this.shownGroup = group;
}
}
isGroupShown(group) {
return this.shownGroup === group;
}
getItems(ev: any) {
this.filteredTopicArr = [];
let val = ev.srcElement.value;
if (val && val.trim() !== '') {
val = val.toLowerCase();
this.showTopicFilterList = true;
for (let i = 0; i < this.topicsVal.length; i++) {
let filtered = [];
filtered = this.topicsVal[i].filter((item) => {
return (item.name.toString().toLowerCase().match(val));
});
if (filtered.length > 0) {
for (let j = 0; j < filtered.length; j++) {
this.filteredTopicArr.push(filtered[j]);
}
filtered = [];
}
}
} else {
this.showTopicFilterList = false;
this.filteredTopicArr = [];
}
}
getSelectedOptionCount(facet) {
if (facet.selected && facet.selected.length > 0) {
this.pagetAssemblefilter[facet.code] = facet.selected;
return `${facet.selected.length}`;
}
return '';
}
cancel() {
this.facets.selected = [...this.prevSelectedTopic];
this.viewCtrl.dismiss();
}
apply() {
this.prevSelectedTopic = [...this.facets.selected];
this.confirm();
}
}
<div *ngIf="facets?.name !== 'Topic'">
<ion-header>
<ion-toolbar>
<ion-title class="subtitle">{{ 'CHOOSE_FROM_FOLLOWING' | translate }}</ion-title>
</ion-toolbar>
</ion-header>
<ion-content>
<ion-grid class="scroll-list" *ngIf="facets?.name !== 'Organization' && facets?.name !== 'Purpose'">
<ion-row *ngIf="facets?.values && facets?.values?.length">
<ion-col size="6" *ngFor="let facetValue of facets?.values; let index=index">
<ion-item no-lines class="ion-no-padding">
<ion-label class="ion-text-capitalize">{{ facetValue }}</ion-label>
<ion-checkbox [checked]="isSelected(facetValue)" (ionChange)="changeValue(facetValue, index)">
</ion-checkbox>
</ion-item>
</ion-col>
</ion-row>
</ion-grid>
<ion-grid class="scroll-list" *ngIf="facets?.name === 'Purpose'">
<ion-row *ngIf="facets?.values && facets?.values?.length">
<ion-col size="12" *ngFor="let facetValue of facets?.values; let index=index">
<ion-item no-lines class="ion-no-padding">
<ion-label class="ion-text-capitalize">{{ facetValue }}</ion-label>
<ion-checkbox [checked]="isSelected(facetValue)" (ionChange)="changeValue(facetValue, index)">
</ion-checkbox>
</ion-item>
</ion-col>
</ion-row>
</ion-grid>
<ion-grid class="scroll-list" *ngIf="facets?.name === 'Organization'">
<ion-row *ngIf="facets?.values && facets?.values?.length">
<ion-col size="6" *ngFor="let facetValue of facets?.values; let index=index">
<ion-item no-lines class="ion-no-padding">
<ion-label class="ion-text-capitalize">{{ facetValue.orgName }}</ion-label>
<ion-checkbox [checked]="isSelected(facetValue.hashTagId)"
(ionChange)="changeValue(facetValue.hashTagId, index)"></ion-checkbox>
</ion-item>
</ion-col>
</ion-row>
</ion-grid>
</ion-content>
<ion-footer class="footer">
<ion-row>
<ion-col>
<ion-button expand="block" (click)="confirm()">{{ 'SELECT' | translate }}</ion-button>
</ion-col>
</ion-row>
</ion-footer>
</div>
<div *ngIf="facets?.name === 'Topic'">
<ion-header>
<ion-toolbar position="top">
<ion-title class="subtitle pull-left"> {{ 'TOPICS' | translate }} </ion-title>
<ion-title class="subtitle pull-right" style="padding-right: 10px;"> {{ 'SELECTED_TOPICS' | translate }}
{{getSelectedOptionCount(facets)}} </ion-title>
</ion-toolbar>
</ion-header>
<ion-content [fullscreen]="true" class="ion-no-padding">
<ion-searchbar (ionInput)="getItems($event)" #input debounce="1000" [spellcheck]="true" [autocomplete]="true"
class="subtitle"></ion-searchbar>
<div class="scroll-list" *ngIf="showTopicFilterList">
<ion-list class="topic-item">
<ion-item *ngFor="let items of filteredTopicArr" (click)="changeValue(items.name, index)">
<span
[ngClass]="{'text-selected':isSelected(items.name), 'text-unselected':!isSelected(items.name)}">{{ items.name }}</span>
<ion-icon class="icon-margin" item-right name='checkmark' *ngIf="isSelected(items.name)"
style="color : green; margin:0 10px;"></ion-icon>
</ion-item>
</ion-list>
</div>
<div class="scroll-list" *ngIf="!showTopicFilterList">
<ion-list class="topic-item">
<ion-item *ngFor="let facetValue of topicsArr; let i=index" no-lines class="div-space ion-no-padding">
<div class="ion-text-wrap" (click)="toggleGroup(i)" [ngClass]="{active: isGroupShown(i)}" style="font-size: 16px;">
<ion-col size="1" style="margin-left:15px;padding: 0;">
<ion-icon class="icon-margin" item-left [name]="isGroupShown(i) ? 'remove' : 'add'"></ion-icon>
</ion-col>
<ion-col size="11" style="padding:0;margin-left:0;">
<span>
{{facetValue}}
</span>
</ion-col>
</div>
<div *ngIf="isGroupShown(i)" style="width: 60%">
<div *ngFor="let items of topicsVal[i]; let item = index">
<div [ngClass]="{'text-selected':isSelected(items.name),'text-unselected':!isSelected(items.name)}"
(click)="changeValue(items.name, index)"><span>
{{items.name}}</span>
<span style="margin-top: 20%">
<ion-icon item-right name='checkmark' *ngIf="isSelected(items.name)"
style="color : green; margin:0 5px;"></ion-icon>
</span>
</div>
</div>
</div>
</ion-item>
</ion-list>
</div>
</ion-content>
<ion-footer class="topicFooter">
<ion-row>
<ion-col>
<ion-button fill="outline" expand="block" (click)="cancel()">{{ 'CANCEL' | translate }}</ion-button>
</ion-col>
<ion-col>
<ion-button expand="block" (click)="apply()">{{ 'APPLY' | translate }}</ion-button>
</ion-col>
</ion-row>
</ion-footer>
</div>
@import "src/assets/styles/_custom-mixins.scss";
@import "src/assets/styles/_variables.scss";
.subtitle {
text-transform: capitalize;
font-size: 1.3rem;
font-weight: 700 !important;
color: #3b5998;
}
ion-item {
padding-left: 0 !important;
.checkbox {
margin: 8px !important;
}
ion-label {
font-size: 0.875rem !important;
text-overflow: unset !important;
white-space: unset !important;
}
}
.col {
min-height: 3.3rem !important;
}
.scroll-list {
overflow-y: scroll;
max-height: 50vh !important;
padding-bottom: 10vh !important;
margin-left: 1.7%;
}
.item-md {
font-size: 1.3rem !important;
font-weight: 600 !important;
}
.footer{
background: #FFF;
bottom: 0;
}
.topicFooter
{
bottom: 0;
color: #fff
}
.resource-filter-options .popover-content {
margin: 0;
width: 100% !important;
max-height: 70% !important;
box-shadow: unset;
position: fixed;
@include ltr() {
left: 0 !important;
}
@include rtl() {
right: 0 !important;
}
top: unset !important;
bottom: 0;
transform-origin: bottom -100% !important;
transform: translateY(0) !important;
}
.resource-filter-options ion-backdrop {
background-color: map-get($colors, black) !important;
opacity: 0.4 !important;
}
.text-unselected{
padding-left: 20%;
color : black;
margin-bottom: 5px;
margin-top: 2px;
}
.text-selected{
padding-left: 20%;
color : blue;
margin-bottom: 5px;
margin-top: 2px;
}
.pull-left{
float: left;
}
.pull-right{
float: right;
}
.icon-margin{
margin:0 10px !important;
}
.div-space .item-inner .input-wrapper .label-md {
@include margin(5px 8px 5px 0 !important);
}
.filter-item {
width: auto;
margin: 16px !important;
background-color: map-get($colors, white_f0);
color: map-get($colors, dark_gray);
font-size: 1rem;
font-weight: 600 !important;
height: 2rem;
ion-icon {
color: map-get($colors, dark_gray);
}
.topic-item {
@extend .filter-item ;
height: 100%;
}
}
Legend
Html element with directive