Welcome to mirror list, hosted at ThFree Co, Russian Federation.

GenerateVueComponent.php « Commands « CoreVue « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: af091360d59e09f990eda5a0823f95c2789444d5 (plain)
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
71
72
73
74
75
<?php
/**
 * Matomo - free/libre analytics platform
 *
 * @link https://matomo.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 */

namespace Piwik\Plugins\CoreVue\Commands;

use Piwik\Plugin\ConsoleCommand;
use Piwik\Plugin\Manager;
use Piwik\Plugins\CoreConsole\Commands\GenerateAngularConstructBase;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;

class GenerateVueComponent extends GenerateAngularConstructBase
{
    protected function configure()
    {
        $this->setName('generate:vue-component')
            ->setDescription('Generates a vue component for a plugin.')
            ->addOption('pluginname', null, InputOption::VALUE_REQUIRED, 'The name of an existing plugin')
            ->addOption('component', null, InputOption::VALUE_REQUIRED, 'The name of the component.');
    }

    protected function execute(InputInterface $input, OutputInterface $output)
    {
        $pluginName = $this->getPluginName($input, $output);
        $component  = $this->getConstructName($input, $output, $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');
        $adapterFunctionName = lcfirst($component) . 'Adapter';
        $replace = array(
            'ExampleVue'       => $pluginName,
            'ExampleComponent' => $component,
            'exampleVueComponent' => lcfirst($component),
            'AsyncExampleComponent' => 'Async' . $component,
            'exampleVueComponentAdapter' => $adapterFunctionName,
        );

        $allowlistFiles = array(
            '/vue',
            '/vue/src',
            '/vue/src/ExampleComponent',
            '/vue/src/ExampleComponent/ExampleComponent.vue',
            '/vue/src/ExampleComponent/ExampleComponent.adapter.ts',
        );

        $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 $adapterFunctionName } from './$component/$component.adapter';\n", FILE_APPEND);
        file_put_contents($indexFile, "export { default as $component } from './$component/$component.vue';\n", FILE_APPEND);

        // TODO: generate a less file as well?

        $this->writeSuccessMessage($output, 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).'),
        ));
    }
}