1
0
mirror of https://github.com/flextype/flextype.git synced 2025-08-06 13:16:45 +02:00

feat(console): improve entries:move logic

This commit is contained in:
Awilum
2022-05-01 16:03:28 +03:00
parent dfc5b9fe4a
commit 94ba7ac2cd

View File

@@ -20,7 +20,8 @@ use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Style\SymfonyStyle;
use function Thermage\div;
use function Thermage\renderToString;
class EntriesMoveCommand extends Command
{
@@ -34,13 +35,34 @@ class EntriesMoveCommand extends Command
protected function execute(InputInterface $input, OutputInterface $output): int
{
$io = new SymfonyStyle($input, $output);
$id = $input->getArgument('id');
$newID = $input->getArgument('newID');
if (entries()->move($input->getArgument('id'), $input->getArgument('newID'))) {
$io->success('Entry ' . $input->getArgument('id') . ' moved to ' . $input->getArgument('newID'));
if (! entries()->has($id)) {
$output->write(
renderToString(
div('Failure: Entry [b]' . $id . '[/b] doesn\'t exists.',
'bg-danger px-2 py-1')
)
);
return Command::FAILURE;
}
if (entries()->move($id, $newID)) {
$output->write(
renderToString(
div('Success: Entry [b]' . $id . '[/b] moved to [b]' . $newID . '[/b]',
'bg-success px-2 py-1')
)
);
return Command::SUCCESS;
} else {
$io->error('Entry ' . $input->getArgument('id') . ' wasn\'t moved to ' . $input->getArgument('newID'));
$output->write(
renderToString(
div('Failure: Entry [b]' . $id . '[/b] wasn\'t moved to [b]' . $newID . '[/b]',
'bg-danger px-2 py-1')
)
);
return Command::FAILURE;
}
}