Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/solutionforest/filament-tree
Filament Tree is a plugin for Filament Admin that creates a model management page with a heritage tree structure view. This plugin can be used to create menus and more.
https://github.com/solutionforest/filament-tree
filament-plugin filamentadmin filamentphp treeview
Last synced: 1 day ago
JSON representation
Filament Tree is a plugin for Filament Admin that creates a model management page with a heritage tree structure view. This plugin can be used to create menus and more.
- Host: GitHub
- URL: https://github.com/solutionforest/filament-tree
- Owner: solutionforest
- License: mit
- Created: 2023-03-31T09:49:39.000Z (almost 2 years ago)
- Default Branch: 2.x
- Last Pushed: 2024-04-23T06:02:22.000Z (8 months ago)
- Last Synced: 2024-04-23T10:39:13.092Z (8 months ago)
- Topics: filament-plugin, filamentadmin, filamentphp, treeview
- Language: PHP
- Homepage:
- Size: 295 KB
- Stars: 94
- Watchers: 4
- Forks: 33
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
> [!IMPORTANT]
> Please note that we will only be updating to version 2.x, excluding any bug fixes.# Filament Tree
Filament Tree is a plugin for Filament Admin that creates a model management page with a heritage tree structure view. This plugin can be used to create menus and more.
[![Latest Version on Packagist](https://img.shields.io/packagist/v/solution-forest/filament-tree.svg?style=flat-square)](https://packagist.org/packages/solution-forest/filament-tree)
[![Total Downloads](https://img.shields.io/packagist/dt/solution-forest/filament-tree.svg?style=flat-square)](https://packagist.org/packages/solution-forest/filament-tree)This plugin creates model management page with heritage tree structure view for Filament Admin. It could be used to create menu, etc.
Demo site : https://filament-cms-website-demo.solutionforest.net/admin
Demo username : [email protected]
Demo password : 12345678
Auto Reset every hour.## Installation
To install the package, run the following command:
```bash
composer require solution-forest/filament-tree
```> **Important: Need to publish assets after version 2.x**
```bash
php artisan filament:assets
```> **Note: Add plugin Blade files to your custom theme `tailwind.config.js` for dark mode.**
>
> To set up your own custom theme, you can visit the [official instruction page](https://filamentphp.com/docs/3.x/panels/themes#creating-a-custom-theme) on the Filament website.Add the plugin's views to your `tailwind.config.js` file.
```js
content: [
'/solution-forest/filament-tree/resources/**/*.blade.php',
]
```Then, publish the config file using:
```bash
php artisan vendor:publish --tag="filament-tree-config"
```You can set your preferred options by adding the following code to your `config/filament-tree.php` file:
```php
[
'order' => 'order',
'parent' => 'parent_id',
'title' => 'title',
],
/**
* Tree model default parent key
*/
'default_parent_id' => -1,
/**
* Tree model default children key name
*/
'default_children_key_name' => 'children',
];```
![Screenshot](https://github.com/solutionforest/filament-tree/assets/68211972/d4bc8d33-3448-4cf5-837e-14116e28b4b5)## Usage
### Prepare the database and model
To use Filament Tree, follow these table structure conventions:
> **Tip: The `parent_id` field must always default to -1!!!**
```
Schema::create('product_categories', function (Blueprint $table) {
$table->id();
$table->integer('parent_id')->default(-1);
$table->integer('order')->default(0)->index();
$table->string('title');
$table->timestamps();
});
```
This plugin provides a convenient method called `treeColumns()` that you can use to add the required columns for the tree structure to your table more easily. Here's an example:
```
Schema::create('product_categories', function (Blueprint $table) {
$table->id();
$table->treeColumns();
$table->timestamps();
});
```
This will automatically add the required columns for the tree structure to your table.The above table structure contains three required fields: `parent_id`, `order`, `title`, and other fields do not have any requirements.
The corresponding model is `app/Models/ProductCategory.php`:
```php
'int'
];
protected $table = 'product_categories';
}
```The field names of the three fields `parent_id`, `order`, and `title` in the table structure can also be modified:
```php
Pages\ProductCategoryTree::route('/tree-list'),
];
}
```
#### Actions
Define the available "actions" for the tree page using the `getActions()` and `getTreeActions()` methods of your page class.The `getActions()` method defines actions that are displayed next to the page's heading:
```php
use Filament\Pages\Actions\CreateAction;protected function getActions(): array
{
return [
CreateAction::make(),
// SAMPLE CODE, CAN DELETE
//\Filament\Pages\Actions\Action::make('sampleAction'),
];
}
```The `getTreeActions()` method defines the actions that are displayed for each record in the tree. For example:
```php
use Filament\Pages\Actions\Action;protected function getTreeActions(): array
{
return [
Actions\ViewAction::make(),
Actions\EditAction::make(),
Actions\DeleteAction::make(),
];
}```
Alternatively, you can use the `hasDeleteAction()`, `hasEditAction()`, and `hasViewAction()` methods to customize each action individually.
``` php
protected function hasDeleteAction(): bool
{
return false;
}protected function hasEditAction(): bool
{
return true;
}protected function hasViewAction(): bool
{
return false;
}
```
#### Record ICON
To customize the prefix icon for each record in a tree page, you can use the `getTreeRecordIcon()` method in your tree page class. This method should return a string that represents the name of the icon you want to use for the record. For example:```php
public function getTreeRecordIcon(?\Illuminate\Database\Eloquent\Model $record = null): ?string
{
// default null
return 'heroicon-o-cake';
}
```
![tree-icon](https://github.com/solutionforest/filament-tree/assets/68525320/6a1ef719-9029-4e91-a20a-515a514c4326)#### Node collapsed state
You can customize a collapsed state of the node. If you would like to show your tree initially collapsed you can use:```php
public function getNodeCollapsedState(?\Illuminate\Database\Eloquent\Model $record = null): bool
{
// All tree nodes will be collapsed by default.
return true;
}
```#### Record Title
To customize the ttile for each record in a tree page, you can use the `getTreeRecordTitle()` method in your tree page class. This method should return a string that represents the name of the icon you want to use for the record. For example:```php
public function getTreeRecordTitle(?\Illuminate\Database\Eloquent\Model $record = null): string
{
if (! $record) {
return '';
}
$id = $record->getKey();
$title = $record->{(method_exists($record, 'determineTitleColumnName') ? $record->determineTitleColumnName() : 'title')};
return "[{$id}] {$title}";
}
```### Pages
This plugin enables you to create tree pages in the admin panel. To create a tree page for a model, use the `make:filament-tree-page` command. For example, to create a tree page for the ProductCategory model, you can run:
#### Create a Page
> **Tip: Note that you should make sure the model contains the required columns or already uses the `ModelTree` trait**
```php
php artisan make:filament-tree-page ProductCategory --model=ProductCategory
```
#### Actions, Widgets and Icon for each record
Once you've created the tree page, you can customize the available actions, widgets, and icon for each record. You can use the same methods as for resource pages. See the [Resource Page](#resources) for more information on how to customize actions, widgets, and icons.### Translation
Suggest used with Spatie Translatable (https://filamentphp.com/plugins/filament-spatie-translatable) Plugin.
1. Ensure your model already apply translatable setup. (Refence on https://spatie.be/docs/laravel-translatable/v6/installation-setup)
```php
use Filament\Actions\LocaleSwitcher;
use SolutionForest\FilamentTree\Concern\ModelTree;
use Spatie\Translatable\HasTranslations;class Category extends Model
{
use HasTranslations;
use TreeModel;protected $translatable = [
'title',
];
}
```
2. You need to add the necessary trait and `LocaleSwitcher` header action to your tree page:
```php
use App\Models\Category as TreePageModel;
use SolutionForest\FilamentTree\Concern\TreeRecords\Translatable;
use SolutionForest\FilamentTree\Pages\TreePage as BasePage;class Category extends BasePage
{
use Translatable;protected static string $model = TreePageModel::class;
public function getTranslatableLocales(): array
{
return ['en', 'fr'];
}protected function getActions(): array
{
return [
LocaleSwitcher::make(),
];
}
}
```### Publishing Views
To publish the views, use:
```bash
php artisan vendor:publish --tag="filament-tree-views"
```### Publishing Translations
To publish the translations, use:
```bash
php artisan vendor:publish --tag="filament-tree-translations"
```## Testing
To run the tests, run:
```bash
composer test
```## Changelog
See the [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.
## Contributing
See [CONTRIBUTING](.github/CONTRIBUTING.md) for details.
## Security Vulnerabilities
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
## Credits
- [Carly]
- [All Contributors](../../contributors)## License
Filament Tree is open-sourced software licensed under the [MIT license](LICENSE.md).
## About Solution Forest
[Solution Forest](https://solutionforest.com) Web development agency based in Hong Kong. We help customers to solve their problems. We Love Open Soruces.
We have built a collection of best-in-class products:
- [VantagoAds](https://vantagoads.com): A self manage Ads Server, Simplify Your Advertising Strategy.
- [GatherPro.events](https://gatherpro.events): A Event Photos management tools, Streamline Your Event Photos.
- [Website CMS Management](https://filamentphp.com/plugins/solution-forest-cms-website): Website CMS Management - Filament CMS Plugin
- [Filaletter](https://filaletter.solutionforest.net): Filaletter - Filament Newsletter Plugin