anish/text-input-entry
Composer 安装命令:
composer require anish/text-input-entry
包简介
A Filament plugin for editable text input entries in infolists
README 文档
README
A Filament plugin that provides an editable text input entry component for infolists. This component allows users to edit text fields directly in the infolist view without navigating to an edit page.
Features
- ✨ Inline editing directly in infolist views
- 🎨 Customizable border styling
- ✅ Built-in validation support
- 🔔 Instant success notifications
- 🎯 Icon support (before/after)
- 🌈 Color customization
- �� Responsive design
- 🔄 Compatible with Filament v3, v4, and v5
Requirements
- PHP 8.1+
- Filament 3.0+, 4.0+, or 5.0+
- Laravel 10+
Installation
You can install the package via Composer:
composer require anish/text-input-entry
Setup
1. Install Assets
After installing the package, publish and build the assets:
npm install npm run build
2. Use the Trait in Your View Page
Add the TextInputEntryTrait to your Filament resource's view page:
<?php namespace App\Filament\Resources\Users\Pages; use Filament\Resources\Pages\ViewRecord; use Anish\TextInputEntry\Traits\TextInputEntryTrait; class ViewUser extends ViewRecord { use TextInputEntryTrait; protected static string $resource = UserResource::class; }
3. Use the Component in Your Infolist
Use TextInputEntry in your infolist schema:
<?php namespace App\Filament\Resources\Users\Schemas; use Filament\Schemas\Schema; use Anish\TextInputEntry\Infolists\Components\TextInputEntry; use Filament\Support\Enums\TextSize; use Illuminate\Support\Facades\Auth; class UserInfolist { public static function configure(Schema $schema): Schema { return $schema ->components([ TextInputEntry::make('name') ->editable(true) ->size(TextSize::Large) ->rules(['required', 'string', 'max:255']) ->border(true), TextInputEntry::make('email') ->editable(Auth::user()->can('update email')) ->label('Email address') ->rules(['required', 'email']) ->border(true), ]); } }
Usage
Basic Usage
TextInputEntry::make('field_name') ->editable(true) ->border(true)
With Validation
TextInputEntry::make('email') ->rules(['required', 'email', 'max:255']) ->editable(true)
With Custom Update Callback
TextInputEntry::make('name') ->updateStateUsing(function ($value, $record) { $record->name = $value; $record->save(); // Custom logic here Log::info("Name updated to: {$value}"); })
Without Border
TextInputEntry::make('name') ->border(false) // Hides the border, shows as plain text until focused
With Icon
TextInputEntry::make('email') ->icon('heroicon-o-envelope') ->iconPosition('before')
Conditional Editing
TextInputEntry::make('name') ->editable(fn ($record) => auth()->user()->can('update', $record))
Available Methods
editable(bool|Closure $editable)- Enable/disable editingborder(bool|Closure $showBorder)- Show/hide border (default: true)rules(array|string|Closure $rules)- Validation rulesupdateStateUsing(Closure $callback)- Custom update callbacksize(TextSize $size)- Text size (Small, Medium, Large)color(string|array $color)- Text coloricon(string $icon)- Icon nameiconPosition(string $position)- Icon position ('before' or 'after')placeholder(string $placeholder)- Input placeholder
Compatibility
This package supports:
- ✅ Filament v3.0+
- ✅ Filament v4.0+
- ✅ Filament v5.0+
The package automatically detects and works with all supported versions.
License
MIT
Author
anishregmi17
anish/text-input-entry 适用场景与选型建议
anish/text-input-entry 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 427 次下载、GitHub Stars 达 0, 最近一次更新时间为 2025 年 12 月 07 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 anish/text-input-entry 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 anish/text-input-entry 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 427
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 17
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2025-12-07