-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTokensCommand.php
More file actions
275 lines (237 loc) · 8.88 KB
/
TokensCommand.php
File metadata and controls
275 lines (237 loc) · 8.88 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
<?php
declare(strict_types=1);
namespace OpenForgeProject\MageForge\Console\Command\Theme;
use Laravel\Prompts\SearchPrompt;
use Magento\Framework\Console\Cli;
use Magento\Framework\Filesystem\Driver\File;
use Magento\Framework\Shell;
use OpenForgeProject\MageForge\Console\Command\AbstractCommand;
use OpenForgeProject\MageForge\Model\ThemeList;
use OpenForgeProject\MageForge\Model\ThemePath;
use OpenForgeProject\MageForge\Service\ThemeBuilder\BuilderPool;
use OpenForgeProject\MageForge\Service\ThemeSuggester;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
/**
* Command for generating Hyvä design tokens
*/
class TokensCommand extends AbstractCommand
{
/**
* @param ThemeList $themeList
* @param ThemePath $themePath
* @param BuilderPool $builderPool
* @param File $fileDriver
* @param Shell $shell
* @param ThemeSuggester $themeSuggester
*/
public function __construct(
private readonly ThemeList $themeList,
private readonly ThemePath $themePath,
private readonly BuilderPool $builderPool,
private readonly File $fileDriver,
private readonly Shell $shell,
private readonly ThemeSuggester $themeSuggester,
) {
parent::__construct();
}
/**
* Configure command.
*
* @return void
*/
protected function configure(): void
{
$this
->setName($this->getCommandName('hyva', 'tokens'))
->setAliases(['hyva:tokens'])
->setDescription('Generate Hyvä design tokens from design.tokens.json or hyva.config.json')
->addArgument(
'themeCode',
InputArgument::OPTIONAL,
'Theme code to generate tokens for (format: Vendor/theme)',
);
}
/**
* Execute command.
*
* @param InputInterface $input
* @param OutputInterface $output
* @return int
*/
protected function executeCommand(InputInterface $input, OutputInterface $output): int
{
$themeCode = $this->selectTheme($input->getArgument('themeCode'));
if ($themeCode === null) {
return Cli::RETURN_FAILURE;
}
$themePath = $this->validateHyvaTheme($themeCode, $output);
if ($themePath === null) {
return Cli::RETURN_FAILURE;
}
$tailwindPath = $this->validateTailwindDirectory($themePath, $themeCode);
if ($tailwindPath === null) {
return Cli::RETURN_FAILURE;
}
$isVerbose = $this->isVerbose($output);
if (!$this->generateTokens($tailwindPath, $themeCode, $isVerbose)) {
return Cli::RETURN_FAILURE;
}
$this->handleOutputFile($tailwindPath, $themePath, $themeCode);
return Cli::RETURN_SUCCESS;
}
/**
* Resolve theme code from argument or interactive prompt.
*
* @param string|null $themeCode
* @return string|null
*/
private function selectTheme(?string $themeCode): ?string
{
if (!empty($themeCode)) {
return $themeCode;
}
$themes = $this->themeList->getAllThemes();
$options = array_values(array_map(fn($theme) => $theme->getCode(), $themes));
$themeCodePrompt = new SearchPrompt(
label: 'Select theme to generate tokens for',
options: fn(string $value) => empty($value)
? $options
: array_values(array_filter($options, fn($option) => stripos((string)$option, $value) !== false)),
placeholder: 'Type to search theme...',
scroll: 10,
hint: 'Type to search, arrow keys to navigate, Enter to confirm',
);
try {
$themeCode = $themeCodePrompt->prompt();
\Laravel\Prompts\Prompt::terminal()->restoreTty();
return $themeCode;
} catch (\Exception $e) {
$this->io->error('Interactive mode failed: ' . $e->getMessage());
return null;
}
}
/**
* Validate that the theme exists and is a Hyva theme.
*
* @param string $themeCode
* @param OutputInterface $output
* @return string|null
*/
private function validateHyvaTheme(string $themeCode, OutputInterface $output): ?string
{
$themePath = $this->themePath->getPath($themeCode);
if ($themePath === null) {
// Try to suggest similar themes
$correctedTheme = $this->handleInvalidThemeWithSuggestions($themeCode, $this->themeSuggester, $output);
// If no theme was selected, exit
if ($correctedTheme === null) {
return null;
}
// Use the corrected theme code
$themeCode = $correctedTheme;
$themePath = $this->themePath->getPath($themeCode);
// Double-check the corrected theme exists
if ($themePath === null) {
$this->io->error("Theme $themeCode is not installed.");
return null;
}
$this->io->info("Using theme: $themeCode");
}
$builder = $this->builderPool->getBuilder($themePath);
if ($builder === null || $builder->getName() !== 'HyvaThemes') {
$this->io->error("Theme $themeCode is not a Hyvä theme. This command only works with Hyvä themes.");
return null;
}
return $themePath;
}
/**
* Validate that the tailwind directory exists for the theme.
*
* @param string $themePath
* @param string $themeCode
* @return string|null
*/
private function validateTailwindDirectory(string $themePath, string $themeCode): ?string
{
$tailwindPath = rtrim($themePath, '/') . '/web/tailwind';
if (!$this->fileDriver->isDirectory($tailwindPath)) {
$this->io->error("Tailwind directory not found in: $tailwindPath");
return null;
}
if (!$this->fileDriver->isDirectory($tailwindPath . '/node_modules')) {
$this->io->warning('Node modules not found. Please run: bin/magento mageforge:theme:build ' . $themeCode);
return null;
}
return $tailwindPath;
}
/**
* Run token generation in the tailwind directory.
*
* @param string $tailwindPath
* @param string $themeCode
* @param bool $isVerbose
* @return bool
*/
private function generateTokens(string $tailwindPath, string $themeCode, bool $isVerbose): bool
{
if ($isVerbose) {
$this->io->section("Generating Hyvä design tokens for theme: $themeCode");
$this->io->text("Working directory: $tailwindPath");
}
try {
if ($isVerbose) {
$this->io->text('Running npx hyva-tokens...');
}
$this->shell->execute('cd %s && npx hyva-tokens', [$tailwindPath]);
return true;
} catch (\Exception $e) {
$this->io->error('Failed to generate Hyvä design tokens: ' . $e->getMessage());
return false;
}
}
/**
* Report and store generated token output.
*
* @param string $tailwindPath
* @param string $themePath
* @param string $themeCode
* @return void
*/
private function handleOutputFile(string $tailwindPath, string $themePath, string $themeCode): void
{
$isVendorTheme = str_contains($themePath, '/vendor/');
$sourceFilePath = $tailwindPath . '/generated/hyva-tokens.css';
if ($isVendorTheme) {
$generatedFilePath = $this->copyToVarGenerated($sourceFilePath, $themeCode);
$this->io->success('Hyvä design tokens generated successfully.');
$this->io->note('This is a vendor theme. Tokens have been saved to var/generated/hyva-token/ instead.');
$this->io->text('Generated file: ' . $generatedFilePath);
} else {
$this->io->success('Hyvä design tokens generated successfully.');
$this->io->text('Generated file: ' . $sourceFilePath);
}
$this->io->newLine();
}
/**
* Copy generated tokens to var/generated for vendor themes.
*
* @param string $sourceFilePath
* @param string $themeCode
* @return string
*/
private function copyToVarGenerated(string $sourceFilePath, string $themeCode): string
{
$currentDir = getcwd();
$varGeneratedPath = $currentDir . '/var/generated/hyva-token/' . str_replace('/', '/', $themeCode);
if (!$this->fileDriver->isDirectory($varGeneratedPath)) {
$this->fileDriver->createDirectory($varGeneratedPath, 0755);
}
$generatedFilePath = $varGeneratedPath . '/hyva-tokens.css';
if ($this->fileDriver->isExists($sourceFilePath)) {
$this->fileDriver->copy($sourceFilePath, $generatedFilePath);
}
return $generatedFilePath;
}
}