This commit is contained in:
tiago.kayaya
2021-09-14 10:48:28 +01:00
parent 4ad15f822c
commit a59a4749ca
2 changed files with 16 additions and 14 deletions
@@ -93,17 +93,17 @@
border-radius: 8px;
}
.info-text{
/* width: 322px; */
width: em(422px);
background: #fef4c5;
text-align: center;
font-size: 13px;
color: #262420;
padding: 10px;
margin: 10px auto;
line-height: 1.2rem;
/* margin: 15px 0px 15px 0px; */
border-radius: 8px;
display: flex;
width: fit-content;
height: auto;
background: #fef4c5;
text-align: center;
font-size: 13px;
color: #262420;
padding: 10px;
margin: 10px auto;
line-height: 1.2rem;
border-radius: 8px;
}
.info-text-leave{
display: flex;
@@ -14,6 +14,7 @@ import { TimeService } from 'src/app/services/functions/time.service';
import { FileLoaderService } from 'src/app/services/file/file-loader.service';
import { FileToBase64Service } from 'src/app/services/file/file-to-base64.service';
import { FileService } from 'src/app/services/functions/file.service';
import { ToastService } from 'src/app/services/toast.service';
@Component({
selector: 'app-group-messages',
@@ -61,6 +62,7 @@ export class GroupMessagesPage implements OnInit, AfterViewInit, OnDestroy {
private fileLoaderService: FileLoaderService,
private fileToBase64Service: FileToBase64Service,
private fileService: FileService,
private toastService: ToastService,
) {
this.loggedUserChat = authService.ValidatedUserChat['data'];
this.isGroupCreated = true;
@@ -335,9 +337,6 @@ export class GroupMessagesPage implements OnInit, AfterViewInit, OnDestroy {
}
else if(res['data'] == "takePicture"){
let data = this.fileService.takePicture();
alert(data);
alert(data.name);
if(data.name != null){
let body = {
"message":
@@ -357,6 +356,9 @@ export class GroupMessagesPage implements OnInit, AfterViewInit, OnDestroy {
});
}
else{
this.toastService.badRequest("Não foi possível adicionar a fotografia!");
}
}
});
}