pending.component.ts 7.78 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
import { ItemDetail } from 'src/app/models/itemDetail.model';
5 6 7
import { ItemDetailService } from 'src/app/service/item-detail.service';
import { RoomDetail } from 'src/app/models/RoomDetail.model';
import { RoomDetailService } from 'src/app/service/room-detail.service';
8
import { Equirment } from 'src/app/models/equirment.model';
9
import { MyRoom, Room } from 'src/app/models/rooms.model';
10
import { FormControl, FormGroup, Validators } from '@angular/forms';
11 12 13 14

@Component({
  selector: 'app-pending',
  templateUrl: './pending.component.html',
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
  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);
  }
`]
41
})
42

43
export class PendingComponent implements OnInit {
44
  time = { hour: 13, minute: 30 };
45

46 47
  closeResult = '';

48 49
  listItemDetail : ItemDetail[] = [];
  listRoomDetail : RoomDetail[] = [];
50

51 52 53 54 55 56 57 58
  page = 1;
  pageSize = 10;
  collectionSize = 0;

  pageListRoom = 1;
  pageSizeListRoom = 10;
  collectionSizeListRoom = 0;

59
  modelEquirment = new Equirment();
60 61 62
  modelRoom = new MyRoom();
  modelItemDetail = new ItemDetail();
  modelRoomDetail = new RoomDetail();
63
  
64 65 66 67 68
  hoveredDate: NgbDate | null = null;

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

69 70
  myFormRoom: FormGroup;
  myFormEquir: FormGroup;
71

72
  constructor(private calendar: NgbCalendar, public formatter: NgbDateParserFormatter, private modalService: NgbModal, private ItemDetailService: ItemDetailService, private RoomDetailService: RoomDetailService) {
73 74
    this.fromDate = calendar.getToday();
    this.toDate = calendar.getNext(calendar.getToday(), 'd', 10);
75
    this.refreshItemDetail();
76 77
  }

78 79
  refreshItemDetail() {
    this.listItemDetail = this.listItemDetail
80
      .map((item, i) => ({ id: i + 1, ...item }))
81 82 83
      .slice((this.page - 1) * this.pageSize, (this.page - 1) * this.pageSize + this.pageSize);
  }

84 85 86 87 88 89 90 91 92 93 94
  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;
    }
  }

95 96 97 98 99 100 101
  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)}`;
    });
  }
102 103 104 105 106 107
  date='10-12-2561'
  show(a:string){
    console.log(a)
  }
  sDate = ""
  eDate = ""
108 109
  openItemDetail(content : string ,item : ItemDetail) {
    this.modelItemDetail = item ;
110

111
   
112 113 114 115
    let sDate = this.modelItemDetail.sDate.split('/')
    this.sDate = sDate[0]+"-"+sDate[1]+"-"+sDate[2]
    let eDate = this.modelItemDetail.eDate.split('/')
    this.eDate = eDate[0]+"-"+eDate[1]+"-"+eDate[2]
116 117 118 119 120 121 122 123 124 125 126 127 128 129
    

    this.myFormEquir = new FormGroup({
      userNameForm: new FormControl(this.modelItemDetail.userName, [Validators.required]),
      eTelephone: new FormControl(this.modelItemDetail.eTelephone, [Validators.required]),
      email: new FormControl(this.modelItemDetail.email, [Validators.required, Validators.email]),
      eqName: new FormControl(this.modelItemDetail.equirment.eqName, [Validators.required]),
      eqDesc: new FormControl(this.modelItemDetail.equirment.eqDesc, [Validators.required]),
      eqType: new FormControl(this.modelItemDetail.equirment.eqType, [Validators.required]),
      sDate: new FormControl(this.modelItemDetail.sDate, [Validators.required]),
      eDate: new FormControl(this.modelItemDetail.eDate, [Validators.required]),
      sTime: new FormControl(this.modelItemDetail.sTime, [Validators.required]),
      eTime: new FormControl(this.modelItemDetail.eTime, [Validators.required]),
      Quantity: new FormControl(this.modelItemDetail.Quantity, [Validators.required]),
130
      remark: new FormControl(this.modelItemDetail.remark),
131 132
      eStatus: new FormControl(this.modelItemDetail.eStatus)
    })
133 134 135 136 137 138
    this.modalService.open(content, { ariaLabelledBy: 'modal-basic-title' }).result.then((result) => {
      this.closeResult = `Closed with: ${result}`;
    }, (reason) => {
      this.closeResult = `Dismissed ${this.getDismissReason(reason)}`;
    });
  }
139

140 141
  openRoomDetail(content : string ,item : RoomDetail) {
    this.modelRoomDetail = item ;
142

143 144 145 146
    let sDate = this.modelRoomDetail.sDate.split('/')
    this.sDate = sDate[0]+"-"+sDate[1]+"-"+sDate[2]
    let eDate = this.modelRoomDetail.eDate.split('/')
    this.eDate = eDate[0]+"-"+eDate[1]+"-"+eDate[2]
147 148 149 150 151 152 153 154 155 156 157 158

    this.myFormRoom = new FormGroup({
      userNameForm: new FormControl(this.modelRoomDetail.userName, [Validators.required]),
      rTelephone: new FormControl(this.modelRoomDetail.rTelephone, [Validators.required]),
      email: new FormControl(this.modelRoomDetail.email, [Validators.required, Validators.email]),
      rName: new FormControl(this.modelRoomDetail.room.rName, [Validators.required]),
      rDesc: new FormControl(this.modelRoomDetail.room.rDesc, [Validators.required]),
      rType: new FormControl(this.modelRoomDetail.room.rType, [Validators.required]),
      sDate: new FormControl(this.modelRoomDetail.sDate, [Validators.required]),
      eDate: new FormControl(this.modelRoomDetail.eDate, [Validators.required]),
      sTime: new FormControl(this.modelRoomDetail.sTime, [Validators.required]),
      eTime: new FormControl(this.modelRoomDetail.eTime, [Validators.required]),
159
      remark: new FormControl(this.modelRoomDetail.remark),
160 161 162
      rStatus: new FormControl(this.modelRoomDetail.rStatus)
    });

163 164 165 166 167
    this.modalService.open(content, { ariaLabelledBy: 'modal-basic-title' }).result.then((result) => {
      this.closeResult = `Closed with: ${result}`;
    }, (reason) => {
      this.closeResult = `Dismissed ${this.getDismissReason(reason)}`;
    });
168
    console.log("date",this.modelRoomDetail)
169 170
  }

171 172
  rDate(item: string, item2: string){
    let Dates = item.split("-")
173
    let dates = Dates[0]+"/"+Dates[1]+"/"+Dates[2]
174 175 176 177 178 179 180 181 182
    
    if(item2=="sdate"){
      this.modelItemDetail.sDate = dates
    }
    if(item2=="edate"){
      this.modelItemDetail.eDate = dates
    }
  } 

183

184 185 186 187 188 189 190 191 192 193
  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}`;
    }
  }

194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210
  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;
  }

211
  ngOnInit() {
212 213
    this.listItemDetail = this.ItemDetailService.getListItemDetail();
    this.listRoomDetail = this.RoomDetailService.getListRoomDetail();
214
    this.collectionSizeListRoom = this.listRoomDetail.length;
215 216 217
  }

}
218 219 220

export class NgbdDropdownBasic {
}