1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
<?php
/**
* Matomo - free/libre analytics platform
*
* @link https://matomo.org
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*/
namespace Piwik\Plugins\CoreVue\Commands;
use Piwik\Plugin\Manager;
use Piwik\Plugins\CoreConsole\Commands\GenerateVueConstructBase;
class GenerateVueComponent extends GenerateVueConstructBase
{
protected function configure()
{
$this->setName('generate:vue-component')
->setDescription('Generates a vue component for a plugin.')
->addRequiredValueOption('pluginname', null, 'The name of an existing plugin')
->addRequiredValueOption('component', null, 'The name of the component.');
}
protected function doExecute(): int
{
$pluginName = $this->getPluginName();
$component = $this->getConstructName($optionName = 'component', $constructType = 'component');
$pluginPath = $this->getPluginPath($pluginName);
$targetFile = $pluginPath . '/vue/src/' . $component . '.vue';
if (is_file($targetFile)) {
throw new \Exception('The Vue component ' . $component . '.vue already exists in plugin '
. $pluginName);
}
$exampleFolder = Manager::getPluginDirectory('ExampleVue');
$replace = array(
'ExampleVue' => $pluginName,
'ExampleComponent' => $component,
'exampleVueComponent' => lcfirst($component),
'AsyncExampleComponent' => 'Async' . $component,
);
$allowlistFiles = array(
'/vue',
'/vue/src',
'/vue/src/ExampleComponent',
'/vue/src/ExampleComponent/ExampleComponent.vue',
);
$this->copyTemplateToPlugin($exampleFolder, $pluginName, $replace, $allowlistFiles);
$indexFile = $pluginPath . '/vue/src/index.ts';
if (!file_exists($indexFile)) {
file_put_contents($indexFile, '');
}
file_put_contents($indexFile, "export { default as $component } from './$component/$component.vue';\n", FILE_APPEND);
// TODO: generate a less file as well?
$this->writeSuccessMessage(array(
sprintf('Vue component "%s" for plugin "%s" in "%s" generated', $component, $pluginName, $targetFile),
sprintf('You should now build the vue library using the vue:build command (use --watch to continuously build after making changes).'),
));
return self::SUCCESS;
}
}
|