consignr/filament-print-node
Composer 安装命令:
composer require consignr/filament-print-node
包简介
A collection of filament resources to manage your printnode account from the admin panel
README 文档
README
A collection of filament resources to manage your printnode account from the admin panel
Usage
The plugin integrates PrintNode functionality in your filament panel(s), allowing admins to quickly access Computer, Printer and PrintJob resources. It provides custom actions to send print requests to the PrintNode api.
Installation
You can install the package via composer then run the installation command:
composer require consignr/filament-print-node
Registering the plugin
use Consignr\FilamentPrintNode\FilamentPrintNodePlugin; public function panel(Panel $panel): Panel { return $panel ->plugins([ FilamentPrintNodePlugin::make(), ]) }
Configure the navigation settings for print node cluster by chaining additonal methods after make().
use Consignr\FilamentPrintNode\FilamentPrintNodePlugin; public function panel(Panel $panel): Panel { return $panel ->plugins([ FilamentPrintNodePlugin::make() ->navigationLabel('Printing') // Set the label for the cluster ->navigationGroup('Settings') // Set the group for the cluster ->navigationIcon('heroicon-o-printer') // Set the icon for the cluster ->navigationSort(3) // Set sort order for the cluster ]) }
Further configuration options can be applied for each resource. The below example configures the computer
resource using the ->computerResource() method. Equivelant methods exist for the other resources, ->printerResource()
and ->printJobResource().
use Consignr\FilamentPrintNode\FilamentPrintNodePlugin; public function panel(Panel $panel): Panel { return $panel ->plugins([ FilamentPrintNodePlugin::make() ->computerResource( label: 'Device', pluralLabel: 'Devices', navigationLabel: 'Tablets', navigationIcon: 'heroicon-o-device-tablet', navigationSort: 2, navigationBadgeCount: fn (Computer $record): int => $record->count() ) ]) }
Sending PrintJob requests
Add the the custom table action to your desired resource
use Consignr\FilamentPrintNode\Actions\CreatePrintJobAction; use Consignr\FilamentPrintNode\Enums\ContentType; use Illuminate\Database\Eloquent\Model; use Illuminate\Support\Facades\Storage; public static function table(Table $table): Table { return $table ->columns([ // ]) ->filters([ // ]) ->actions([ CreatePrintJobAction::make() ->printerId(1234567) // Provide the ID for the printer ->contentType(ContentType::PdfBase64) // Provide the content type PdfUri | PdfBase64 | RawUri | RawBase64 ->content(function (Model $record, CreatePrintJobAction $action): string { if (! Storage::disk('public')->exists($record->path)) { Notification::make() ->warning() ->title('File Not Found') ->body('The target file does not exist.') ->send(); $action->halt(); } return base64_encode(Storage::disk('public')->get($record->path)); }) // Uri where the document can be downloaded or base64 encoded document ->title() // Provide a title to be given to the print job. This is the name which will appear in the operating system's print queue. ->source() // Provide a text description of how the print job was created or where the print job originated. ->expiresAfter() // Set the the maximum number of seconds PrintNode should retain this print job in the event that the print job cannot be printed immediately. Defaults to 14 days or 1209600 seconds ->quantity() // A positive integer specifying the number of times this print job should be delivered to the print queue. ]); }
consignr/filament-print-node 适用场景与选型建议
consignr/filament-print-node 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 5 次下载、GitHub Stars 达 0, 最近一次更新时间为 2024 年 09 月 29 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 consignr/filament-print-node 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 consignr/filament-print-node 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 5
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 14
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2024-09-29