Skip to content

Commit 9eb6e03

Browse files
author
John Wesely
committed
guest entries and user editable redirect urls
1 parent e167cf5 commit 9eb6e03

File tree

6 files changed

+64
-21
lines changed

6 files changed

+64
-21
lines changed

UPGRADE.md

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Upgrade Guide
2+
## Upgrading to to 1.1 from 1.0
3+
### Allow Guest Entries by Making User Nullable on FilamentFormUser
4+
1.1 supports nullable user ids so that guest data can be collected by forms. If you are upgrading from 1.0 to 1.1, create a migration with the following methods to reflect this change.
5+
```
6+
Schema::table('filament_form_user', function (Blueprint $table) {
7+
$table->foreignId('user_id')->nullable()->change();
8+
});
9+
10+
Schema::table('filament_forms', function (Blueprint $table) {
11+
$table->boolean('permit_guest_entries')->default(false);
12+
});
13+
```
14+
### Support user configurable redirect URL
15+
1.1 supports user configurable redirect URLs. When a redirect URL is present on the form model, the user will be redirected there instead of the redirect URL specified in the config. If you are upgrading from 1.0 to 1.1, create a migration with the following method to reflect this change.
16+
```
17+
Schema::table('filament_forms', function (Blueprint $table) {
18+
$table->text('redirect_url')->nullable();
19+
});
20+
```

database/migrations/create_dynamic_filament_form_tables.php.stub

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ return new class extends Migration
3535
$table->id();
3636
$table->timestamps();
3737
$table->foreignId('filament_form_id')->constrained()->cascadeOnDelete();
38-
$table->foreignId('user_id')->constrained()->cascadeOnDelete();
38+
$table->foreignId('user_id')->nullable()->constrained()->cascadeOnDelete();
3939
$table->json('entry');
4040
});
4141
}

src/Exports/FilamentFormUsersExport.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public function collection()
3131
public function map($entry): array
3232
{
3333
$mapping = [
34-
$entry->user->name,
34+
$entry->user->name ?? 'Guest',
3535
$entry->created_at,
3636
$entry->updated_at,
3737
];

src/Filament/Resources/FilamentFormResource.php

+10-5
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,17 @@
33
namespace Tapp\FilamentFormBuilder\Filament\Resources;
44

55
use Filament\Forms;
6-
use Filament\Forms\Form;
7-
use Filament\Resources\Resource;
86
use Filament\Tables;
7+
use Filament\Forms\Form;
98
use Filament\Tables\Table;
10-
use Tapp\FilamentFormBuilder\Filament\Resources\FilamentFormResource\Pages\CreateFilamentForm;
9+
use Filament\Resources\Resource;
10+
use Filament\Forms\Components\Toggle;
11+
use Tapp\FilamentFormBuilder\Models\FilamentForm;
1112
use Tapp\FilamentFormBuilder\Filament\Resources\FilamentFormResource\Pages\EditFilamentForm;
1213
use Tapp\FilamentFormBuilder\Filament\Resources\FilamentFormResource\Pages\ListFilamentForms;
13-
use Tapp\FilamentFormBuilder\Filament\Resources\FilamentFormResource\RelationManagers\FilamentFormFieldsRelationManager;
14+
use Tapp\FilamentFormBuilder\Filament\Resources\FilamentFormResource\Pages\CreateFilamentForm;
1415
use Tapp\FilamentFormBuilder\Filament\Resources\FilamentFormResource\RelationManagers\FilamentFormUsersRelationManager;
15-
use Tapp\FilamentFormBuilder\Models\FilamentForm;
16+
use Tapp\FilamentFormBuilder\Filament\Resources\FilamentFormResource\RelationManagers\FilamentFormFieldsRelationManager;
1617

1718
class FilamentFormResource extends Resource
1819
{
@@ -52,6 +53,10 @@ public static function form(Form $form): Form
5253
Forms\Components\TextInput::make('name')
5354
->required()
5455
->maxLength(255),
56+
Toggle::make('permit_guest_entries')
57+
->hint('Permit non registered users to submit this form'),
58+
Forms\Components\TextInput::make('redirect_url')
59+
->hint('(optional) complete this field to provide a custom redirect url on form completion. Use a fully qualified URL including "https://" to redirect to an external link, otherwise url will be relative to this sites domain'),
5560
Forms\Components\Textarea::make('description')
5661
->columnSpanFull(),
5762
]);

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ public function table(Table $table): Table
6666
BulkAction::make('Export Selected')
6767
->action(fn (Collection $records) => Excel::download(
6868
new FilamentFormUsersExport($records),
69-
$this->getOwnerRecord()->name.'_form_entry_export'.now()->format('Y-m-dhis').'.csv')
69+
urlencode($this->getOwnerRecord()->name).'_form_entry_export'.now()->format('Y-m-dhis').'.csv')
7070
)
7171
->icon('heroicon-o-document-chart-bar')
7272
->deselectRecordsAfterCompletion(),

src/Livewire/FilamentForm/Show.php

+31-13
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,13 @@ class Show extends Component implements HasForms
1919

2020
public ?array $data = [];
2121

22-
public function mount(FilamentForm $form): void
22+
public function mount(FilamentForm $form)
2323
{
2424
$this->filamentForm = $form->load('filamentFormFields');
25+
26+
if (!$this->filamentForm->permit_guest_entries && !auth()->check()) {
27+
return redirect('/', 401);
28+
}
2529
}
2630

2731
public function form(Form $form): Form
@@ -92,18 +96,32 @@ public function create()
9296
]);
9397
}
9498

95-
$entryModel = FilamentFormUser::updateOrCreate(
96-
[
97-
'user_id' => auth()->user()->id,
98-
'filament_form_id' => $this->filamentForm->id,
99-
],
100-
[
101-
'entry' => $entry,
102-
],
103-
);
104-
105-
return redirect()
106-
->route(config('filament-form-builder.filament-form-user-show-route'), $entryModel);
99+
if (auth()->check()) {
100+
$entryModel = FilamentFormUser::updateOrCreate(
101+
[
102+
'user_id' => auth()->user()->id ?? null,
103+
'filament_form_id' => $this->filamentForm->id,
104+
],
105+
[
106+
'entry' => $entry,
107+
],
108+
);
109+
} else {
110+
$entryModel = FilamentFormUser::create(
111+
[
112+
'filament_form_id' => $this->filamentForm->id,
113+
'entry' => $entry,
114+
],
115+
);
116+
}
117+
118+
if ($this->filamentForm->redirect_url) {
119+
return redirect($this->filamentForm->redirect_url);
120+
} else {
121+
return redirect()
122+
->route(config('filament-form-builder.filament-form-user-show-route'), $entryModel);
123+
}
124+
107125
}
108126

109127
public function parseValue(FilamentFormField $field, ?string $value): string

0 commit comments

Comments
 (0)