123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161 |
- import { AuthServiceService } from './../../../shared/auth-service.service';
- import { ActivatedRoute, Params } from '@angular/router';
- import { Location } from '@angular/common';
- import { ExternalSerService } from './../../../shared/external-ser.service';
- import { Component, OnInit, ViewChild } from '@angular/core';
- import { NgxSpinnerService } from 'ngx-spinner';
- import { ToastrService } from 'ngx-toastr';
- import { NgForm } from '@angular/forms';
- @Component({
- selector: 'app-add-external',
- templateUrl: './add-external.component.html',
- styleUrls: ['./add-external.component.css']
- })
- export class AddExternalComponent implements OnInit {
- @ViewChild('f') externalFormData: NgForm;
- urlImg: string = '../../assets/image/avatar.png';
- imageBase64: string = '';
- photoType: string = '';
- checkChangeImage: boolean = false;
- checkValidImg: boolean = true;
- typeMode: boolean = false;
- photoEdit: boolean = true;
- typeLink: string = '';
- externalId: number;
- external = {
- name: '',
- name_en: '',
- link: '',
- status: '',
- ranking: '',
- };
- constructor(private toastr: ToastrService,
- private spinner: NgxSpinnerService,
- private location: Location,
- private route: ActivatedRoute,
- private authSer: AuthServiceService,
- private authService: AuthServiceService,
- private externalService: ExternalSerService) { }
- ngOnInit() {
-
- //show / hide notification search in header
- this.authSer.notificationLogin = true;
- this.authSer.showSearchHeader = false;
- this.authSer.showHeaderLogin = false;
- this.authSer.showHeaderDashBoard = true;
- this.authSer.showDashboardHeader = true;
- this.authSer.internalHeader = false;
-
- this.route.params.subscribe(
- (params: Params) => {
- if(params['typeExternalMode'] == 'edit') {
- this.spinner.show();
- this.typeMode = true;
- this.typeLink = 'تعديل';
- this.externalId = params['editExternalId'];
- this.externalService.getExternalData(this.externalId).subscribe(
- (responce) => {
- console.log(responce['external_service']);
- this.external.name = responce['external_service'].name;
- this.external.name_en = responce['external_service'].name_en;
- this.external.link = responce['external_service'].link;
- this.external.status = responce['external_service'].status;
- this.external.ranking = responce['external_service'].ranking;
- if(responce['external_service'].photo) {
- this.checkValidImg = false;
- this.urlImg = this.authService.pathImg + responce['external_service'].photo;
- }
- this.spinner.hide();
- },
- (error) => {
- console.log(error);
- }
- )
- } else {
- this.typeLink = 'أنشاء جديد';
- }
- }
- )
- };
- onFileChanges(event) {
- console.log(event);
- this.imageBase64 = event[0].base64;
- this.photoType = event[0].type.split('/');
- console.log(this.photoType[1]);
- this.checkChangeImage = true;
- this.checkValidImg = false;
- }
- getUrl(event) {
- if (event.target.files && event.target.files[0]) {
- var reader = new FileReader();
- reader.readAsDataURL(event.target.files[0]); // read file as data url
- reader.onload = (event) => { // called once readAsDataURL is completed
- this.urlImg = event.target['result'];
- }
- }
- }
- //on submitted
- onSubmitted() {
- const formData = this.externalFormData.value;
- if(this.checkChangeImage){
- formData['photo'] = this.imageBase64;
- formData['photo_type'] = this.photoType[1];
- } else {
- delete formData.photo;
- delete formData.photo_type;
- this.photoEdit = false;
- console.log(formData);
- }
- if(this.typeMode){
- if(this.photoType[1] != 'png' && this.photoEdit == true) {
- this.toastr.warning('الصوره يجب أن تكون بصيغه Png');
- } else if(this.imageBase64 == '' && this.photoEdit == true){
- this.toastr.warning('قم باختيار صوره !');
- } else {
- this.externalService.editExternal(formData, this.externalId).subscribe(
- (responce) => {
- console.log(responce);
- this.toastr.success('تمت التعديل بنجاح');
- this.location.back();
- },
- (error) => {
- console.log(error);
- this.toastr.error('خطأ في التعديل !');
- }
- );
- }
- } else {
- if(this.photoType[1] != 'png') {
- this.toastr.warning('الصوره يجب أن تكون بصيغه Png');
- } else if(this.imageBase64 == ''){
- this.toastr.warning('قم باختيار صوره !');
- } else {
- this.externalService.addExternal(formData).subscribe(
- (responce) => {
- console.log(responce);
- this.toastr.success('تمت الاضافه بنجاح');
- this.location.back();
- },
- (error) => {
- console.log(error);
- this.toastr.error('خطأ في الحفظ !');
- }
- );
- }
- }
- }
- }
|