aboutsummaryrefslogtreecommitdiffstats
path: root/cds-ui/designer-client/src/app/modules/feature-modules/packages/packages.store.ts
blob: 1e52e31dd5fc6adbd9eacff044e6697e5967c14a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
/*
============LICENSE_START==========================================
===================================================================
Copyright (C) 2019 Orange. All rights reserved.
===================================================================

Unless otherwise specified, all software contained herein is licensed
under the Apache License, Version 2.0 (the License);
you may not use this software except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
============LICENSE_END============================================
*/

import {Injectable} from '@angular/core';
import {BluePrintPage} from './model/BluePrint.model';
import {Store} from '../../../common/core/stores/Store';
import {PackagesApiService} from './packages-api.service';
import {PackagesDashboardState} from './model/packages-dashboard.state';
import {Observable, of} from 'rxjs';
import {NgxUiLoaderService} from 'ngx-ui-loader';

@Injectable({
    providedIn: 'root'
})
export class PackagesStore extends Store<PackagesDashboardState> {
    // TDOD fixed for now as there is no requirement to change it from UI
    public pageSize = 15;
    private bluePrintContent: BluePrintPage = new BluePrintPage();

    constructor(
        private packagesServiceList: PackagesApiService,
        private ngxLoader: NgxUiLoaderService
    ) {
        super(new PackagesDashboardState());
    }

    public getAll() {
        console.log('getting all packages...');
        this.getPagedPackages(0, this.pageSize);
    }

    public search(command: string) {
        if (command) {
            this.searchPagedPackages(command, 0, this.pageSize);
        } else {
            this.getPagedPackages(0, this.pageSize);
        }
    }

    public filterByTags(tags: string[]) {
        console.log(this.state.currentPage);
        this.getPagedPackagesByTags(this.state.command, this.state.currentPage,
            this.pageSize, this.state.sortBy, tags);

    }

    public getPage(pageNumber: number, pageSize: number) {
        if (this.isCommandExist()) {
            this.searchPagedPackages(this.state.command, pageNumber, pageSize);
        } else {
            this.getPagedPackages(pageNumber, pageSize);
        }
    }

    public sortPagedPackages(sortBy: string) {
        if (this.isCommandExist()) {
            this.searchPagedPackages(this.state.command, this.state.currentPage, this.pageSize, sortBy);
        } else {
            this.getPagedPackages(this.state.currentPage, this.pageSize, sortBy);
        }

    }


    protected getPagedPackages(pageNumber: number, pageSize: number, sortBy: string = this.state.sortBy) {

        this.packagesServiceList.getPagedPackages(pageNumber, pageSize, sortBy)
            .subscribe((pages: BluePrintPage[]) => {
                this.setState({
                    ...this.state,
                    page: pages[0],
                    filteredPackages: pages[0],
                    command: '',
                    totalPackages: pages[0].totalElements,
                    currentPage: pageNumber,
                    // this param is set only in get all as it represents the total number of pacakges in the server
                    totalPackagesWithoutSearchorFilters: pages[0].totalElements,
                    tags: [],
                    sortBy
                });
            }, err => {
                console.log(err);
            }, () => {
                this.ngxLoader.stop();
            });
    }

    private searchPagedPackages(keyWord: string, pageNumber: number, pageSize: number, sortBy: string = this.state.sortBy) {
        this.packagesServiceList.getPagedPackagesByKeyWord(keyWord, pageNumber, pageSize, sortBy)
            .subscribe((pages: BluePrintPage[]) => {
                this.setState({
                    ...this.state,
                    page: pages[0],
                    filteredPackages: pages[0],
                    command: keyWord,
                    totalPackages: pages[0].totalElements,
                    currentPage: pageNumber,
                    tags: [],
                    sortBy
                });
            }, err => {
                console.log(err);
            }, () => {
                this.ngxLoader.stop(); // start master loader
            });
    }

    private isCommandExist() {
        return this.state.command;
    }

    private getPagedPackagesByTags(keyWord: string, currentPage1: number, pageSize: number, sortBy1: string, tagsSearchable: string[]) {
        this.getPagedPackagesByKeyWordFilteredByTags(tagsSearchable)
            .subscribe((pages: BluePrintPage) => {
                this.setState({
                    ...this.state,
                    page: this.state.page,
                    filteredPackages: pages,
                    command: keyWord,
                    tags: tagsSearchable,
                    //  totalPackages: pages.totalElements,
                    currentPage: currentPage1,
                    sortBy: sortBy1,
                    totalPackages: this.state.page.totalElements,
                });
            });
    }

    private getPagedPackagesByKeyWordFilteredByTags(tagsSearchable: string[]): Observable<any> {
        this.bluePrintContent.content = [];
        if (tagsSearchable && tagsSearchable.length !== 0 && !tagsSearchable.includes('All')) {
            tagsSearchable.forEach(tag => {
                if (tag) {
                    this.state.page.content.forEach(bluePrintModel => {
                        if (tag.endsWith(',')) {
                            tag = tag.replace(',', '');
                        }
                        bluePrintModel.tags.split(',').forEach(bluePrintModelTag => {
                            if (tag.includes(bluePrintModelTag.trim())) {
                                this.bluePrintContent.content.push(bluePrintModel);
                            }
                        });
                    });
                } else {
                    this.getPagedPackages(this.state.currentPage, this.pageSize);
                    return of(this.state.page);
                }
            });
            this.bluePrintContent.content = this.bluePrintContent.content.filter((value, index, self) => self.indexOf(value) === index);
            console.log('the lenght is ' + this.bluePrintContent.content.length);
            return of(this.bluePrintContent);
        } else {
            this.getPagedPackages(this.state.currentPage, this.pageSize);
            return of(this.state.page);
        }
    }


}