aboutsummaryrefslogtreecommitdiffstats
path: root/cds-ui/designer-client/src/app/modules/feature-modules/packages/packages.store.ts
blob: d770bf7377b5d3459b058c8a4d7a77beb558d6b6 (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
/*
============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 {PackagesListService} from './packages-list.service';
import {PackagesDashboardState} from './model/packages-dashboard.state';


@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 = 5;

    constructor(private packagesServiceList: PackagesListService) {
        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 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);
        }

    }

    private 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],
                    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,
                    sortBy
                });
            });
    }

    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],
                    command: keyWord,
                    totalPackages: pages[0].totalElements,
                    currentPage: pageNumber,
                    sortBy
                });
            });
    }

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