File: D:/HostingSpaces/SBogers95/rentman.io/app/Komma/Packages/Kms/PackageSection.php
<?php
namespace App\Komma\Packages\Kms;
use App\Komma\Kms\Core\Attributes\Attribute;
use App\Komma\Kms\Core\Attributes\AutocompleteInput;
use App\Komma\Kms\Core\Attributes\Link;
use App\Komma\Kms\Core\Attributes\OnOff;
use App\Komma\Kms\Core\Attributes\Seperator;
use App\Komma\Kms\Core\Attributes\TextArea;
use App\Komma\Kms\Core\Attributes\TextField;
use App\Komma\Kms\Core\Attributes\Title;
use App\Komma\Kms\Core\Sections\AllUsedLanguagesTabsDirector;
use App\Komma\Kms\Core\Sections\Section;
use App\Komma\Kms\Core\Sections\SectionTabGroups;
use App\Komma\Kms\Core\Sections\SectionTabItem;
use App\Komma\Kms\Core\Sections\SectionTabsBuilder;
use App\Komma\Kms\Core\ValidationSet;
use App\Komma\PricingProducts\Models\PricingProduct;
use App\Komma\PricingProducts\PricingProductService;
use App\Komma\Routes\RouteService;
use App\Komma\Sites\SiteServiceInterface;
use Illuminate\Database\Eloquent\Collection;
class PackageSection extends Section
{
protected $slug = 'packages';
/**
* PageSection constructor.
* @param PackageService $sectionService
* @param RouteService $routeService
* @param SiteServiceInterface $siteService
*/
// function __construct(Kms $kms, PageRepository $repository)
public function __construct(PackageService $sectionService, RouteService $routeService, SiteServiceInterface $siteService)
{
$sectionTabDirector = new AllUsedLanguagesTabsDirector(new SectionTabsBuilder()); //Can make tabs for us. also see KmsSection::__construct
parent::__construct($sectionService, $routeService, $siteService, $sectionTabDirector);
}
/**
* Generates the attributes for this section. They all must extend the App\Komma\Kms\Core\Attributes\Attribute class
* This is the place where you need to setup your sections appearance. Just make sure you build an array of attributes
* and put each attribute in a AbstractSectionTabItem with a SectionTabGroups constant to link them to a tab.
*
* @see PageRepository::saveModel()
* @return Collection A collection of SectionTabItems
*/
protected function generateAttributes(): Collection
{
$numberValidationSet = (new ValidationSet())
->setRules('nullable|numeric')
->setMessages(['numeric' => __('validation.numeric'), 'nullable' => '']);
//*****************************************************************************************\\
//*** Generate the attributes ***\\
//*****************************************************************************************\\
$attributes = [];
//Build the general attributes and put them in the attributes array
$siteOptionModels = $this->siteService->getOptionsForSelect();
$attributes[] = (new AutocompleteInput())
->setStyleClass('hidden')
->setItems($siteOptionModels->toArray())
->setLabelText(__('kms/sites.type'))
->mapValueFrom(Attribute::ValueFromModel, 'site_id');
$attributes[] = (new OnOff())
->setLabelText(__('kms/packages.highlight'))
->mapValueFrom(Attribute::ValueFromModel, 'highlight');
$attributes[] = (new TextField(__('kms/packages.priceEuLabel')))
->setPlaceholderText(__('kms/packages.enterPrice'))
->setValidationSet($numberValidationSet)
->mapValueFrom(Attribute::ValueFromModel, 'price_eu');
$attributes[] = (new TextField(__('kms/packages.priceUsdLabel')))
->setPlaceholderText(__('kms/packages.enterPrice'))
->setValidationSet($numberValidationSet)
->mapValueFrom(Attribute::ValueFromModel, 'price_usd');
$attributes[] = (new Seperator());
$attributes[] = (new Title(__('kms/customerstories.features')));
$productService = \App::make(PricingProduct::class);
$attributes[] = (new AutocompleteInput())
->setLabelText('package products')
->fillWith(PricingProductService::class.'@getOptionsForSelect')
->mapValueFrom(Attribute::ValueFromModelHasManyRelation, 'pricingproducts|id');
//Build an array with attributes for each current site language
$languageIndexedAttributes = $this->createAttributesFromExistingAttributeForAllUsedLanguagesBySites([
(new TextField(__('kms/global.title')))
->setPlaceholderText(__('kms/global.enterTitle'))
->mapValueFrom(Attribute::ValueFromTranslationModel, 'name'),
(new TextField(__('kms/packages.subtitle')))
->setPlaceholderText(__('kms/packages.enterSubtitle'))
->mapValueFrom(Attribute::ValueFromTranslationModel, 'subtitle'),
(new TextArea())
->setLabelText(__('kms/global.description'))
->setPlaceholderText(__('kms/global.enterDescription'))
->enableTinymceEditor()
->mapValueFrom(Attribute::ValueFromTranslationModel, 'description'),
]);
//****************************************************************************************************************************************\\
//*** Put the all attributes in a SectionTabItem so we can track for which tab they are. And then put SectionTabItems in a Collection ***\\
//****************************************************************************************************************************************\\
$tabItems = new Collection();
foreach ($attributes as $attribute) {
$tabItems->push(new SectionTabItem($attribute, SectionTabGroups::General));
}
foreach ($languageIndexedAttributes as $attribute) {
$tabItems->push(new SectionTabItem($attribute, SectionTabGroups::Languages));
}
return $tabItems;
}
/**
* This method will stop the load entities of the kmsSiteSection
*
* @return array
*/
public function loadEntities()
{
return [];
}
}