Version 1
[yaffs-website] / vendor / drupal / console / src / Command / Generate / BreakPointCommand.php
diff --git a/vendor/drupal/console/src/Command/Generate/BreakPointCommand.php b/vendor/drupal/console/src/Command/Generate/BreakPointCommand.php
new file mode 100644 (file)
index 0000000..5ffe474
--- /dev/null
@@ -0,0 +1,170 @@
+<?php
+
+/**
+ * @file
+ * Contains \Drupal\Console\Command\Generate\BreakPointCommand.
+ */
+
+namespace Drupal\Console\Command\Generate;
+
+use Symfony\Component\Console\Input\InputInterface;
+use Symfony\Component\Console\Input\InputOption;
+use Symfony\Component\Console\Output\OutputInterface;
+use Symfony\Component\Console\Command\Command;
+use Drupal\Core\Extension\ThemeHandler;
+use Drupal\Console\Command\Shared\ThemeRegionTrait;
+use Drupal\Console\Command\Shared\ThemeBreakpointTrait;
+use Drupal\Console\Command\Shared\ConfirmationTrait;
+use Drupal\Console\Core\Command\Shared\CommandTrait;
+use Drupal\Console\Core\Style\DrupalStyle;
+use Drupal\Console\Utils\Validator;
+use Drupal\Console\Core\Utils\StringConverter;
+use Drupal\Console\Generator\BreakPointGenerator;
+
+/**
+ *
+ */
+class BreakPointCommand extends Command
+{
+    use CommandTrait;
+    use ConfirmationTrait;
+    use ThemeRegionTrait;
+    use ThemeBreakpointTrait;
+
+    /**
+     * @var BreakPointGenerator
+     */
+    protected $generator;
+
+    /**
+     * @var Site
+     */
+    protected $site;
+
+    /**
+     * @var string
+     */
+    protected $appRoot;
+
+    /**
+     * @var ThemeHandler
+     */
+    protected $themeHandler;
+
+
+    /**
+ * @var Validator
+*/
+    protected $validator;
+
+    /**
+     * @var StringConverter
+     */
+    protected $stringConverter;
+
+    /**
+     * BreakPointCommand constructor.
+     *
+     * @param BreakPointGenerator $generator
+     * @param $appRoot
+     * @param ThemeHandler        $themeHandler
+     * @param Validator           $validator
+     * @param StringConverter     $stringConverter
+     */
+    public function __construct(
+        BreakPointGenerator $generator,
+        $appRoot,
+        ThemeHandler $themeHandler,
+        Validator $validator,
+        StringConverter $stringConverter
+    ) {
+        $this->generator = $generator;
+        $this->appRoot = $appRoot;
+        $this->themeHandler = $themeHandler;
+        $this->validator = $validator;
+        $this->stringConverter = $stringConverter;
+        parent::__construct();
+    }
+
+    /**
+     * {@inheritdoc}
+     */
+    protected function configure()
+    {
+        $this
+            ->setName('generate:breakpoint')
+            ->setDescription($this->trans('commands.generate.breakpoint.description'))
+            ->setHelp($this->trans('commands.generate.breakpoint.help'))
+            ->addOption(
+                'theme',
+                '',
+                InputOption::VALUE_REQUIRED,
+                $this->trans('commands.generate.breakpoint.options.theme')
+            )
+            ->addOption(
+                'breakpoints',
+                '',
+                InputOption::VALUE_OPTIONAL,
+                $this->trans('commands.generate.breakpoint.options.breakpoints')
+            );
+    }
+
+    /**
+     * {@inheritdoc}
+     */
+    protected function execute(InputInterface $input, OutputInterface $output)
+    {
+        $io = new DrupalStyle($input, $output);
+
+        // @see use Drupal\Console\Command\Shared\ConfirmationTrait::confirmGeneration
+        if (!$this->confirmGeneration($io)) {
+            return;
+        }
+
+        $validators = $this->validator;
+        // we must to ensure theme exist
+        $machine_name = $validators->validateMachineName($input->getOption('theme'));
+        $theme_path = $drupal_root . $input->getOption('theme');
+        $breakpoints = $input->getOption('breakpoints');
+
+        $this->generator->generate(
+            $theme_path,
+            $breakpoints,
+            $machine_name
+        );
+    }
+
+    /**
+     * {@inheritdoc}
+     */
+    protected function interact(InputInterface $input, OutputInterface $output)
+    {
+        $io = new DrupalStyle($input, $output);
+
+        $drupalRoot = $this->appRoot;
+
+        // --base-theme option.
+        $base_theme = $input->getOption('theme');
+
+        if (!$base_theme) {
+            $themeHandler = $this->themeHandler;
+            $themes = $themeHandler->rebuildThemeData();
+            $themes['classy'] ='';
+
+            uasort($themes, 'system_sort_modules_by_info_name');
+
+            $base_theme = $io->choiceNoList(
+                $this->trans('commands.generate.breakpoint.questions.theme'),
+                array_keys($themes)
+            );
+            $input->setOption('theme', $base_theme);
+        }
+
+        // --breakpoints option.
+        $breakpoints = $input->getOption('breakpoints');
+        if (!$breakpoints) {
+            $breakpoints = $this->breakpointQuestion($io);
+            $input->setOption('breakpoints', $breakpoints);
+        }
+    }
+}