pending.component.ts 4.64 KB
Newer Older
1
import { Component, OnInit } from '@angular/core';
2
import { NgbDate, NgbCalendar, NgbDateParserFormatter } from '@ng-bootstrap/ng-bootstrap';
3
import { NgbModal, ModalDismissReasons } from '@ng-bootstrap/ng-bootstrap';
4 5
import { itemDetail } from 'src/app/models/itemDetail.model';
import { itemDetailService } from 'src/app/service/item-detail.service';
6 7
import { roomDetail } from 'src/app/models/roomDetail.model';
import { roomDetailService } from 'src/app/service/room-detail.service';
8 9
import { Equirment } from 'src/app/models/equirment.model';
import { Room } from 'src/app/models/rooms.model';
10 11 12 13

@Component({
  selector: 'app-pending',
  templateUrl: './pending.component.html',
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
  styleUrls: ['./pending.component.scss'],
  styles: [`
  .form-group.hidden {
    width: 0;
    margin: 0;
    border: none;
    padding: 0;
  }
  .custom-day {
    text-align: center;
    padding: 0.185rem 0.25rem;
    display: inline-block;
    height: 2rem;
    width: 2rem;
  }
  .custom-day.focused {
    background-color: #e6e6e6;
  }
  .custom-day.range, .custom-day:hover {
    background-color: rgb(2, 117, 216);
    color: white;
  }
  .custom-day.faded {
    background-color: rgba(2, 117, 216, 0.5);
  }
`]
40
})
41

42 43 44 45
export class PendingComponent implements OnInit {
  page = 1;
  pageSize = 10;

46 47
  closeResult = '';

48
  listitemDetail : itemDetail[] = [];
49
  listroomDetail : roomDetail[] = [];
50 51 52 53 54

  modelEquirment = new Equirment();
  modelRoom = new Room();
  modelitemDetail = new itemDetail();
  modelroomDetail = new roomDetail();
55 56
  
  collectionSize = this.listitemDetail.length;
57 58 59 60 61
  hoveredDate: NgbDate | null = null;

  fromDate: NgbDate | null;
  toDate: NgbDate | null;

62
  constructor(private calendar: NgbCalendar, public formatter: NgbDateParserFormatter, private modalService: NgbModal, private itemDetailService: itemDetailService, private roomDetailService: roomDetailService) {
63 64
    this.fromDate = calendar.getToday();
    this.toDate = calendar.getNext(calendar.getToday(), 'd', 10);
65
    this.refreshitemDetail();
66 67
  }

68
  refreshitemDetail() {
69
    this.listitemDetail = this.listitemDetail
70
      .map((item, i) => ({ id: i + 1, ...item }))
71 72 73
      .slice((this.page - 1) * this.pageSize, (this.page - 1) * this.pageSize + this.pageSize);
  }

74 75 76 77 78 79 80 81 82 83 84
  onDateSelection(date: NgbDate) {
    if (!this.fromDate && !this.toDate) {
      this.fromDate = date;
    } else if (this.fromDate && !this.toDate && date && date.after(this.fromDate)) {
      this.toDate = date;
    } else {
      this.toDate = null;
      this.fromDate = date;
    }
  }

85 86 87 88 89 90 91 92
  open(content) {
    this.modalService.open(content, { ariaLabelledBy: 'modal-basic-title' }).result.then((result) => {
      this.closeResult = `Closed with: ${result}`;
    }, (reason) => {
      this.closeResult = `Dismissed ${this.getDismissReason(reason)}`;
    });
  }

93 94 95 96 97 98 99 100 101 102
  openItemDetail(content : string ,item : itemDetail) {
    this.modelitemDetail = item ;
    console.log(item);
    this.modalService.open(content, { ariaLabelledBy: 'modal-basic-title' }).result.then((result) => {
      this.closeResult = `Closed with: ${result}`;
    }, (reason) => {
      this.closeResult = `Dismissed ${this.getDismissReason(reason)}`;
    });
  }

103 104 105 106 107 108 109 110 111 112 113
  openRoomDetail(content : string ,item : roomDetail) {
    this.modelroomDetail = item ;
    console.log(item);
    this.modalService.open(content, { ariaLabelledBy: 'modal-basic-title' }).result.then((result) => {
      this.closeResult = `Closed with: ${result}`;
    }, (reason) => {
      this.closeResult = `Dismissed ${this.getDismissReason(reason)}`;
    });
  }


114 115 116 117 118 119 120 121 122 123
  private getDismissReason(reason: any): string {
    if (reason === ModalDismissReasons.ESC) {
      return 'by pressing ESC';
    } else if (reason === ModalDismissReasons.BACKDROP_CLICK) {
      return 'by clicking on a backdrop';
    } else {
      return `with: ${reason}`;
    }
  }

124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
  isHovered(date: NgbDate) {
    return this.fromDate && !this.toDate && this.hoveredDate && date.after(this.fromDate) && date.before(this.hoveredDate);
  }

  isInside(date: NgbDate) {
    return this.toDate && date.after(this.fromDate) && date.before(this.toDate);
  }

  isRange(date: NgbDate) {
    return date.equals(this.fromDate) || (this.toDate && date.equals(this.toDate)) || this.isInside(date) || this.isHovered(date);
  }

  validateInput(currentValue: NgbDate | null, input: string): NgbDate | null {
    const parsed = this.formatter.parse(input);
    return parsed && this.calendar.isValid(NgbDate.from(parsed)) ? NgbDate.from(parsed) : currentValue;
  }

141 142
  ngOnInit() {
    this.listitemDetail = this.itemDetailService.getListitemDetail();
143
    this.listroomDetail = this.roomDetailService.getListroomDetail();
144
    console.log(this.listitemDetail);
145 146 147
  }

}
148 149 150

export class NgbdDropdownBasic {
}