File: D:/HostingSpaces/SBogers10/carrot.komma.pro/app/Komma/Shop/Categories/Kms/CategorySection.php
<?php
/**
*
*
* @author Komma <info@komma.pro>
* @copyright (c) 2012-2016, Komma
*/
namespace App\Komma\Shop\Categories\Kms;
//The new object oriented attributes
use App\Komma\Components\ComponentType\ComponentTypes;
use App\Komma\Kms\Core\Attributes\ComponentArea;
use App\Komma\Kms\Core\Attributes\Documents;
use App\Komma\Kms\Core\Sections\AllUsedLanguagesTabsDirector;
use App\Komma\Kms\Core\Sections\Section;
use App\Komma\Routes\RouteService;
use App\Komma\Kms\Core\Attributes\Attribute;
use App\Komma\Kms\Core\Attributes\Models\ImageProperty;
use App\Komma\Kms\Core\Attributes\OnOff;
use App\Komma\Kms\Core\Attributes\Select;
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\SectionTabGroups;
use App\Komma\Kms\Core\Sections\SectionTabItem;
use App\Komma\Kms\Core\Sections\SectionTabsBuilder;
use App\Komma\Kms\Core\ValidationSet;
use App\Komma\Sites\SiteServiceInterface;
use App\Komma\Users\Models\KmsUserRole;
use Illuminate\Database\Eloquent\Collection;
class CategorySection extends Section
{
protected $title = "Categories";
protected $subtitle = "All product categories";
protected $slug = "categories";
protected $hasRoutes = true;
public $showSave = 'all';
public $showDelete = [1];
public $showCreate = [1];
/**
* PageSection constructor.
* @param CategoryServiceInterface $sectionService
* @param RouteService $routeService
* @param SiteServiceInterface $siteService
*/
function __construct(CategoryServiceInterface $sectionService, RouteService $routeService, SiteServiceInterface $siteService)
{
$this->title = ucfirst(__('shop/categories.categories'));
$this->subtitle = __('shop/categories.all_categories');
$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
{
// \Log::info("PageSection::Generating attributes");
//*****************************************************************************************\\
//*** Define attribute validation sets ***\\
//*****************************************************************************************\\
$titleValidationSet = (new ValidationSet())
->setRules('required')
->setMessages(['required' => __('validation.required')]);
//*****************************************************************************************\\
//*** Generate the attributes ***\\
//*****************************************************************************************\\
$attributes = [];
//Build the general attributes and put them in the attributes array
$attributes[] = (new Title(__('shop/categories.category')));
$attributes[] = (new TextField(__('kms/global.codeName')))
->setMinimumUserRole(KmsUserRole::SuperAdmin)
->setReadOnly(false)
->mapValueFrom(Attribute::ValueFromModel, 'code_name');
$attributes[] = (new OnOff())
->setLabelText(__('kms/global.active'))
// ->switchOn()
->mapValueFrom(Attribute::ValueFromModel, 'active');
$categoryOptionModels = $this->getSectionService()->getOptionsForSelect();
$attributes[] = (new Select())
->setItems($categoryOptionModels->toArray())
->setLabelText(__('shop/categories.parent_category'))
->setExcludeCurrentModelItem(true)
->mapValueFrom(Attribute::ValueFromItself, 'parent_id');
$attributes[] = (new Documents())
->setSmallDragAndDropArea()
->setImageProperties([
(new ImageProperty())->setName('thumb')->setCropMethod(ImageProperty::Fit)->setWidth(100)->setHeight(100),
(new ImageProperty())->setName('small')->setCropMethod(ImageProperty::Resize)->setWidth(240),
(new ImageProperty())->setName('medium')->setCropMethod(ImageProperty::Resize)->setWidth(460),
(new ImageProperty())->setName('large')->setCropMethod(ImageProperty::Resize)->setWidth(500),
])
->onlyAllowImages()
->setLabelText(__('kms/global.images'))
->setMaxDocuments(5)
->setSubFolder('pages')
->mapValueFrom(Attribute::ValueFromDocuments, 'documents');
//Build an array with attributes for each current site language
$languageIndexedAttributes = $this->createAttributesFromExistingAttributeForAllUsedLanguagesBySites([
(new Title(__('kms/global.information'))),
(new TextField(__('kms/global.title')))
->setValidationSet($titleValidationSet)
->mapValueFrom(Attribute::ValueFromTranslationModel, 'name'),
(new Seperator()),
(new TextField(__('kms/global.metaTitle')))
->mapValueFrom(Attribute::ValueFromTranslationModel, 'meta_title'),
(new TextArea())
->setLabelText(__('kms/global.metaDescription'))
->mapValueFrom(Attribute::ValueFromTranslationModel, 'meta_description'),
(new ComponentArea())
->setComponentTypes([
ComponentTypes::TEXT,
])
->setSubFolder('category_component_data')
->mapValueFrom(Attribute::ValueFromComponentArea, 'category_components'),
]);
//****************************************************************************************************************************************\\
//*** 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;
}
}