This repository has been archived on 2023-06-20. You can view files and clone it, but cannot push or open issues or pull requests.
Angular_App/src/app/pages/send-form/send-form.component.ts
RakVhalate 44049bf900
All checks were successful
continuous-integration/drone/push Build is passing
Small Changes
2022-12-17 20:57:29 +05:00

49 lines
1.1 KiB
TypeScript

import { Component, Output, EventEmitter, Input, OnInit } from '@angular/core';
import { showAlert } from 'src/app/const/alert';
import { ApiChatService } from 'src/app/services/api-chat.service';
import * as vars from "../../const/api"
@Component({
selector: 'app-send-form',
templateUrl: './send-form.component.html',
styleUrls: ['./send-form.component.css']
})
export class SendFormComponent implements OnInit {
@Input() board: string;
showForm:boolean = false;
// inputText: string;
inputImages: string[] = [];
@Output() sendInfoToCreate = new EventEmitter();
constructor(
public apiChatService: ApiChatService) { }
create(text:string){
var toSend = {
text: text,
images: this.inputImages
}
this.sendInfoToCreate.emit(toSend)
toSend.text = '';
toSend.images = [];
}
sendPic(event: any) {
this.apiChatService.sendpic(event.target.files[0]).subscribe(
response => {
response = response.value.toString();
this.inputImages.push(response);
showAlert(`Картинка ${response} добавлена`, "#ff0a36")
});
}
ngOnInit(): void {
}
}