comp-uploader-hwobs.component.ts 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. import { Component, OnInit,Input,Output,EventEmitter } from '@angular/core';
  2. import { HwobsProvider } from '../hwobs.service';
  3. @Component({
  4. selector: 'comp-uploader-hwobs',
  5. templateUrl: './comp-uploader-hwobs.component.html',
  6. styleUrls: ['./comp-uploader-hwobs.component.scss'],
  7. standalone: true,
  8. })
  9. export class CompUploaderHwobsComponent implements OnInit {
  10. @Input() url:string = "";
  11. @Output() onUrlChange:EventEmitter<string> = new EventEmitter<string>()
  12. uploader:HwobsProvider|undefined
  13. constructor() { }
  14. ngOnInit() {
  15. this.uploader = new HwobsProvider({
  16. bucketName:"nova-cloud",
  17. prefix:"dev/jxnu/storage/",
  18. host:"https://app.fmode.cn/",
  19. access_key_id:"XSUWJSVMZNHLWFAINRZ1",
  20. secret_access_key:"P4TyfwfDovVNqz08tI1IXoLWXyEOSTKJRVlsGcV6"
  21. });
  22. }
  23. file:File|undefined
  24. fileData:any = ""
  25. fileList:File[] = []
  26. async upload(){
  27. let filename = this.file?.name;
  28. let dateStr = `${new Date().getFullYear()}${new Date().getMonth()+1}${new Date().getDate()}`;
  29. let hourStr = `${new Date().getHours()}${new Date().getMinutes()+1}${new Date().getSeconds()}`;
  30. let key = `${dateStr}/${hourStr}-${filename}`;
  31. // let key = `storage/${filename}`
  32. if(this.file){
  33. let attachment = await this.uploader?.uploadFile(this.file,key);
  34. console.log(attachment);
  35. this.url = attachment?.get("url");
  36. this.onUrlChange.emit(this.url);
  37. }
  38. }
  39. /**
  40. * 文件选择器 选择文件触发事件
  41. * @param event
  42. */
  43. async onFileChange(event:any){
  44. console.log(event)
  45. // 将选择的文件列表,赋值给fileList
  46. this.fileList = event?.target?.files;
  47. // 默认将第一个文件,显示在展示区域
  48. this.setFile(event?.target?.files?.[0]);
  49. }
  50. /**
  51. * 设置展示区域文件
  52. * @param file
  53. */
  54. async setFile(file:any){
  55. // 将文件设置为展示区域文件
  56. this.file = file
  57. }
  58. }