martin-ro/filament-charcount-field

This package is abandoned and no longer maintained. No replacement package was suggested.

Filament fields with character count.

0.1.5 2022-06-03 04:51 UTC

This package is auto-updated.

Last update: 2023-02-03 06:22:00 UTC


README

filament-charcounted-field

Character counted TextInput & Textarea for Filament.

This package provides a TextInput and Textarea component for Filament Admin and Forms with a character count display.

TextInput

use MartinRo\FilamentCharcountField\Components\CharcountedTextInput;

CharcountedTextInput::make('title')
    ->minCharacters(5)
    ->maxCharacters(10),

Textarea

use MartinRo\FilamentCharcountField\Components\CharcountedTextarea;

CharcountedTextarea::make('title')
    ->minCharacters(5)
    ->maxCharacters(10),

Here's an example of how the components looks like: Example of Filament Charcounted Field components

Demo:

Demo of Filament Charcounted Field components

Installation

First, install the packages:

composer require martin-ro/filament-charcount-field

Add the components to a Filament resource form:

<?php

namespace App\Filament\Resources;

// ...
use MartinRo\FilamentCharcountField\Components\CharcountedTextInput;
use MartinRo\FilamentCharcountField\Components\CharcountedTextarea;

class PostResource extends Resource
{
    // ...
    public static function form(Form $form): Form
    {
        return $form->schema([
            // ...
            
            // TextInput
            CharcountedTextInput::make('title')
                ->label('Title')
                ->hintIcon('heroicon-o-code')
                ->hint('Title tag in header')
                ->helperText('While Google does not specify a length for title tags, usually the first 50–60 characters are displayed.')
                ->minCharacters(50)
                ->maxCharacters(60),
                           
           // Textarea 
            CharcountedTextarea::make('description')
                ->label('Description')
                ->rows(4)
                ->hintIcon('heroicon-o-code')
                ->hint('Meta description tag in header')
                ->helperText('Meta descriptions can technically be any length, but Google generally truncates snippets to ~155-160 characters.')
                ->minCharacters(155)
                ->maxCharacters(160),
                
            // ..
        ]);
    }
    // ...
}