2020-04-14 11:28:33 +02:00
|
|
|
import { Component, Input, OnInit } from '@angular/core';
|
2020-05-01 19:10:17 +02:00
|
|
|
import { ClipboardService } from 'ngx-clipboard';
|
2020-06-16 18:40:48 +02:00
|
|
|
|
2021-04-29 10:41:47 +02:00
|
|
|
import { ToastService } from '../../../../src/app/core/services/toast.service';
|
2020-02-04 11:35:09 +01:00
|
|
|
|
|
|
|
@Component({
|
2020-04-22 12:56:18 +02:00
|
|
|
selector: 'app-copy-text',
|
2020-04-21 10:50:26 +02:00
|
|
|
templateUrl: './copy-text.component.html',
|
|
|
|
styleUrls: ['./copy-text.component.scss'],
|
2020-02-04 11:35:09 +01:00
|
|
|
})
|
|
|
|
export class CopyTextComponent implements OnInit {
|
2020-05-01 19:10:17 +02:00
|
|
|
@Input() public textToCopy: string;
|
|
|
|
public displayContentToCopy = false;
|
2020-02-04 11:35:09 +01:00
|
|
|
|
2020-06-16 18:40:48 +02:00
|
|
|
constructor(private _clipboardService: ClipboardService, private toastService: ToastService) {}
|
2020-02-04 11:35:09 +01:00
|
|
|
|
2020-05-01 19:10:17 +02:00
|
|
|
ngOnInit(): void {}
|
2020-02-04 11:35:09 +01:00
|
|
|
|
2020-05-01 19:10:17 +02:00
|
|
|
public copy(): void {
|
|
|
|
this._clipboardService.copyFromContent(this.textToCopy);
|
2020-06-16 18:40:48 +02:00
|
|
|
this.toastService.display(`Texte copié : ${this.textToCopy}`);
|
2020-04-21 10:50:26 +02:00
|
|
|
}
|
2020-02-04 11:35:09 +01:00
|
|
|
}
|