escolalms/templates-pdf

Escola Headless LMS Templates for pdf

Installs: 7 050

Dependents: 1

Suggesters: 0

Security: 0

Stars: 1

Watchers: 2

Forks: 0

Open Issues: 2

Type:package

0.1.24 2024-03-06 13:35 UTC

README

Package for generating PDFs from configurable Templates.

swagger codecov Tests PHPUnit in environments Maintainability Test Coverage downloads downloads downloads

Purpose

This package allows you to create PDFs generated after a specific Event is emitted in Laravel / LMS app.

Each PDF Template has a corresponding class describing available variables that can be used in the Template (which will be stored in database and editable through admin panel). Templates are saved as serialized fabric.js canvas containing these variables which will be replaced during PDF generation with correct data extracted from Event.

Class describing Template Variables must be registered using Template facade from EscolaLms\Template package, where you specify which Event it is associated with it and which Channel it is sent through (e.g. EscolaLms\TemplatesPdf\Core\PdfChannel which is defined in this package).

Installing

  • composer require escolalms/templates-pdf
  • php artisan db:migrate
  • php artisan db:seed --class="EscolaLms\TemplatesPdf\Database\Seeders\TemplatesPdfSeeder" to create default templates for all Variable/Event pairs registered for PDF channel

Dependencies

  • EscolaLms\Templates core Templates package
  • optional: EscolaLms\Courses for generating PDFs related to Courses

Usage

Defining Templates

  1. Create Event which triggers generation of PDF using specified template. This event must implement method getUser() returning User model from LMS Core package.
  2. Create class defining template Variables, which you will use in PDF template,
  3. Associate your class describing template Variables with correct Event and Channel. Use EscolaLms\Templates\Facades\Template::register(Event class, EscolaLms\TemplatesPdf\Core\PdfChannel::class, Variable class); method.
  4. Use admin panel or /api/admin/templates web API to create/edit templates associated with this Variable/Event/Channel set. See Template package for more information.

Tests

Run ./vendor/bin/phpunit --filter 'EscolaLms\\TemplatesPdf\\Tests' to run tests. See tests folder as it contains a basic implementation of Variables class (description of what Template can/must contain) with minimal customisation - a quite good starting point for creating your own.

Test details: Maintainability Test Coverage

Usage on front end

Admin panel

Left menu

Menu

List of templates

List of templates

Creating/editing template

Creating/editing template

Permissions

Permissions are defined in Enum and seeded in Seeder.

Roadmap. Todo. Troubleshooting

  • ???