Skip to content

Commit 9dee93c

Browse files
author
John Wesely
committed
support locking forms
1 parent 222e563 commit 9dee93c

File tree

3 files changed

+58
-10
lines changed

3 files changed

+58
-10
lines changed

UPGRADE.md

+8
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,11 @@
1818
$table->text('redirect_url')->nullable();
1919
});
2020
```
21+
22+
## Support locking a form to prevent data integrity issues
23+
1.2 supports locking forms so that entries from a form can always be compared apples to apples over time with no risk of the form being changed and previous entries becoming incompatible with new entires. If you are upgrading from 1.0 or 1.1 to 1.2, create a migration with the following method to reflect this change
24+
```
25+
Schema::table('filament_forms', function (Blueprint $table) {
26+
$table->boolean('locked')->default(false);
27+
});
28+
```

database/migrations/create_dynamic_filament_form_tables.php.stub

+3
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ return new class extends Migration
1616
$table->timestamps();
1717
$table->string('name');
1818
$table->text('description')->nullable();
19+
$table->text('redirect_url')->nullable();
20+
$table->boolean('permit_guest_entries')->default(false);
21+
$table->boolean('locked')->default(false);
1922
});
2023

2124
Schema::create('filament_form_fields', function (Blueprint $table) {

src/Filament/Resources/FilamentFormResource/RelationManagers/FilamentFormFieldsRelationManager.php

+47-10
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,19 @@
22

33
namespace Tapp\FilamentFormBuilder\Filament\Resources\FilamentFormResource\RelationManagers;
44

5+
use Filament\Tables;
6+
use Filament\Forms\Get;
7+
use Filament\Forms\Form;
8+
use Filament\Tables\Table;
9+
use Filament\Tables\Actions\Action;
510
use Filament\Forms\Components\Select;
6-
use Filament\Forms\Components\TagsInput;
7-
use Filament\Forms\Components\TextInput;
811
use Filament\Forms\Components\Toggle;
9-
use Filament\Forms\Form;
10-
use Filament\Forms\Get;
11-
use Filament\Resources\RelationManagers\RelationManager;
12-
use Filament\Tables;
1312
use Filament\Tables\Columns\IconColumn;
1413
use Filament\Tables\Columns\TextColumn;
15-
use Filament\Tables\Table;
1614
use Illuminate\Database\Eloquent\Model;
15+
use Filament\Forms\Components\TagsInput;
16+
use Filament\Forms\Components\TextInput;
17+
use Filament\Resources\RelationManagers\RelationManager;
1718
use Tapp\FilamentFormBuilder\Enums\FilamentFieldTypeEnum;
1819

1920
class FilamentFormFieldsRelationManager extends RelationManager
@@ -58,6 +59,8 @@ public function form(Form $form): Form
5859

5960
public function table(Table $table): Table
6061
{
62+
$form = $this->getOwnerRecord();
63+
6164
return $table
6265
->recordTitleAttribute('label')
6366
->heading(config('filament-form-builder.admin-panel-filament-form-field-name-plural'))
@@ -80,15 +83,49 @@ public function table(Table $table): Table
8083
])
8184
->headerActions([
8285
Tables\Actions\CreateAction::make()
86+
->visible(function () use ($form) {
87+
!$form->locked;
88+
})
8389
->label('Create Field'),
90+
Action::make('lock_fields')
91+
->requiresConfirmation()
92+
->modalHeading('Lock Form Fields. Doing this will lock the forms fields and new fields will no longer be able to be changed or edited')
93+
->visible(function () use ($form) {
94+
!$form->locked;
95+
})
96+
->action(function () use ($form) {
97+
$form->update([
98+
'locked' => true,
99+
]);
100+
}),
101+
Action::make('unlock_fields')
102+
->requiresConfirmation()
103+
->modalHeading('Unlock Form Fields. Changing fields after entries has been made can cause inconsistencies for prexisting entries')
104+
->visible(function () use ($form) {
105+
!$form->locked;
106+
})
107+
->action(function () use ($form) {
108+
$form->update([
109+
'locked' => true,
110+
]);
111+
})
84112
])
85113
->actions([
86-
Tables\Actions\EditAction::make(),
87-
Tables\Actions\DeleteAction::make(),
114+
Tables\Actions\EditAction::make()
115+
->visible(function () use ($form) {
116+
!$form->locked;
117+
}),
118+
Tables\Actions\DeleteAction::make()
119+
->visible(function () use ($form) {
120+
!$form->locked;
121+
}),
88122
])
89123
->bulkActions([
90124
Tables\Actions\BulkActionGroup::make([
91-
Tables\Actions\DeleteBulkAction::make(),
125+
Tables\Actions\DeleteBulkAction::make()
126+
->visible(function () use ($form) {
127+
!$form->locked;
128+
}),
92129
]),
93130
]);
94131
}

0 commit comments

Comments
 (0)