aboutsummaryrefslogtreecommitdiffstats
path: root/webapp/src/app/projects/projectCard.component.ts
blob: fdacba49cc7b15db9995bb46e4f3241278460442 (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
import { Component, Input, Pipe, PipeTransform } from '@angular/core';
import { ProjectService, IProject, ProjectType } from "../services/project.service";
import { AlertService } from "../services/alert.service";

@Component({
    selector: 'project-card',
    template: `
        <div class="row">
            <div class="col-xs-12">
                <div class="text-right" role="group">
                    <button class="btn btn-link" (click)="delete(project)">
                        <span class="fa fa-trash fa-size-x2"></span>
                    </button>
                </div>
            </div>
        </div>

        <table class="table table-striped">
            <tbody>
            <tr>
                <th><span class="fa fa-fw fa-id-badge"></span>&nbsp;<span>Project ID</span></th>
                <td>{{ project.id }}</td>
            </tr>
            <tr>
                <th><span class="fa fa-fw fa-exchange"></span>&nbsp;<span>Sharing type</span></th>
                <td>{{ project.type | readableType }}</td>
            </tr>
            <tr>
                <th><span class="fa fa-fw fa-folder-open-o"></span>&nbsp;<span>Local path</span></th>
                <td>{{ project.pathClient }}</td>
            </tr>
            <tr *ngIf="project.pathServer && project.pathServer != ''">
                <th><span class="fa fa-fw fa-folder-open-o"></span>&nbsp;<span>Server path</span></th>
                <td>{{ project.pathServer }}</td>
            </tr>
            <tr>
                <th><span class="fa fa-fw fa-flag"></span>&nbsp;<span>Status</span></th>
                <td>{{ project.status }} - {{ project.isInSync ? "Up to Date" : "Out of Sync"}}
                    <button *ngIf="!project.isInSync" class="btn btn-link" (click)="sync(project)">
                        <span class="fa fa-refresh fa-size-x2"></span>
                    </button>
                </td>
            </tr>
            </tbody>
        </table >
    `,
    styleUrls: ['./app/config/config.component.css']
})

export class ProjectCardComponent {

    @Input() project: IProject;

    constructor(
        private alert: AlertService,
        private projectSvr: ProjectService
    ) {
    }

    delete(prj: IProject) {
        this.projectSvr.Delete(prj)
            .subscribe(res => {
            }, err => {
                this.alert.error("Delete ERROR: " + err);
            });
    }

    sync(prj: IProject) {
        this.projectSvr.Sync(prj)
            .subscribe(res => {
            }, err => {
                this.alert.error("ERROR: " + err);
            });
    }

}

// Remove APPS. prefix if translate has failed
@Pipe({
    name: 'readableType'
})

export class ProjectReadableTypePipe implements PipeTransform {
    transform(type: ProjectType): string {
        switch (type) {
            case ProjectType.NATIVE_PATHMAP: return "Native (path mapping)";
            case ProjectType.SYNCTHING: return "Cloud (Syncthing)";
            default: return String(type);
        }
    }
}