-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement app.generate_name form toolbar action
- Loading branch information
1 parent
7fdb4b6
commit 596fde8
Showing
5 changed files
with
67 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,5 @@ | ||
// Add project specific javascript code here: | ||
import {formToolbarActionRegistry} from 'sulu-admin-bundle/views'; | ||
import GenerateNameToolbarAction from "./formToolbarActions/GenerateNameToolbarAction"; | ||
|
||
formToolbarActionRegistry.add('app.generate_name', GenerateNameToolbarAction); |
29 changes: 29 additions & 0 deletions
29
assets/admin/formToolbarActions/GenerateNameToolbarAction.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
import {translate} from 'sulu-admin-bundle/utils'; | ||
import {AbstractFormToolbarAction} from 'sulu-admin-bundle/views'; | ||
|
||
const FIRSTNAMES = ['James', 'Mary', 'John', 'Patricia', 'Robert', 'Jennifer', 'Michael', 'Linda'] | ||
const LASTNAMES = ['Smith', 'Johnson', 'Williams', 'Brown', 'Jones', 'Miller', 'Davis', 'Garcia'] | ||
|
||
export default class GenerateNameToolbarAction extends AbstractFormToolbarAction { | ||
getToolbarItemConfig() { | ||
const {allow_overwrite: allowOverwrite = false} = this.options; | ||
const formData = this.resourceFormStore.data; | ||
const nameAlreadySet = !!formData.firstName || !!formData.lastName; | ||
|
||
return { | ||
type: 'button', | ||
label: translate('app.generate_name'), | ||
icon: 'su-magic', | ||
disabled: !allowOverwrite && nameAlreadySet, | ||
onClick: this.handleClick, | ||
}; | ||
} | ||
|
||
handleClick = () => { | ||
const randomFirstName = FIRSTNAMES[Math.floor(Math.random() * FIRSTNAMES.length)]; | ||
this.resourceFormStore.change('firstName', randomFirstName); | ||
|
||
const randomLastName = LASTNAMES[Math.floor(Math.random() * LASTNAMES.length)]; | ||
this.resourceFormStore.change('lastName', randomLastName); | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace App\Admin; | ||
|
||
use Sulu\Bundle\AdminBundle\Admin\Admin; | ||
use Sulu\Bundle\AdminBundle\Admin\View\FormViewBuilderInterface; | ||
use Sulu\Bundle\AdminBundle\Admin\View\ToolbarAction; | ||
use Sulu\Bundle\AdminBundle\Admin\View\ViewCollection; | ||
use Sulu\Bundle\ContactBundle\Admin\ContactAdmin; | ||
|
||
class AppAdmin extends Admin | ||
{ | ||
public function configureViews(ViewCollection $viewCollection): void | ||
{ | ||
if ($viewCollection->has('sulu_contact.contact_add_form.details')) { | ||
/** @var FormViewBuilderInterface $contactAddFormViewBuilder */ | ||
$contactAddFormViewBuilder = $viewCollection->get('sulu_contact.contact_add_form.details'); | ||
$contactAddFormViewBuilder->addToolbarActions([ | ||
new ToolbarAction('app.generate_name', ['allow_overwrite' => true]), | ||
]); | ||
} | ||
} | ||
|
||
public static function getPriority(): int | ||
{ | ||
return ContactAdmin::getPriority() - 1; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters