当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript service.PdfDocumentService.download方法代码示例

本文整理汇总了TypeScript中app/core/ui-services/pdf-document.service.PdfDocumentService.download方法的典型用法代码示例。如果您正苦于以下问题:TypeScript service.PdfDocumentService.download方法的具体用法?TypeScript service.PdfDocumentService.download怎么用?TypeScript service.PdfDocumentService.download使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在app/core/ui-services/pdf-document.service.PdfDocumentService的用法示例。


在下文中一共展示了service.PdfDocumentService.download方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: exportUserList

 /**
  * Export a participant list
  * @param users: The users to appear on that list
  *
  */
 public exportUserList(users: ViewUser[]): void {
     const filename = this.translate.instant('List of participants');
     const metadata = {
         title: filename
     };
     this.pdfDocumentService.download(this.userPdfService.createUserListDocDef(users), filename, metadata);
 }
开发者ID:CatoTH,项目名称:OpenSlides,代码行数:12,代码来源:user-pdf-export.service.ts

示例2: exportSingleUserAccessPDF

 /**
  * Exports a single user with access information to PDF
  *
  * @param user The user to export
  */
 public exportSingleUserAccessPDF(user: ViewUser): void {
     const doc = this.userPdfService.userAccessToDocDef(user);
     const filename = `${this.translate.instant('Access-data')} ${user.short_name}`;
     const metadata = {
         title: filename
     };
     this.pdfDocumentService.download(doc, filename, metadata);
 }
开发者ID:CatoTH,项目名称:OpenSlides,代码行数:13,代码来源:user-pdf-export.service.ts

示例3: exportSingleMotion

 /**
  * Exports a single motions to PDF
  *
  * @param motion The motion to export
  * @param lnMode the desired line numbering mode
  * @param crMode the desired change recomendation mode
  */
 public exportSingleMotion(motion: ViewMotion, lnMode?: LineNumberingMode, crMode?: ChangeRecoMode): void {
     const doc = this.motionPdfService.motionToDocDef(motion, lnMode, crMode);
     const filename = `${this.translate.instant('Motion')} ${motion.identifierOrTitle}`;
     const metadata = {
         title: filename
     };
     this.pdfDocumentService.download(doc, filename, metadata);
 }
开发者ID:CatoTH,项目名称:OpenSlides,代码行数:15,代码来源:motion-pdf-export.service.ts

示例4: exportPersonalNote

 /**
  * Exports the given personalNote with some short information about the
  * motion the note refers to
  *
  * @param note
  * @param motion
  */
 public exportPersonalNote(note: PersonalNoteContent, motion: ViewMotion): void {
     const doc = this.motionPdfService.textToDocDef(note.note, motion, 'Personal note');
     const filename = `${motion.identifierOrTitle} - ${this.translate.instant('Personal note')}`;
     const metadata = {
         title: filename
     };
     this.pdfDocumentService.download(doc, filename, metadata);
 }
开发者ID:CatoTH,项目名称:OpenSlides,代码行数:15,代码来源:motion-pdf-export.service.ts

示例5: exportSingleAssignment

 /**
  * Generates an pdf out of a given assignment and saves it as file
  *
  * @param assignment the assignment to export
  */
 public exportSingleAssignment(assignment: ViewAssignment): void {
     const doc = this.assignmentPdfService.assignmentToDocDef(assignment);
     const filename = `${this.translate.instant('Election')}_${assignment.title}`;
     const metadata = {
         title: filename
     };
     this.pdfDocumentService.download(doc, filename, metadata);
 }
开发者ID:CatoTH,项目名称:OpenSlides,代码行数:13,代码来源:assignment-pdf-export.service.ts

示例6: exportComment

 /**
  * Exports the given comment with some short information about the
  * motion the note refers to
  *
  * @param comment
  * @param motion
  */
 public exportComment(comment: ViewMotionCommentSection, motion: ViewMotion): void {
     const motionComment = motion.getCommentForSection(comment);
     if (motionComment && motionComment.comment) {
         const doc = this.motionPdfService.textToDocDef(motionComment.comment, motion, comment.name);
         const filename = `${motion.identifierOrTitle} - ${comment.name}`;
         const metadata = { title: filename };
         this.pdfDocumentService.download(doc, filename, metadata);
     }
 }
开发者ID:CatoTH,项目名称:OpenSlides,代码行数:16,代码来源:motion-pdf-export.service.ts

示例7: exportMultipleUserAccessPDF

 /**
  * Exports multiple users with access information to a collection of PDFs
  *
  * @param Users
  */
 public exportMultipleUserAccessPDF(users: ViewUser[]): void {
     const doc: object[] = [];
     users.forEach(user => {
         doc.push(this.userPdfService.userAccessToDocDef(user));
         doc.push({ text: '', pageBreak: 'after' });
     });
     const filename = this.translate.instant('Access-data');
     const metadata = {
         title: filename
     };
     this.pdfDocumentService.download(doc, filename, metadata);
 }
开发者ID:CatoTH,项目名称:OpenSlides,代码行数:17,代码来源:user-pdf-export.service.ts

示例8: exportMotionCatalog

 /**
  * Exports multiple motions to a collection of PDFs
  *
  * @param motions the motions to export
  * @param lnMode lineNumbering Mode
  * @param crMode Change Recommendation Mode
  * @param contentToExport Determine to determine with text and/or reason
  * @param infoToExport Determine the meta info to export
  * @param commentsToExport Comments (by id) to export
  */
 public exportMotionCatalog(
     motions: ViewMotion[],
     lnMode?: LineNumberingMode,
     crMode?: ChangeRecoMode,
     contentToExport?: string[],
     infoToExport?: InfoToExport[],
     commentsToExport?: number[]
 ): void {
     const doc = this.pdfCatalogService.motionListToDocDef(
         motions,
         lnMode,
         crMode,
         contentToExport,
         infoToExport,
         commentsToExport
     );
     const filename = this.translate.instant(this.configService.instant<string>('motions_export_title'));
     const metadata = {
         title: filename
     };
     this.pdfDocumentService.download(doc, filename, metadata);
 }
开发者ID:CatoTH,项目名称:OpenSlides,代码行数:32,代码来源:motion-pdf-export.service.ts


注:本文中的app/core/ui-services/pdf-document.service.PdfDocumentService.download方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。