Skip to content

Commit

Permalink
✨ price list feature migration (#87)
Browse files Browse the repository at this point in the history
* 📦 migrate bundle from fond-of-spryker/price-product-price-list-page-search-extension

* 📦 migrate bundle from fond-of-spryker/price-product-price-list

* 📦 migrate package from fond-of-spryker/price-list-gui

* 📦 migrate package from fond-of-spryker/company-price-list

* 📦 migrate package fond-of-spryker/price-lists-rest-api

* 📦 migrate package fond-of-spryker/company-business-unit-price-list

* 📦 migrate package fond-of-spryker/customer-price-list

* 📦 migrate package fond-of-spryker/price-product-price-list-gui

* 📦 migrate package fond-of-spryker/company-price-list-gui

* 📦 migrate package fond-of-spryker/price-list-api

* 📦 migrate package fond-of-spryker/price-product-price-list-page-search

* 📦 migrate package fond-of-spryker/price-product-price-list-page-search

* 📦 migrate package fond-of-spryker/customer-price-product-price-list-page-search

* 📦 migrate bundle from fond-of-spryker/price-list

* 📦 migrate package fond-of-spryker/price-product-price-list-search-rest-api
  • Loading branch information
julianzimmermann committed Sep 1, 2023
0 parents commit 22e8684
Show file tree
Hide file tree
Showing 19 changed files with 436 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: CI

on:
push:
branches: [ main ]

jobs:
continous-integration:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php-versions: [ "8.0", "8.1", "8.2" ]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup PHP, with composer and extensions
uses: shivammathur/setup-php@v2 #https://github.com/shivammathur/setup-php
with:
php-version: ${{ matrix.php-versions }}
extensions: mbstring, dom, fileinfo, pgsql, json
coverage: xdebug #optional
- name: Get composer cache directory
id: composercache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
- name: Cache composer dependencies
uses: actions/cache@v3
with:
path: ${{ steps.composercache.outputs.dir }}
# Use composer.json for key, if composer.lock is not committed.
# key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ runner.os }}-composer-
- name: Install dependencies and run ci tasks
run: make install ci
9 changes: 9 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
The MIT License (MIT)

Copyright (c) 2023-present FOND OF GmbH

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
30 changes: 30 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
.PHONY: install
install:
composer install

.PHONY: phpcs
phpcs:
./vendor/bin/phpcs --standard=./vendor/spryker/code-sniffer/Spryker/ruleset.xml ./src/FondOfImpala/* ./tests/*

.PHONY: phpcbf
phpcbf:
./vendor/bin/phpcbf --standard=./vendor/spryker/code-sniffer/Spryker/ruleset.xml ./src/FondOfImpala/* ./tests/*

.PHONY: phpstan
phpstan:
./vendor/bin/phpstan --memory-limit=-1 analyse ./src/FondOfImpala

.PHONY: codeception
codeception:
./vendor/bin/codecept run --env standalone

.PHONY: ci
ci: phpcs codeception phpstan

.PHONY: clean
clean:
rm -Rf composer.lock
rm -Rf ./vendor
find ./tests/_output/ -not -name .gitignore -delete
rm -Rf src/Generated/*
rm -Rf src/Orm/*
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Company Price List Gui Module
[![CI](https://github.com/fond-of-impala/company-price-list-gui/actions/workflows/main.yml/badge.svg)](https://github.com/fond-of-impala/company-price-list-gui/actions/workflows/main.yml)
[![license](https://img.shields.io/github/license/fond-of-impala/company-price-list-gui.svg)](https://packagist.org/packages/fond-of-impala/company-price-list-gui)

Package was migrated from `fond-of-spryker/company-price-list-gui`

## Installation

```
composer require fond-of-impala/company-price-list-gui
```
43 changes: 43 additions & 0 deletions codeception.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
namespace: fond-of-impala/company-price-list-gui

suites:
unit:
path: .

settings:
shuffle: true
lint: true

bootstrap: _bootstrap.php

paths:
tests: tests
output: tests/_output
support: tests/_support
data: tests/_data

coverage:
enabled: true
include:
- src/*.php

modules:
enabled:
- \FondOfCodeception\Module\Spryker
config:
\FondOfCodeception\Module\Spryker:
generate_transfer: false
generate_map_classes: false
generate_propel_classes: false
generate_ide_auto_completion: false

env:
standalone:
modules:
config:
\FondOfCodeception\Module\Spryker:
generate_transfer: true
generate_map_classes: true
generate_propel_classes: true
generate_ide_auto_completion: true
monorepo:
40 changes: 40 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
"name": "fond-of-impala/company-price-list-gui",
"description": "Company price list module",
"license": "MIT",
"authors": [
{
"name": "Daniel Rose",
"email": "daniel-rose@gmx.de"
}
],
"require": {
"php": ">=8.0",
"fond-of-impala/company-price-list": "^1.0.0",
"spryker/company-gui-extension": "^1.0.0"
},
"require-dev": {
"fond-of-codeception/spryker": "*",
"spryker/code-sniffer": "*",
"spryker-sdk/phpstan-spryker": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"FondOfImpala\\": "src/FondOfImpala/"
}
},
"autoload-dev": {
"psr-4": {
"FondOfImpala\\": "tests/FondOfImpala/",
"Generated\\": "src/Generated/",
"Orm\\": "src/Orm/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}
5 changes: 5 additions & 0 deletions phpstan.neon
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
parameters:
level: 5
reportUnmatchedIgnoredErrors: false
scanDirectories:
- src/Orm/Zed
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<?php

namespace FondOfImpala\Zed\CompanyPriceListGui\Communication;

use FondOfImpala\Zed\CompanyPriceListGui\Communication\Form\CompanyPriceListForm;
use FondOfImpala\Zed\CompanyPriceListGui\Communication\Form\DataProvider\CompanyPriceListFormDataProvider;
use FondOfImpala\Zed\CompanyPriceListGui\CompanyPriceListGuiDependencyProvider;
use FondOfImpala\Zed\CompanyPriceListGui\Dependency\Facade\CompanyPriceListGuiToPriceListFacadeInterface;
use Spryker\Zed\Kernel\Communication\AbstractCommunicationFactory;

class CompanyPriceListGuiCommunicationFactory extends AbstractCommunicationFactory
{
/**
* @return \FondOfImpala\Zed\CompanyPriceListGui\Dependency\Facade\CompanyPriceListGuiToPriceListFacadeInterface
*/
protected function getPriceListFacade(): CompanyPriceListGuiToPriceListFacadeInterface
{
return $this->getProvidedDependency(CompanyPriceListGuiDependencyProvider::FACADE_PRICE_LIST);
}

/**
* @return \FondOfImpala\Zed\CompanyPriceListGui\Communication\Form\DataProvider\CompanyPriceListFormDataProvider
*/
public function createCompanyPriceListFormDataProvider(): CompanyPriceListFormDataProvider
{
return new CompanyPriceListFormDataProvider($this->getPriceListFacade());
}

/**
* @return \FondOfImpala\Zed\CompanyPriceListGui\Communication\Form\CompanyPriceListForm
*/
public function createCompanyPriceListForm(): CompanyPriceListForm
{
return new CompanyPriceListForm();
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
<?php

namespace FondOfImpala\Zed\CompanyPriceListGui\Communication\Form;

use Spryker\Zed\Gui\Communication\Form\Type\SelectType;
use Spryker\Zed\Kernel\Communication\Form\AbstractType;
use Symfony\Component\Form\FormBuilderInterface;

/**
* @method \FondOfImpala\Zed\CompanyPriceListGui\Communication\CompanyPriceListGuiCommunicationFactory getFactory()
*/
class CompanyPriceListForm extends AbstractType
{
/**
* @var string
*/
public const FIELD_FK_PRICE_LIST = 'fk_price_list';

/**
* @var string
*/
public const OPTIONS_PRICE_LIST = 'OPTIONS_PRICE_LIST';

/**
* @param \Symfony\Component\Form\FormBuilderInterface $builder
* @param array $options
*
* @return void
*/
public function buildForm(FormBuilderInterface $builder, array $options): void
{
$this->addPriceListCollectionField($builder, $options);
}

/**
* @param \Symfony\Component\Form\FormBuilderInterface $builder
* @param array $options
*
* @return $this
*/
protected function addPriceListCollectionField(FormBuilderInterface $builder, array $options)
{
$builder->add(static::FIELD_FK_PRICE_LIST, SelectType::class, [
'label' => 'Price list',
'choices' => $options[static::OPTIONS_PRICE_LIST],
'required' => false,
]);

return $this;
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<?php

namespace FondOfImpala\Zed\CompanyPriceListGui\Communication\Form\DataProvider;

use FondOfImpala\Zed\CompanyPriceListGui\Communication\Form\CompanyPriceListForm;
use FondOfImpala\Zed\CompanyPriceListGui\Dependency\Facade\CompanyPriceListGuiToPriceListFacadeInterface;

class CompanyPriceListFormDataProvider
{
protected CompanyPriceListGuiToPriceListFacadeInterface $priceListFacade;

/**
* @param \FondOfImpala\Zed\CompanyPriceListGui\Dependency\Facade\CompanyPriceListGuiToPriceListFacadeInterface $priceListFacade
*/
public function __construct(CompanyPriceListGuiToPriceListFacadeInterface $priceListFacade)
{
$this->priceListFacade = $priceListFacade;
}

/**
* @return array
*/
public function getOptions(): array
{
return [
CompanyPriceListForm::OPTIONS_PRICE_LIST => $this->getPriceListOptions(),
];
}

/**
* @return array
*/
protected function getPriceListOptions(): array
{
$priceListOptions = [];
$priceListCollectionTransfer = $this->priceListFacade->getPriceListCollection();

foreach ($priceListCollectionTransfer->getPriceLists() as $priceListTransfer) {
$priceListOptions[$priceListTransfer->getName()] = $priceListTransfer->getIdPriceList();
}

return $priceListOptions;
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<?php

namespace FondOfImpala\Zed\CompanyPriceListGui\Communication\Plugin\CompanyGuiExtension;

use Spryker\Zed\CompanyGuiExtension\Dependency\Plugin\CompanyFormExpanderPluginInterface;
use Spryker\Zed\Kernel\Communication\AbstractPlugin;
use Symfony\Component\Form\FormBuilderInterface;

/**
* @method \FondOfImpala\Zed\CompanyPriceListGui\Communication\CompanyPriceListGuiCommunicationFactory getFactory()
*/
class PriceListCompanyFormExpanderPlugin extends AbstractPlugin implements CompanyFormExpanderPluginInterface
{
/**
* {@inheritDoc}
*
* @api
*
* @param \Symfony\Component\Form\FormBuilderInterface $builder
*
* @return void
*/
public function buildForm(FormBuilderInterface $builder): void
{
$companyPriceListFormDataProvider = $this->getFactory()->createCompanyPriceListFormDataProvider();
$companyPriceListForm = $this->getFactory()->createCompanyPriceListForm();

$companyPriceListForm->buildForm($builder, $companyPriceListFormDataProvider->getOptions());
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<?php

namespace FondOfImpala\Zed\CompanyPriceListGui;

use FondOfImpala\Zed\CompanyPriceListGui\Dependency\Facade\CompanyPriceListGuiToPriceListFacadeBridge;
use Spryker\Zed\Kernel\AbstractBundleDependencyProvider;
use Spryker\Zed\Kernel\Container;

class CompanyPriceListGuiDependencyProvider extends AbstractBundleDependencyProvider
{
/**
* @var string
*/
public const FACADE_PRICE_LIST = 'FACADE_PRICE_LIST';

/**
* @param \Spryker\Zed\Kernel\Container $container
*
* @return \Spryker\Zed\Kernel\Container
*/
public function provideCommunicationLayerDependencies(Container $container): Container
{
$container = parent::provideCommunicationLayerDependencies($container);

$container = $this->addPriceListFacade($container);

return $container;
}

/**
* @param \Spryker\Zed\Kernel\Container $container
*
* @return \Spryker\Zed\Kernel\Container
*/
protected function addPriceListFacade(Container $container): Container
{
$container[static::FACADE_PRICE_LIST] = fn (Container $container): CompanyPriceListGuiToPriceListFacadeBridge => new CompanyPriceListGuiToPriceListFacadeBridge(
$container->getLocator()->priceList()->facade(),
);

return $container;
}
}

0 comments on commit 22e8684

Please sign in to comment.