-
-
Notifications
You must be signed in to change notification settings - Fork 5.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Documented the Symfony Console Styles #6017
Changes from 2 commits
3e133d3
093a815
1523ea7
9528c3c
02356a1
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ Console | |
|
||
console_command | ||
usage | ||
style | ||
command_in_controller | ||
sending_emails | ||
logging | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,371 @@ | ||
.. index:: | ||
single: Console; Style commands | ||
|
||
How to Style a Console Command | ||
============================== | ||
|
||
One of the most boring tasks when creating console commands is to deal with the | ||
styling of the command's input and output. Displaying titles and tables or asking | ||
questions to the user involves a lot of repetitive code. | ||
|
||
Consider for example the code used to display the title of the following command:: | ||
|
||
// src/AppBundle/Command/GreetCommand.php | ||
namespace AppBundle\Command; | ||
|
||
use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand; | ||
use Symfony\Component\Console\Input\InputInterface; | ||
use Symfony\Component\Console\Output\OutputInterface; | ||
|
||
class GreetCommand extends ContainerAwareCommand | ||
{ | ||
// ... | ||
|
||
protected function execute(InputInterface $input, OutputInterface $output) | ||
{ | ||
$output->writeln('<info>Lorem Ipsum Dolor Sit Amet</>'); | ||
$output->writeln('<info>==========================</>'); | ||
$output->writeln(''); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think it's not fair to use this, as it can also be done by passing an array to a single writeln method call. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I agree. Done. |
||
|
||
// ... | ||
} | ||
} | ||
|
||
Displaying a simple title requires three lines of code, to change the font color, | ||
underline the contents and leave an additional blank line after the title. Dealing | ||
with styles is required for well-designed commands, but it complicates their code | ||
unnecessarily. | ||
|
||
In order to reduce that boilerplate code, Symfony commands can optionally use the | ||
**Symfony Style Guide**. These styles are implemented as a set of helper methods | ||
which allow to create *semantic* commands and forget about their styling. | ||
|
||
Basic Usage | ||
----------- | ||
|
||
In your command, instantiate the :class:`Symfony\\Component\\Console\\Style\\SymfonyStyle` | ||
class and pass the ``$input`` and ``$output`` variables as its arguments. Then, | ||
you can start using any of its helpers, such as ``title()``, which displays the | ||
title of the command:: | ||
|
||
// src/AppBundle/Command/GreetCommand.php | ||
namespace AppBundle\Command; | ||
|
||
use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand; | ||
use Symfony\Component\Console\Helper\SymfonyStyle; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There is still a lot of occurrences of There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm sorry. Fixed now. |
||
use Symfony\Component\Console\Input\InputInterface; | ||
use Symfony\Component\Console\Output\OutputInterface; | ||
|
||
class GreetCommand extends ContainerAwareCommand | ||
{ | ||
// ... | ||
|
||
protected function execute(InputInterface $input, OutputInterface $output) | ||
{ | ||
$io = new SymfonyStyle($input, $output); | ||
$io->title('Lorem Ipsum Dolor Sit Amet'); | ||
|
||
// ... | ||
} | ||
} | ||
|
||
.. tip:: | ||
|
||
You can use any name for the variable that stores the Symfony styles, but | ||
it's recommended to name it ``$io`` because it's concise and conveys the | ||
notion that it interacts both with the input and the output of the command. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm -1 on explicitely recommending the variable name. 90% of the users will already use There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Removed. |
||
|
||
Helper Methods | ||
-------------- | ||
|
||
The :class:`Symfony\\Component\\Console\\Style\\SymfonyStyle` class defines 18 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. let's skip the number here and replace ti with "some". If we add a method, I'm sure we forget to update this number. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That's a good idea! |
||
helper methods that cover the most common interactions performed by console commands. | ||
|
||
Common Output Elements | ||
~~~~~~~~~~~~~~~~~~~~~~ | ||
|
||
:method:`Symfony\\Component\\Console\\Helper\\StyleInterface::title` | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. what about subgrouping this list into:
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I like your idea ... but I don't like the proposed sections. I've created other sections. Please let me know what you think. Thanks. |
||
It displays the given string as the command title. This method is meant to | ||
be used only once in a given command, but nothing prevents you to use it | ||
repeatedly:: | ||
|
||
$io->title('Lorem ipsum dolor sit amet'); | ||
|
||
:method:`Symfony\\Component\\Console\\Helper\\StyleInterface::section` | ||
It displays the given string as the title of some command section. This is | ||
only needed in complex commands which want to better separate their contents:: | ||
|
||
$io->section('Adding a User'); | ||
|
||
// ... | ||
|
||
$io->section('Generating the Password'); | ||
|
||
// ... | ||
|
||
:method:`Symfony\\Component\\Console\\Helper\\StyleInterface::text` | ||
It displays the given string or array of strings as regular text. This is | ||
useful to render help messages and instructions for the user running the | ||
command:: | ||
|
||
// use simple strings for short messages | ||
$io->text('Lorem ipsum dolor sit amet'); | ||
|
||
// ... | ||
|
||
// consider using arrays when displaying long messages | ||
$io->text(array( | ||
'Lorem ipsum dolor sit amet', | ||
'Consectetur adipiscing elit', | ||
'Aenean sit amet arcu vitae sem faucibus porta', | ||
)); | ||
|
||
:method:`Symfony\\Component\\Console\\Helper\\StyleInterface::listing` | ||
It displays an unordered list of elements passed as an array:: | ||
|
||
$io->listing(array( | ||
'Element #1 Lorem ipsum dolor sit amet', | ||
'Element #2 Lorem ipsum dolor sit amet', | ||
'Element #3 Lorem ipsum dolor sit amet', | ||
)); | ||
|
||
:method:`Symfony\\Component\\Console\\Helper\\StyleInterface::table` | ||
It displays the given array of headers and rows as a compact table:: | ||
|
||
$io->table( | ||
array('Header 1', 'Header 2'), | ||
array( | ||
array('Cell 1-1', 'Cell 1-2'), | ||
array('Cell 2-1', 'Cell 2-2'), | ||
array('Cell 3-1', 'Cell 3-2'), | ||
) | ||
); | ||
|
||
:method:`Symfony\\Component\\Console\\Helper\\StyleInterface::note` | ||
It displays the given string or array of strings as a highlighted admonition. | ||
Use this helper sparingly to avoid cluttering command's output:: | ||
|
||
// use simple strings for short notes | ||
$io->note('Lorem ipsum dolor sit amet'); | ||
|
||
// ... | ||
|
||
// consider using arrays when displaying long notes | ||
$io->note(array( | ||
'Lorem ipsum dolor sit amet', | ||
'Consectetur adipiscing elit', | ||
'Aenean sit amet arcu vitae sem faucibus porta' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Some of the last array items miss the trailing comma as here |
||
)); | ||
|
||
:method:`Symfony\\Component\\Console\\Helper\\StyleInterface::caution` | ||
Similar to the ``note()`` helper, but the contents are more prominently | ||
highlighted. The resulting contents resemble an error message, so you should | ||
avoid using this helper unless strictly necessary:: | ||
|
||
// use simple strings for short caution message | ||
$io->caution('Lorem ipsum dolor sit amet'); | ||
|
||
// ... | ||
|
||
// consider using arrays when displaying long caution messages | ||
$io->caution(array( | ||
'Lorem ipsum dolor sit amet', | ||
'Consectetur adipiscing elit', | ||
'Aenean sit amet arcu vitae sem faucibus porta' | ||
)); | ||
|
||
:method:`Symfony\\Component\\Console\\Helper\\StyleInterface::newLine` | ||
It displays a blank line in the command output. Although it may seem useful, | ||
most of the times you won't need it at all. The reason is that every helper | ||
already adds their own blank lines, so you don't have to care about the | ||
vertical spacing:: | ||
|
||
// outputs a single blank line | ||
$io->newLine(); | ||
|
||
// outputs three consecutive blank lines | ||
$io->newLine(3); | ||
|
||
:method:`Symfony\\Component\\Console\\Helper\\StyleInterface::progressStart` | ||
It displays a progress bar with a number of steps equal to the argument passed | ||
to the method (don't pass any value if the length of the progress bar is | ||
unknown):: | ||
|
||
// displays a progress bar of unknown length | ||
$io->progressStart(); | ||
|
||
// displays a 100-step length progress bar | ||
$io->progressStart(100); | ||
|
||
:method:`Symfony\\Component\\Console\\Helper\\StyleInterface::progressAdvance` | ||
It makes the progress bar advance the given number of steps (or ``1`` step | ||
if no argument is passed):: | ||
|
||
// advances the progress bar 1 step | ||
$io->progressAdvance(); | ||
|
||
// advances the progress bar 10 steps | ||
$io->progressAdvance(10); | ||
|
||
:method:`Symfony\\Component\\Console\\Helper\\StyleInterface::progressFinish` | ||
It finishes the progress bar (filling up all the remaining steps when its | ||
length is known):: | ||
|
||
$io->progressFinish(); | ||
|
||
Asking for User's Input | ||
~~~~~~~~~~~~~~~~~~~~~~~ | ||
|
||
:method:`Symfony\\Component\\Console\\Helper\\StyleInterface::ask` | ||
It asks the user to provide some value:: | ||
|
||
$io->ask('What is your name?'); | ||
|
||
You can pass the default value as the second argument so the user can simply | ||
hit the <Enter> key to select that value:: | ||
|
||
$io->ask('Where are you from?', 'United States'); | ||
|
||
In case you need to validate the given value, pass a callback validator as | ||
the third argument:: | ||
|
||
$io->ask('Number of workers to start', 1, function ($number) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This block seems not to be rendered properly: http://pr-6017-6qmocelev2lwe.eu.platform.sh/cookbook/console/style.html#asking-for-user-s-input |
||
if (!is_integer($number)) { | ||
throw new \RuntimeException('You must type an integer.'); | ||
} | ||
|
||
return $number; | ||
}); | ||
|
||
:method:`Symfony\\Component\\Console\\Helper\\StyleInterface::askHidden` | ||
It's very similar to the ``ask()`` method but the user's input will be hidden | ||
and it cannot define a default value. Use it when asking for sensitive information:: | ||
|
||
$io->ask('What is your password?'); | ||
|
||
// validates the given answer | ||
$io->ask('What is your password?', function ($password) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. - ask
+ askHidden (same above) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ops! Fixed. |
||
if (empty($password)) { | ||
throw new \RuntimeException('Password cannot be empty.'); | ||
} | ||
|
||
return $password; | ||
}); | ||
|
||
:method:`Symfony\\Component\\Console\\Helper\\StyleInterface::confirm` | ||
It asks a Yes/No question to the user and it only returns ``true`` or ``false``:: | ||
|
||
$io->confirm('Restart the web server?'); | ||
|
||
You can pass the default value as the second argument so the user can simply | ||
hit the <Enter> key to select that value:: | ||
|
||
$io->confirm('Restart the web server?', true); | ||
|
||
:method:`Symfony\\Component\\Console\\Helper\\StyleInterface::choice` | ||
It asks a question whose answer is constrained to the given list of valid | ||
answers:: | ||
|
||
$io->choice('Select the queue to analyze', array('queue1', 'queue2', 'queue3')); | ||
|
||
You can pass the default value as the third argument so the user can simply | ||
hit the <Enter> key to select that value:: | ||
|
||
$io->choice('Select the queue to analyze', array('queue1', 'queue2', 'queue3'), 'queue1'); | ||
|
||
Displaying the Result of the Command | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
|
||
:method:`Symfony\\Component\\Console\\Helper\\StyleInterface::success` | ||
It displays the given string or array of strings highlighted as a successful | ||
message (with a green background and the ``[OK]`` label). It's meant to be | ||
used once to display the final result of executing the given command, but you | ||
can use it repeatedly during the execution of the command:: | ||
|
||
// use simple strings for short success messages | ||
$io->success('Lorem ipsum dolor sit amet'); | ||
|
||
// ... | ||
|
||
// consider using arrays when displaying long success messages | ||
$io->success(array( | ||
'Lorem ipsum dolor sit amet', | ||
'Consectetur adipiscing elit', | ||
)); | ||
|
||
:method:`Symfony\\Component\\Console\\Helper\\StyleInterface::warning` | ||
It displays the given string or array of strings highlighted as a warning | ||
message (with a read background and the ``[WARNING]`` label). It's meant to be | ||
used once to display the final result of executing the given command, but you | ||
can use it repeatedly during the execution of the command:: | ||
|
||
// use simple strings for short warning messages | ||
$io->warning('Lorem ipsum dolor sit amet'); | ||
|
||
// ... | ||
|
||
// consider using arrays when displaying long warning messages | ||
$io->warning(array( | ||
'Lorem ipsum dolor sit amet', | ||
'Consectetur adipiscing elit', | ||
)); | ||
|
||
:method:`Symfony\\Component\\Console\\Helper\\StyleInterface::error` | ||
It displays the given string or array of strings highlighted as an error | ||
message (with a read background and the ``[ERROR]`` label). It's meant to be | ||
used once to display the final result of executing the given command, but you | ||
can use it repeatedly during the execution of the command:: | ||
|
||
// use simple strings for short error messages | ||
$io->error('Lorem ipsum dolor sit amet'); | ||
|
||
// ... | ||
|
||
// consider using arrays when displaying long error messages | ||
$io->error(array( | ||
'Lorem ipsum dolor sit amet', | ||
'Consectetur adipiscing elit', | ||
)); | ||
|
||
Defining your Own Styles | ||
------------------------ | ||
|
||
If you don't like the design of the commands that use the Symfony Style, you can | ||
define your own set of console styles. Just create a class that implements the | ||
:class:`Symfony\\Component\\Console\\Style\\StyleInterface`:: | ||
|
||
namespace AppBundle\Console; | ||
|
||
use Symfony\Component\Console\Style\StyleInterface; | ||
|
||
class CustomStyle implements StyleInterface | ||
{ | ||
// implement the methods of the interface... | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. the three dots have to be moved to the front |
||
} | ||
|
||
Then, instantiate this custom class instead of the default ``SymfonyStyle`` in | ||
your commands. Thanks to the ``StyleInterface`` you won't need to change the code | ||
of your commands to change their appearance:: | ||
|
||
namespace AppBundle\Console; | ||
|
||
use AppBundle\Console\CustomStyle; | ||
use Symfony\Component\Console\Input\InputInterface; | ||
use Symfony\Component\Console\Output\OutputInterface; | ||
use Symfony\Component\Console\Style\SymfonyStyle; | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. missing class declaration |
||
class GreetCommand extends ContainerAwareCommand | ||
{ | ||
// ... | ||
|
||
public function execute(InputInterface $input, OutputInterface $output) | ||
{ | ||
// Before | ||
// $io = new SymfonyStyle($input, $output); | ||
|
||
// After | ||
$io = new CustomStyle($input, $output); | ||
|
||
// ... | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
public
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't have a personal preference for this ... but in the rest of the Console documentation we always use
protected
. So I'd say to leave it for consistency purposes.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok, but then the execute method of the last GreetCommand example should be protected.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You are right. Done. Thanks!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's protected in the
Command
class, so we should use protected here as well (the access point of a command is therun()
method, not theexecute()
one).