Completed
Push — master ( 63d8d6...28be9d )
by Raphael
11:25
created
src/Scaffolder/Commands/GeneratorCommand.php 2 patches
Unused Use Statements   +1 added lines, -4 removed lines patch added patch discarded remove patch
@@ -39,11 +39,8 @@
 block discarded – undo
39 39
 use Scaffolder\Support\Json;
40 40
 use Scaffolder\Support\Arrays;
41 41
 use Scaffolder\Support\CamelCase;
42
-use Scaffolder\Themes\IScaffolderThemeLayouts;
43
-use Scaffolder\Themes\IScaffolderThemeViews;
44 42
 use Scaffolder\Compilers\Support\PathParser;
45
-
46
-use stdClass ;
43
+use stdClass;
47 44
 
48 45
 class GeneratorCommand extends Command
49 46
 {
Please login to merge, or discard this patch.
Indentation   +564 added lines, -564 removed lines patch added patch discarded remove patch
@@ -47,334 +47,334 @@  discard block
 block discarded – undo
47 47
 
48 48
 class GeneratorCommand extends Command
49 49
 {
50
-	protected $signature = 'scaffolder:generate {app=laravel} {--c|clear-all : Clears cache and drafts before generate}';
50
+    protected $signature = 'scaffolder:generate {app=laravel} {--c|clear-all : Clears cache and drafts before generate}';
51 51
 
52
-	protected $description = 'Scaffold an application';
52
+    protected $description = 'Scaffold an application';
53 53
 
54
-	protected $stubsDirectory;
54
+    protected $stubsDirectory;
55 55
 
56
-	public function __construct()
57
-	{
58
-		parent::__construct();
56
+    public function __construct()
57
+    {
58
+        parent::__construct();
59 59
 
60
-		$this->stubsDirectory = __DIR__ . '/../../../stubs/';
61
-	}
60
+        $this->stubsDirectory = __DIR__ . '/../../../stubs/';
61
+    }
62 62
 
63
-	/**
64
-	 * Execute the Command.
65
-	 * @return void
66
-	 */
67
-	public function handle()
68
-	{
69
-		// check if is to clear cache
70
-		if($this->option('clear-all')){
71
-			$this->call('scaffolder:clear');
72
-		}
63
+    /**
64
+     * Execute the Command.
65
+     * @return void
66
+     */
67
+    public function handle()
68
+    {
69
+        // check if is to clear cache
70
+        if($this->option('clear-all')){
71
+            $this->call('scaffolder:clear');
72
+        }
73 73
 
74
-		// Create drafs directory
75
-		Directory::createIfNotExists(base_path('drafts'));
74
+        // Create drafs directory
75
+        Directory::createIfNotExists(base_path('drafts'));
76 76
 
77
-		switch ($this->argument('app')) {
78
-			case 'api':
79
-				$this->handleApi();
80
-				break;
77
+        switch ($this->argument('app')) {
78
+            case 'api':
79
+                $this->handleApi();
80
+                break;
81 81
 
82
-			case 'angularjs':
83
-				$this->handleAngularJs();
84
-				break;
82
+            case 'angularjs':
83
+                $this->handleAngularJs();
84
+                break;
85 85
 
86
-			case 'ionic':
87
-				# code...
88
-				break;
86
+            case 'ionic':
87
+                # code...
88
+                break;
89 89
 
90
-			case 'android':
91
-				#TODO implement code...
92
-				break;
90
+            case 'android':
91
+                #TODO implement code...
92
+                break;
93 93
 
94
-			case 'ios':
95
-				#TODO implement code...
96
-				break;
94
+            case 'ios':
95
+                #TODO implement code...
96
+                break;
97 97
 			
98
-			case 'blade':
99
-				$this->handleBlade();
100
-				break;
98
+            case 'blade':
99
+                $this->handleBlade();
100
+                break;
101 101
 				
102
-			default:
103
-				$this->handleLaravel();
104
-				break;
105
-		}
102
+            default:
103
+                $this->handleLaravel();
104
+                break;
105
+        }
106 106
 
107 107
 		
108
-	}
109
-
110
-	/**
111
-	 * API Generation command for API files.  
112
-	 * @return void
113
-	 */
114
-	private function handleApi(){
115
-		// Get all the models
116
-		$modelsData = $this->getAllModelsData();
117
-
118
-		// Start progress bar
119
-		$this->output->progressStart(count($modelsData));
120
-
121
-		// Get app config
122
-		$scaffolderConfig = $this->getScaffolderConfig();
123
-
124
-		// Compiler output
125
-		$modelCompilerOutput = [];
126
-		$controllerCompilerOutput = [];
127
-		$migrationCompilerOutput = [];
128
-
129
-		// Sidenav links
130
-		$sidenavLinks = [];
131
-
132
-		// Compiled routes
133
-		$compiledRoutes = '';
134
-
135
-		// Create route compiler
136
-		$routeCompiler = new RouteCompiler($scaffolderConfig);
137
-
138
-		// Create models directory
139
-		Directory::createIfNotExists(app_path('Models'));
140
-
141
-		// Create drafts directory
142
-		// migrations
143
-		Directory::createIfNotExists(PathParser::parse($scaffolderConfig->generator->paths->migrations), 0755, true);
144
-		// models
145
-		Directory::createIfNotExists(PathParser::parse($scaffolderConfig->generator->paths->models), 0755, true);
146
-		// repositories
147
-		Directory::createIfNotExists(PathParser::parse($scaffolderConfig->generator->paths->repositories), 0755, true);
148
-		// controllers
149
-		Directory::createIfNotExists(PathParser::parse($scaffolderConfig->generator->paths->controllers), 0755, true);
150
-		// routes
151
-		Directory::createIfNotExists(PathParser::parse($scaffolderConfig->generator->paths->routes), 0755, true);
108
+    }
109
+
110
+    /**
111
+     * API Generation command for API files.  
112
+     * @return void
113
+     */
114
+    private function handleApi(){
115
+        // Get all the models
116
+        $modelsData = $this->getAllModelsData();
117
+
118
+        // Start progress bar
119
+        $this->output->progressStart(count($modelsData));
120
+
121
+        // Get app config
122
+        $scaffolderConfig = $this->getScaffolderConfig();
123
+
124
+        // Compiler output
125
+        $modelCompilerOutput = [];
126
+        $controllerCompilerOutput = [];
127
+        $migrationCompilerOutput = [];
128
+
129
+        // Sidenav links
130
+        $sidenavLinks = [];
131
+
132
+        // Compiled routes
133
+        $compiledRoutes = '';
134
+
135
+        // Create route compiler
136
+        $routeCompiler = new RouteCompiler($scaffolderConfig);
137
+
138
+        // Create models directory
139
+        Directory::createIfNotExists(app_path('Models'));
140
+
141
+        // Create drafts directory
142
+        // migrations
143
+        Directory::createIfNotExists(PathParser::parse($scaffolderConfig->generator->paths->migrations), 0755, true);
144
+        // models
145
+        Directory::createIfNotExists(PathParser::parse($scaffolderConfig->generator->paths->models), 0755, true);
146
+        // repositories
147
+        Directory::createIfNotExists(PathParser::parse($scaffolderConfig->generator->paths->repositories), 0755, true);
148
+        // controllers
149
+        Directory::createIfNotExists(PathParser::parse($scaffolderConfig->generator->paths->controllers), 0755, true);
150
+        // routes
151
+        Directory::createIfNotExists(PathParser::parse($scaffolderConfig->generator->paths->routes), 0755, true);
152 152
 		
153
-		// Iterate over models data
154
-		foreach ($modelsData as $modelData)
155
-		{
153
+        // Iterate over models data
154
+        foreach ($modelsData as $modelData)
155
+        {
156 156
 			
157
-			// Create Compilers
158
-			$stubModel = null;
159
-			$stubController = null;
157
+            // Create Compilers
158
+            $stubModel = null;
159
+            $stubController = null;
160 160
 			
161
-			if ($modelData->tableName == "file") {
162
-				$stubModel = 'Model/FileModel.php';
163
-				$stubController = 'Controller/FileController.php';
164
-			}
165
-
166
-			$modelCompiler = new ModelCompiler($scaffolderConfig, $modelData, $stubModel);
167
-			$migrationCompiler = new MigrationCompiler($scaffolderConfig, $modelData);
168
-			$controllerCompiler = new ControllerCompiler($scaffolderConfig, $modelData, $stubController);
169
-
170
-			// Compile stubs
171
-			array_push($modelCompilerOutput, $modelCompiler->compile());
172
-			array_push($controllerCompilerOutput, $controllerCompiler->compile());
173
-			array_push($migrationCompilerOutput, $migrationCompiler->compile());
161
+            if ($modelData->tableName == "file") {
162
+                $stubModel = 'Model/FileModel.php';
163
+                $stubController = 'Controller/FileController.php';
164
+            }
165
+
166
+            $modelCompiler = new ModelCompiler($scaffolderConfig, $modelData, $stubModel);
167
+            $migrationCompiler = new MigrationCompiler($scaffolderConfig, $modelData);
168
+            $controllerCompiler = new ControllerCompiler($scaffolderConfig, $modelData, $stubController);
169
+
170
+            // Compile stubs
171
+            array_push($modelCompilerOutput, $modelCompiler->compile());
172
+            array_push($controllerCompilerOutput, $controllerCompiler->compile());
173
+            array_push($migrationCompilerOutput, $migrationCompiler->compile());
174 174
 			
175
-			$compiledRoutes .= $routeCompiler->replaceResource($modelData);
176
-			//
177
-
178
-			// Add entity link
179
-			array_push($sidenavLinks, $modelData->modelName);
180
-
181
-			// Advance progress
182
-			$this->output->progressAdvance();
183
-		}
184
-
185
-		// Store compiled routes
186
-		$routeCompiler->compileGroup($compiledRoutes);
187
-
188
-		// Finish progress
189
-		$this->output->progressFinish();
190
-
191
-		// Summary
192
-		$this->comment('- Files created');
193
-
194
-		$this->comment('- - Controllers');
195
-		foreach ($controllerCompilerOutput as $controllerFile)
196
-		{
197
-			$this->info('- - - ' . $controllerFile);
198
-		}
199
-
200
-		$this->comment('- - Migrations');
201
-		foreach ($migrationCompilerOutput as $migrationFile)
202
-		{
203
-			$this->info('- - - ' . $migrationFile);
204
-		}
205
-
206
-		$this->comment('- - Models');
207
-		foreach ($modelCompilerOutput as $modelFile)
208
-		{
209
-			$this->info('- - - ' . $modelFile);
210
-		}
211
-	}
212
-
213
-	/**
214
-	 * Code Generation command for AngularJs Material design files.  
215
-	 * @return void
216
-	 */
217
-	private function handleAngularJs(){
218
-		// Get all the models
219
-		$modelsData = $this->getAllModelsData();
220
-
221
-		// Start progress bar
222
-		$this->output->progressStart((count($modelsData) * 2) + (count($modelsData) * 2 * 4) + 1);
223
-
224
-		// Get app config
225
-		$scaffolderConfig = $this->getScaffolderConfig();
226
-
227
-		// Compiler output
228
-		$resourceCompilerOutput = [];
229
-		$moduleCompilerOutput = [];
230
-		$translateCompilerOutput = [];
231
-		// register
232
-		$registerModuleCompilerOutput = [];
233
-		$registerControllerCompilerOutput = [];
234
-		$registerTemplateCompilerOutput = [];
175
+            $compiledRoutes .= $routeCompiler->replaceResource($modelData);
176
+            //
177
+
178
+            // Add entity link
179
+            array_push($sidenavLinks, $modelData->modelName);
180
+
181
+            // Advance progress
182
+            $this->output->progressAdvance();
183
+        }
184
+
185
+        // Store compiled routes
186
+        $routeCompiler->compileGroup($compiledRoutes);
187
+
188
+        // Finish progress
189
+        $this->output->progressFinish();
190
+
191
+        // Summary
192
+        $this->comment('- Files created');
193
+
194
+        $this->comment('- - Controllers');
195
+        foreach ($controllerCompilerOutput as $controllerFile)
196
+        {
197
+            $this->info('- - - ' . $controllerFile);
198
+        }
199
+
200
+        $this->comment('- - Migrations');
201
+        foreach ($migrationCompilerOutput as $migrationFile)
202
+        {
203
+            $this->info('- - - ' . $migrationFile);
204
+        }
205
+
206
+        $this->comment('- - Models');
207
+        foreach ($modelCompilerOutput as $modelFile)
208
+        {
209
+            $this->info('- - - ' . $modelFile);
210
+        }
211
+    }
212
+
213
+    /**
214
+     * Code Generation command for AngularJs Material design files.  
215
+     * @return void
216
+     */
217
+    private function handleAngularJs(){
218
+        // Get all the models
219
+        $modelsData = $this->getAllModelsData();
220
+
221
+        // Start progress bar
222
+        $this->output->progressStart((count($modelsData) * 2) + (count($modelsData) * 2 * 4) + 1);
223
+
224
+        // Get app config
225
+        $scaffolderConfig = $this->getScaffolderConfig();
226
+
227
+        // Compiler output
228
+        $resourceCompilerOutput = [];
229
+        $moduleCompilerOutput = [];
230
+        $translateCompilerOutput = [];
231
+        // register
232
+        $registerModuleCompilerOutput = [];
233
+        $registerControllerCompilerOutput = [];
234
+        $registerTemplateCompilerOutput = [];
235 235
 		
236
-		// list
237
-		$listModuleCompilerOutput = [];
238
-		$listControllerCompilerOutput = [];
239
-		$listTemplateCompilerOutput = [];
240
-		//$listDetailCompilerOutput = [];
241
-		//$listChooseColumnsCompilerOutput = [];
242
-
243
-		// Compiled indexes
244
-		$compiledIndexes = '';
236
+        // list
237
+        $listModuleCompilerOutput = [];
238
+        $listControllerCompilerOutput = [];
239
+        $listTemplateCompilerOutput = [];
240
+        //$listDetailCompilerOutput = [];
241
+        //$listChooseColumnsCompilerOutput = [];
242
+
243
+        // Compiled indexes
244
+        $compiledIndexes = '';
245 245
 	
246
-		// Create index compiler
247
-		$indexModuleCompiler = new IndexModuleCompiler($scaffolderConfig);
246
+        // Create index compiler
247
+        $indexModuleCompiler = new IndexModuleCompiler($scaffolderConfig);
248 248
 
249
-		$indexApiCompiler = new IndexApiCompiler($scaffolderConfig);
249
+        $indexApiCompiler = new IndexApiCompiler($scaffolderConfig);
250 250
 
251
-		// Create drafts directory
252
-		// pages
253
-		Directory::createIfNotExists(PathParser::parse($scaffolderConfig->generator->paths->pages), 0755, true);
251
+        // Create drafts directory
252
+        // pages
253
+        Directory::createIfNotExists(PathParser::parse($scaffolderConfig->generator->paths->pages), 0755, true);
254 254
 		
255
-		$intKey = 1;
256
-		// Iterate over models data
257
-		foreach ($modelsData as $modelData)
258
-		{
255
+        $intKey = 1;
256
+        // Iterate over models data
257
+        foreach ($modelsData as $modelData)
258
+        {
259 259
 			
260
-			// Create Compilers
261
-			$resourceCompiler = new ResourceCompiler($scaffolderConfig, $modelData);
262
-			$moduleCompiler = new ModuleCompiler($scaffolderConfig, $modelData);
263
-			// register
264
-			$registerModuleCompiler = new RegisterModuleCompiler($scaffolderConfig, $modelData);
265
-			$registerControllerCompiler = new RegisterControllerCompiler($scaffolderConfig, $modelData);
266
-			$registerTemplateCompiler = new RegisterTemplateCompiler($scaffolderConfig, $modelData);
267
-			// translate
268
-			$translateCompiler = new TranslateCompiler($scaffolderConfig, $modelData);
269
-			// list
270
-			$listModuleCompiler = new ListModuleCompiler($scaffolderConfig, $modelData);
271
-			$listControllerCompiler = new ListControllerCompiler($scaffolderConfig, $modelData);
272
-			$listTemplateCompiler = new ListTemplateCompiler($scaffolderConfig, $modelData);
273
-			//$listDetailCompiler = new ListDetailCompiler($scaffolderConfig, $modelData);
274
-			//$listChooseColumnsCompiler = new ListChooseColumnsCompiler($scaffolderConfig, $modelData);
260
+            // Create Compilers
261
+            $resourceCompiler = new ResourceCompiler($scaffolderConfig, $modelData);
262
+            $moduleCompiler = new ModuleCompiler($scaffolderConfig, $modelData);
263
+            // register
264
+            $registerModuleCompiler = new RegisterModuleCompiler($scaffolderConfig, $modelData);
265
+            $registerControllerCompiler = new RegisterControllerCompiler($scaffolderConfig, $modelData);
266
+            $registerTemplateCompiler = new RegisterTemplateCompiler($scaffolderConfig, $modelData);
267
+            // translate
268
+            $translateCompiler = new TranslateCompiler($scaffolderConfig, $modelData);
269
+            // list
270
+            $listModuleCompiler = new ListModuleCompiler($scaffolderConfig, $modelData);
271
+            $listControllerCompiler = new ListControllerCompiler($scaffolderConfig, $modelData);
272
+            $listTemplateCompiler = new ListTemplateCompiler($scaffolderConfig, $modelData);
273
+            //$listDetailCompiler = new ListDetailCompiler($scaffolderConfig, $modelData);
274
+            //$listChooseColumnsCompiler = new ListChooseColumnsCompiler($scaffolderConfig, $modelData);
275 275
 			
276
-			// Compile stubs
277
-			array_push($resourceCompilerOutput, $resourceCompiler->compile());
278
-			array_push($moduleCompilerOutput, $moduleCompiler->compile());
279
-			array_push($translateCompilerOutput, $translateCompiler->compile());
280
-			// register
281
-			array_push($registerModuleCompilerOutput, $registerModuleCompiler->compile());
282
-			array_push($registerControllerCompilerOutput, $registerControllerCompiler->compile());
283
-			array_push($registerTemplateCompilerOutput, $registerTemplateCompiler->compile());
284
-			// list
285
-			array_push($listModuleCompilerOutput, $listModuleCompiler->compile());
286
-			array_push($listControllerCompilerOutput, $listControllerCompiler->compile());
287
-			array_push($listTemplateCompilerOutput, $listTemplateCompiler->compile());
288
-			//array_push($listDetailCompilerOutput, $listDetailCompiler->compile());
289
-			//array_push($listChooseColumnsCompilerOutput, $listChooseColumnsCompiler->compile());
290
-
291
-			$compiledIndexes .= $indexModuleCompiler->replaceResource($modelData);
292
-			if ($intKey < count($modelsData))
293
-				$compiledIndexes .= ",";
294
-
295
-			$intKey++;
296
-			// Advance progress
297
-			$this->output->progressAdvance();
298
-		}
299
-
300
-		// Store compiled indexes
301
-		$indexModuleCompiler->compileGroup($compiledIndexes);
276
+            // Compile stubs
277
+            array_push($resourceCompilerOutput, $resourceCompiler->compile());
278
+            array_push($moduleCompilerOutput, $moduleCompiler->compile());
279
+            array_push($translateCompilerOutput, $translateCompiler->compile());
280
+            // register
281
+            array_push($registerModuleCompilerOutput, $registerModuleCompiler->compile());
282
+            array_push($registerControllerCompilerOutput, $registerControllerCompiler->compile());
283
+            array_push($registerTemplateCompilerOutput, $registerTemplateCompiler->compile());
284
+            // list
285
+            array_push($listModuleCompilerOutput, $listModuleCompiler->compile());
286
+            array_push($listControllerCompilerOutput, $listControllerCompiler->compile());
287
+            array_push($listTemplateCompilerOutput, $listTemplateCompiler->compile());
288
+            //array_push($listDetailCompilerOutput, $listDetailCompiler->compile());
289
+            //array_push($listChooseColumnsCompilerOutput, $listChooseColumnsCompiler->compile());
290
+
291
+            $compiledIndexes .= $indexModuleCompiler->replaceResource($modelData);
292
+            if ($intKey < count($modelsData))
293
+                $compiledIndexes .= ",";
294
+
295
+            $intKey++;
296
+            // Advance progress
297
+            $this->output->progressAdvance();
298
+        }
299
+
300
+        // Store compiled indexes
301
+        $indexModuleCompiler->compileGroup($compiledIndexes);
302 302
 		
303
-		// store compiled api
304
-		$fileApi = $indexApiCompiler->compile();
303
+        // store compiled api
304
+        $fileApi = $indexApiCompiler->compile();
305 305
 
306
-		// Advance progress
307
-		$this->output->progressAdvance();
306
+        // Advance progress
307
+        $this->output->progressAdvance();
308 308
 	
309
-		// Finish progress
310
-		$this->output->progressFinish();
311
-
312
-		// Summary
313
-		$this->comment('- Files created');
314
-
315
-		$this->comment('- - Index Api');
316
-
317
-		$this->info('- - - ' . $fileApi);
318
-
319
-		$this->comment('- - Resources');
320
-		foreach ($resourceCompilerOutput as $file)
321
-		{
322
-			$this->info('- - - ' . $file);
323
-		}
324
-
325
-		$this->comment('- - Modules');
326
-		foreach ($moduleCompilerOutput as $file)
327
-		{
328
-			$this->info('- - - ' . $file);
329
-		}
330
-
331
-		$this->comment('- - Translate');
332
-		foreach ($translateCompilerOutput as $file)
333
-		{
334
-			$this->info('- - - ' . $file);
335
-		}
336
-
337
-		$this->comment('- - Register');
338
-
339
-		$this->comment('- - - Modules');
340
-		foreach ($registerModuleCompilerOutput as $file)
341
-		{
342
-			$this->info('- - - - ' . $file);
343
-		}
344
-
345
-		$this->comment('- - - Controllers');
346
-		foreach ($registerControllerCompilerOutput as $file)
347
-		{
348
-			$this->info('- - - - ' . $file);
349
-		}
350
-
351
-		$this->comment('- - - Templates');
352
-		foreach ($registerTemplateCompilerOutput as $file)
353
-		{
354
-			$this->info('- - - - ' . $file);
355
-		}
356
-
357
-		$this->comment('- - List');
358
-
359
-		$this->comment('- - - Modules');
360
-		foreach ($listModuleCompilerOutput as $file)
361
-		{
362
-			$this->info('- - - - ' . $file);
363
-		}
364
-
365
-
366
-		$this->comment('- - - Controllers');
367
-		foreach ($listControllerCompilerOutput as $file)
368
-		{
369
-			$this->info('- - - - ' . $file);
370
-		}
371
-
372
-		$this->comment('- - - Templates');
373
-		foreach ($listTemplateCompilerOutput as $file)
374
-		{
375
-			$this->info('- - - - ' . $file);
376
-		}
377
-		/*
309
+        // Finish progress
310
+        $this->output->progressFinish();
311
+
312
+        // Summary
313
+        $this->comment('- Files created');
314
+
315
+        $this->comment('- - Index Api');
316
+
317
+        $this->info('- - - ' . $fileApi);
318
+
319
+        $this->comment('- - Resources');
320
+        foreach ($resourceCompilerOutput as $file)
321
+        {
322
+            $this->info('- - - ' . $file);
323
+        }
324
+
325
+        $this->comment('- - Modules');
326
+        foreach ($moduleCompilerOutput as $file)
327
+        {
328
+            $this->info('- - - ' . $file);
329
+        }
330
+
331
+        $this->comment('- - Translate');
332
+        foreach ($translateCompilerOutput as $file)
333
+        {
334
+            $this->info('- - - ' . $file);
335
+        }
336
+
337
+        $this->comment('- - Register');
338
+
339
+        $this->comment('- - - Modules');
340
+        foreach ($registerModuleCompilerOutput as $file)
341
+        {
342
+            $this->info('- - - - ' . $file);
343
+        }
344
+
345
+        $this->comment('- - - Controllers');
346
+        foreach ($registerControllerCompilerOutput as $file)
347
+        {
348
+            $this->info('- - - - ' . $file);
349
+        }
350
+
351
+        $this->comment('- - - Templates');
352
+        foreach ($registerTemplateCompilerOutput as $file)
353
+        {
354
+            $this->info('- - - - ' . $file);
355
+        }
356
+
357
+        $this->comment('- - List');
358
+
359
+        $this->comment('- - - Modules');
360
+        foreach ($listModuleCompilerOutput as $file)
361
+        {
362
+            $this->info('- - - - ' . $file);
363
+        }
364
+
365
+
366
+        $this->comment('- - - Controllers');
367
+        foreach ($listControllerCompilerOutput as $file)
368
+        {
369
+            $this->info('- - - - ' . $file);
370
+        }
371
+
372
+        $this->comment('- - - Templates');
373
+        foreach ($listTemplateCompilerOutput as $file)
374
+        {
375
+            $this->info('- - - - ' . $file);
376
+        }
377
+        /*
378 378
 		$this->comment('- - - Detail Dialog');
379 379
 		foreach ($listDetailCompilerOutput as $file)
380 380
 		{
@@ -388,296 +388,296 @@  discard block
 block discarded – undo
388 388
 		}
389 389
 		*/
390 390
 		
391
-	}
392
-
393
-	/**
394
-	 * Generation command for Blade. 
395
-	 * Generates Blade templates
396
-	 * @return void
397
-	 */
398
-	private function handleBlade(){
399
-		// Get all the models
400
-		$modelsData = $this->getAllModelsData();
401
-
402
-		// Start progress bar
403
-		$this->output->progressStart(count($modelsData));
404
-
405
-		// Get app config
406
-		$scaffolderConfig = $this->getScaffolderConfig();
407
-
408
-		// Compilers
409
-		$indexViewCompiler = new IndexViewCompiler();
410
-		$createViewCompiler = new CreateViewCompiler();
411
-		$editViewCompiler = new EditViewCompiler();
412
-		$pageLayoutViewCompiler = new PageLayoutCompiler();
413
-
414
-		// Compiler output
415
-		$viewCompilerOutput = [];
391
+    }
392
+
393
+    /**
394
+     * Generation command for Blade. 
395
+     * Generates Blade templates
396
+     * @return void
397
+     */
398
+    private function handleBlade(){
399
+        // Get all the models
400
+        $modelsData = $this->getAllModelsData();
401
+
402
+        // Start progress bar
403
+        $this->output->progressStart(count($modelsData));
404
+
405
+        // Get app config
406
+        $scaffolderConfig = $this->getScaffolderConfig();
407
+
408
+        // Compilers
409
+        $indexViewCompiler = new IndexViewCompiler();
410
+        $createViewCompiler = new CreateViewCompiler();
411
+        $editViewCompiler = new EditViewCompiler();
412
+        $pageLayoutViewCompiler = new PageLayoutCompiler();
413
+
414
+        // Compiler output
415
+        $viewCompilerOutput = [];
416 416
 		
417
-		// Sidenav links
418
-		$sidenavLinks = [];
417
+        // Sidenav links
418
+        $sidenavLinks = [];
419 419
 
420
-		// Compiled routes
421
-		$compiledRoutes = '';
420
+        // Compiled routes
421
+        $compiledRoutes = '';
422 422
 
423
-		// Get stubs
424
-		$indexViewStub = File::get($this->themeViews->getIndexPath());
425
-		$createViewStub = File::get($this->themeViews->getCreatePath());
426
-		$editViewStub = File::get($this->themeViews->getEditPath());
423
+        // Get stubs
424
+        $indexViewStub = File::get($this->themeViews->getIndexPath());
425
+        $createViewStub = File::get($this->themeViews->getCreatePath());
426
+        $editViewStub = File::get($this->themeViews->getEditPath());
427 427
 	
428
-		// views
429
-		Directory::createIfNotExists(PathParser::parse($scaffolderConfig->generator->paths->views), 0755, true);
430
-		// layouts
431
-		Directory::createIfNotExists(PathParser::parse($scaffolderConfig->generator->paths->layouts), 0755, true);
432
-		// assets
433
-		Directory::createIfNotExists(PathParser::parse($scaffolderConfig->generator->paths->assets), 0755, true);
428
+        // views
429
+        Directory::createIfNotExists(PathParser::parse($scaffolderConfig->generator->paths->views), 0755, true);
430
+        // layouts
431
+        Directory::createIfNotExists(PathParser::parse($scaffolderConfig->generator->paths->layouts), 0755, true);
432
+        // assets
433
+        Directory::createIfNotExists(PathParser::parse($scaffolderConfig->generator->paths->assets), 0755, true);
434 434
 	
435 435
 		
436
-		// Iterate over model files
437
-		foreach ($modelsData as $modelData)
438
-		{
439
-			// Get model name
440
-			$modelName = $modelData->modelName;
441
-
442
-			// Create views directory
443
-			Directory::createIfNotExists(base_path('resources/views/' . strtolower($modelName)));
444
-
445
-			//set hash
446
-			$modelHash = $modelData->modelHash;
447
-
448
-
449
-			// Compile stubs
450
-			array_push($viewCompilerOutput, $indexViewCompiler->compile($indexViewStub, $modelName, $modelData, $scaffolderConfig, $modelHash));
451
-			array_push($viewCompilerOutput, $createViewCompiler->compile($createViewStub, $modelName, $modelData, $scaffolderConfig, $modelHash));
452
-			array_push($viewCompilerOutput, $editViewCompiler->compile($editViewStub, $modelName, $modelData, $scaffolderConfig, $modelHash));
453
-			// Add entity link
454
-			array_push($sidenavLinks, $modelName);
455
-
456
-			// Advance progress
457
-			$this->output->progressAdvance();
458
-		}
459
-
460
-		// Create layouts directory
461
-		Directory::createIfNotExists(base_path('resources/views/layouts'), 0755, true);
462
-
463
-		// Store compiled page layout
464
-		array_push($viewCompilerOutput, $pageLayoutViewCompiler->compile(File::get($this->themeLayouts->getPagePath()), null, null, $scaffolderConfig, null, ['links' => $sidenavLinks]));
465
-
466
-		// Store create layout
467
-		$createLayout = PathParser::parse($scaffolderConfig->generator->paths->views). 'layouts/create.blade.php' ;
468
-		File::copy($this->themeLayouts->getCreatePath(), $createLayout);
469
-		array_push($viewCompilerOutput, $createLayout);
470
-
471
-		// Store edit layout
472
-		$editLayout = PathParser::parse($scaffolderConfig->generator->paths->views). 'layouts/edit.blade.php' ;
473
-		File::copy($this->themeLayouts->getCreatePath(), $editLayout);
474
-		array_push($viewCompilerOutput, $editLayout);
475
-
476
-		// Store dashboard
477
-		$dashboardLayout = PathParser::parse($scaffolderConfig->generator->paths->views). 'layouts/dashboard.blade.php' ;
478
-		File::copy($this->themeLayouts->getCreatePath(), $dashboardLayout);
479
-		array_push($viewCompilerOutput, $dashboardLayout);
480
-
481
-		// Finish progress
482
-		$this->output->progressFinish();
483
-
484
-		// Summary
485
-		$this->comment('- Files created');
486
-
487
-		$this->comment('- - Views');
488
-		foreach ($viewCompilerOutput as $viewFile)
489
-		{
490
-			$this->info('- - - ' . $viewFile);
491
-		}
492
-
493
-	}
494
-
495
-	/**
496
-	 * Generation command for laravel. 
497
-	 * Generates API Code 
498
-	 * Generates Blade templates
499
-	 * @return void
500
-	 */
501
-	private function handleLaravel(){
502
-		// generate API
503
-		$this->handleApi();
504
-
505
-		// generate BLADE
506
-		$this->handleApi();
507
-
508
-	}
509
-
510
-	/**
511
-	 * Get the app.json configuration and parse to an object
512
-	 *
513
-	 * @return void
514
-	 */
515
-	private function getScaffolderConfig(){
516
-		// Get app config
517
-		$scaffolderConfig = Json::decodeFile(base_path('scaffolder-config/app.json'));
518
-
519
-		$scaffolderConfig->generator = $scaffolderConfig->generators->{$this->argument('app')};
520
-
521
-		return $scaffolderConfig ;
522
-	}
523
-
524
-	/**
525
-	 * Get all model files and ordenates by
526
-	 *
527
-	 * @return object
528
-	 */
529
-	private function getAllModelsData(){
530
-
531
-		$modelFiles = File::allFiles(base_path('scaffolder-config/models/'));
532
-
533
-		$modelsData = [];
534
-		$orderedModelsData = [];
535
-
536
-		// set indexes
537
-		//$firstKey = 
538
-		foreach ($modelFiles as $modelFile)
539
-		{
436
+        // Iterate over model files
437
+        foreach ($modelsData as $modelData)
438
+        {
439
+            // Get model name
440
+            $modelName = $modelData->modelName;
441
+
442
+            // Create views directory
443
+            Directory::createIfNotExists(base_path('resources/views/' . strtolower($modelName)));
540 444
 
541
-			// Get model data
542
-			$modelData = Json::decodeFile($modelFile->getRealPath());
445
+            //set hash
446
+            $modelHash = $modelData->modelHash;
543 447
 
544 448
 
545
-			// Get model name
546
-			$modelName = CamelCase::convertToCamelCase(($modelFile->getBasename('.' . $modelFile->getExtension())));
449
+            // Compile stubs
450
+            array_push($viewCompilerOutput, $indexViewCompiler->compile($indexViewStub, $modelName, $modelData, $scaffolderConfig, $modelHash));
451
+            array_push($viewCompilerOutput, $createViewCompiler->compile($createViewStub, $modelName, $modelData, $scaffolderConfig, $modelHash));
452
+            array_push($viewCompilerOutput, $editViewCompiler->compile($editViewStub, $modelName, $modelData, $scaffolderConfig, $modelHash));
453
+            // Add entity link
454
+            array_push($sidenavLinks, $modelName);
547 455
 
548
-			// Get model hash
549
-			$modelHash = md5_file($modelFile->getRealPath());
456
+            // Advance progress
457
+            $this->output->progressAdvance();
458
+        }
550 459
 
551
-			// Set model name
552
-			$modelData->modelName = $modelName ;
460
+        // Create layouts directory
461
+        Directory::createIfNotExists(base_path('resources/views/layouts'), 0755, true);
553 462
 
554
-			// Set model name
555
-			$modelData->modelHash = $modelHash ;
463
+        // Store compiled page layout
464
+        array_push($viewCompilerOutput, $pageLayoutViewCompiler->compile(File::get($this->themeLayouts->getPagePath()), null, null, $scaffolderConfig, null, ['links' => $sidenavLinks]));
556 465
 
557
-			// get primary field or create 
558
-			$primaryField = $this->getPrimaryKeyField($modelData);
466
+        // Store create layout
467
+        $createLayout = PathParser::parse($scaffolderConfig->generator->paths->views). 'layouts/create.blade.php' ;
468
+        File::copy($this->themeLayouts->getCreatePath(), $createLayout);
469
+        array_push($viewCompilerOutput, $createLayout);
559 470
 
560
-			// put primary key at first position
561
-			if(isset($primaryField->declared) && !$primaryField->declared){
562
-				$modelData->fields = array_pad($modelData->fields, -(count($modelData->fields)+1), $primaryField);
563
-			}
564
-
565
-			// set timestamps
566
-			if($modelData->timeStamps){
567
-				$createdAtField = new stdClass;
568
-				$createdAtField->name = "created_at" ;
569
-				$createdAtField->index = "none" ;
570
-				$createdAtField->declared =  false ;
571
-				$createdAtField->type = new stdClass ;
572
-				$createdAtField->type->ui = 'timestamp' ;
573
-				$createdAtField->type->db = 'datetime' ;
574
-				$createdAtField->foreignKey = [];
575
-				$createdAtField->validations = "required" ;
576
-				$updatedAtField = clone($createdAtField);
577
-				$updatedAtField->name = "updated_at" ;
578
-
579
-				array_push($modelData->fields, $createdAtField);
580
-				array_push($modelData->fields, $updatedAtField);
581
-			}
582
-
583
-			$modelsData[$modelData->tableName] = $modelData ;
584
-
585
-			// put all migrations pre-requisites in top of generation hieraquical
586
-			if(count($modelData->migrationPreRequisites) == 0){
587
-				$modelsData = Arrays::moveElement($modelsData, $modelData->tableName, 0);
588
-			}
589
-
590
-		}
591
-
592
-		// let put all pre-requisites in order
593
-		$actualTablePosition = 0 ;
594
-		foreach ($modelsData as $key => $modelData)
595
-		{
596
-			// set migration order
597
-			$modelData->migrationOrder = isset($modelData->migrationOrder) ? $modelData->migrationOrder : $actualTablePosition ;
598
-
599
-			$positions = array_keys($modelsData);
600
-
601
-			foreach($modelData->migrationPreRequisites as $preRequiste){
602
-				$preRequisitePosition = array_search($preRequiste, $positions);
603
-				// change positions
604
-				if( $preRequisitePosition >  $actualTablePosition){
605
-					$modelData->migrationOrder = $preRequisitePosition ;
606
-					$modelsData[$preRequiste]->migrationOrder = $actualTablePosition ;
607
-					$modelsData = Arrays::moveElement($modelsData, $preRequiste, $actualTablePosition);
471
+        // Store edit layout
472
+        $editLayout = PathParser::parse($scaffolderConfig->generator->paths->views). 'layouts/edit.blade.php' ;
473
+        File::copy($this->themeLayouts->getCreatePath(), $editLayout);
474
+        array_push($viewCompilerOutput, $editLayout);
475
+
476
+        // Store dashboard
477
+        $dashboardLayout = PathParser::parse($scaffolderConfig->generator->paths->views). 'layouts/dashboard.blade.php' ;
478
+        File::copy($this->themeLayouts->getCreatePath(), $dashboardLayout);
479
+        array_push($viewCompilerOutput, $dashboardLayout);
480
+
481
+        // Finish progress
482
+        $this->output->progressFinish();
483
+
484
+        // Summary
485
+        $this->comment('- Files created');
486
+
487
+        $this->comment('- - Views');
488
+        foreach ($viewCompilerOutput as $viewFile)
489
+        {
490
+            $this->info('- - - ' . $viewFile);
491
+        }
492
+
493
+    }
494
+
495
+    /**
496
+     * Generation command for laravel. 
497
+     * Generates API Code 
498
+     * Generates Blade templates
499
+     * @return void
500
+     */
501
+    private function handleLaravel(){
502
+        // generate API
503
+        $this->handleApi();
504
+
505
+        // generate BLADE
506
+        $this->handleApi();
507
+
508
+    }
509
+
510
+    /**
511
+     * Get the app.json configuration and parse to an object
512
+     *
513
+     * @return void
514
+     */
515
+    private function getScaffolderConfig(){
516
+        // Get app config
517
+        $scaffolderConfig = Json::decodeFile(base_path('scaffolder-config/app.json'));
518
+
519
+        $scaffolderConfig->generator = $scaffolderConfig->generators->{$this->argument('app')};
520
+
521
+        return $scaffolderConfig ;
522
+    }
523
+
524
+    /**
525
+     * Get all model files and ordenates by
526
+     *
527
+     * @return object
528
+     */
529
+    private function getAllModelsData(){
530
+
531
+        $modelFiles = File::allFiles(base_path('scaffolder-config/models/'));
532
+
533
+        $modelsData = [];
534
+        $orderedModelsData = [];
535
+
536
+        // set indexes
537
+        //$firstKey = 
538
+        foreach ($modelFiles as $modelFile)
539
+        {
540
+
541
+            // Get model data
542
+            $modelData = Json::decodeFile($modelFile->getRealPath());
543
+
544
+
545
+            // Get model name
546
+            $modelName = CamelCase::convertToCamelCase(($modelFile->getBasename('.' . $modelFile->getExtension())));
547
+
548
+            // Get model hash
549
+            $modelHash = md5_file($modelFile->getRealPath());
550
+
551
+            // Set model name
552
+            $modelData->modelName = $modelName ;
553
+
554
+            // Set model name
555
+            $modelData->modelHash = $modelHash ;
556
+
557
+            // get primary field or create 
558
+            $primaryField = $this->getPrimaryKeyField($modelData);
559
+
560
+            // put primary key at first position
561
+            if(isset($primaryField->declared) && !$primaryField->declared){
562
+                $modelData->fields = array_pad($modelData->fields, -(count($modelData->fields)+1), $primaryField);
563
+            }
564
+
565
+            // set timestamps
566
+            if($modelData->timeStamps){
567
+                $createdAtField = new stdClass;
568
+                $createdAtField->name = "created_at" ;
569
+                $createdAtField->index = "none" ;
570
+                $createdAtField->declared =  false ;
571
+                $createdAtField->type = new stdClass ;
572
+                $createdAtField->type->ui = 'timestamp' ;
573
+                $createdAtField->type->db = 'datetime' ;
574
+                $createdAtField->foreignKey = [];
575
+                $createdAtField->validations = "required" ;
576
+                $updatedAtField = clone($createdAtField);
577
+                $updatedAtField->name = "updated_at" ;
578
+
579
+                array_push($modelData->fields, $createdAtField);
580
+                array_push($modelData->fields, $updatedAtField);
581
+            }
582
+
583
+            $modelsData[$modelData->tableName] = $modelData ;
584
+
585
+            // put all migrations pre-requisites in top of generation hieraquical
586
+            if(count($modelData->migrationPreRequisites) == 0){
587
+                $modelsData = Arrays::moveElement($modelsData, $modelData->tableName, 0);
588
+            }
589
+
590
+        }
591
+
592
+        // let put all pre-requisites in order
593
+        $actualTablePosition = 0 ;
594
+        foreach ($modelsData as $key => $modelData)
595
+        {
596
+            // set migration order
597
+            $modelData->migrationOrder = isset($modelData->migrationOrder) ? $modelData->migrationOrder : $actualTablePosition ;
598
+
599
+            $positions = array_keys($modelsData);
600
+
601
+            foreach($modelData->migrationPreRequisites as $preRequiste){
602
+                $preRequisitePosition = array_search($preRequiste, $positions);
603
+                // change positions
604
+                if( $preRequisitePosition >  $actualTablePosition){
605
+                    $modelData->migrationOrder = $preRequisitePosition ;
606
+                    $modelsData[$preRequiste]->migrationOrder = $actualTablePosition ;
607
+                    $modelsData = Arrays::moveElement($modelsData, $preRequiste, $actualTablePosition);
608 608
 					
609
-				}
610
-			}
609
+                }
610
+            }
611 611
 
612 612
 
613
-			// search for other fields relationships
614
-			foreach($modelData->fields as $field){
613
+            // search for other fields relationships
614
+            foreach($modelData->fields as $field){
615 615
 				
616 616
 
617
-				if(isset($field->foreignKey->relationship)){
618
-					switch ($field->foreignKey->relationship) {
619
-						case 'belongsTo':
620
-							// hasOne or hasMay are the inverse relationship for belongsTo
621
-							$relationship = new stdClass ;
622
-							$relationship->type  = $field->foreignKey->reverse ;
623
-							$relationship->foreignKey = $field->name ;
624
-							$relationship->localKey = $field->foreignKey->field ;
625
-							$relationship->modelName = $modelData->modelName ;
626
-							array_push($modelsData[$field->foreignKey->table]->reverseRelationships, $relationship);
627
-							break;
628
-						case 'belongsToMany':
629
-							// belongsToMany is the inverse relationship for belongsTo
630
-							$relationship = new stdClass ;
631
-							$relationship->type  = $field->foreignKey->reverse ;
632
-							$relationship->foreignKey = $field->name ;
633
-							$relationship->relatedTable = isset($field->relatedTable) ? $field->relatedTable : '';
634
-							$relationship->relatedField = isset($field->relatedField) ? $field->relatedField : '';
635
-							$relationship->ui = $field->type->ui;
636
-							$relationship->localKey = $field->foreignKey->field ;
637
-							$relationship->modelName = $modelData->modelName ;
638
-							$relationship->tableName = $modelData->tableName ;
639
-							array_push($modelsData[$field->foreignKey->table]->reverseRelationships, $relationship);
640
-							break;
641
-						default:
642
-							# code...
643
-							break;
644
-					}
617
+                if(isset($field->foreignKey->relationship)){
618
+                    switch ($field->foreignKey->relationship) {
619
+                        case 'belongsTo':
620
+                            // hasOne or hasMay are the inverse relationship for belongsTo
621
+                            $relationship = new stdClass ;
622
+                            $relationship->type  = $field->foreignKey->reverse ;
623
+                            $relationship->foreignKey = $field->name ;
624
+                            $relationship->localKey = $field->foreignKey->field ;
625
+                            $relationship->modelName = $modelData->modelName ;
626
+                            array_push($modelsData[$field->foreignKey->table]->reverseRelationships, $relationship);
627
+                            break;
628
+                        case 'belongsToMany':
629
+                            // belongsToMany is the inverse relationship for belongsTo
630
+                            $relationship = new stdClass ;
631
+                            $relationship->type  = $field->foreignKey->reverse ;
632
+                            $relationship->foreignKey = $field->name ;
633
+                            $relationship->relatedTable = isset($field->relatedTable) ? $field->relatedTable : '';
634
+                            $relationship->relatedField = isset($field->relatedField) ? $field->relatedField : '';
635
+                            $relationship->ui = $field->type->ui;
636
+                            $relationship->localKey = $field->foreignKey->field ;
637
+                            $relationship->modelName = $modelData->modelName ;
638
+                            $relationship->tableName = $modelData->tableName ;
639
+                            array_push($modelsData[$field->foreignKey->table]->reverseRelationships, $relationship);
640
+                            break;
641
+                        default:
642
+                            # code...
643
+                            break;
644
+                    }
645 645
 				
646
-				}
646
+                }
647 647
 				
648
-			}
648
+            }
649 649
 			
650 650
 
651
-			$actualTablePosition++ ;
652
-		}
651
+            $actualTablePosition++ ;
652
+        }
653 653
 	
654
-		// $this->info(print_r($modelsData, 1));
654
+        // $this->info(print_r($modelsData, 1));
655 655
 	
656
-		return $modelsData ;
656
+        return $modelsData ;
657 657
 	
658
-	}
659
-
660
-	protected function getPrimaryKeyField($modelData){
661
-		$primaryKey = new stdClass;
662
-		$primaryKey->name = "id" ;
663
-		$primaryKey->index = "primary" ;
664
-		$primaryKey->declared =  false ;
665
-		$primaryKey->type = new stdClass ;
666
-		$primaryKey->type->ui = 'label' ;
667
-		$primaryKey->type->db = 'integer' ;
668
-		$primaryKey->foreignKey = [];
669
-		$primaryKey->validations = "required" ;
670
-
671
-		foreach ($modelData->fields as $field)
672
-		{
673
-			if ($field->index == 'primary')
674
-			{
675
-				$primaryKey = $field ;
676
-				break;
677
-			}
678
-		}
679
-
680
-		return $primaryKey ;
681
-	}
658
+    }
659
+
660
+    protected function getPrimaryKeyField($modelData){
661
+        $primaryKey = new stdClass;
662
+        $primaryKey->name = "id" ;
663
+        $primaryKey->index = "primary" ;
664
+        $primaryKey->declared =  false ;
665
+        $primaryKey->type = new stdClass ;
666
+        $primaryKey->type->ui = 'label' ;
667
+        $primaryKey->type->db = 'integer' ;
668
+        $primaryKey->foreignKey = [];
669
+        $primaryKey->validations = "required" ;
670
+
671
+        foreach ($modelData->fields as $field)
672
+        {
673
+            if ($field->index == 'primary')
674
+            {
675
+                $primaryKey = $field ;
676
+                break;
677
+            }
678
+        }
679
+
680
+        return $primaryKey ;
681
+    }
682 682
 
683 683
 }
684 684
\ No newline at end of file
Please login to merge, or discard this patch.
src/Scaffolder/Commands/ServeCommand.php 2 patches
Unused Use Statements   -5 removed lines patch added patch discarded remove patch
@@ -3,15 +3,10 @@
 block discarded – undo
3 3
 namespace Scaffolder\Commands;
4 4
 
5 5
 use Illuminate\Console\Command;
6
-use Illuminate\Support\Facades\File;
7
-
8
-use stdClass ;
9 6
 
10 7
 // Support classes
11 8
 use Scaffolder\Support\Directory;
12 9
 use Scaffolder\Support\Json;
13
-use Scaffolder\Support\Arrays;
14
-use Scaffolder\Support\CamelCase;
15 10
 use Scaffolder\Compilers\Support\PathParser;
16 11
 
17 12
 
Please login to merge, or discard this patch.
Indentation   +104 added lines, -104 removed lines patch added patch discarded remove patch
@@ -17,143 +17,143 @@
 block discarded – undo
17 17
 
18 18
 class ServeCommand extends Command
19 19
 {
20
-	protected $signature = 'scaffolder:serve {app=webapp} {--o|overwrite : Overwrite generated files} {--g|generate : Generate files }';
20
+    protected $signature = 'scaffolder:serve {app=webapp} {--o|overwrite : Overwrite generated files} {--g|generate : Generate files }';
21 21
 
22
-	protected $description = 'Serve code for development purpose';
22
+    protected $description = 'Serve code for development purpose';
23 23
 
24
-	// app config var
25
-	private $scaffolderConfig ;
24
+    // app config var
25
+    private $scaffolderConfig ;
26 26
 
27
-	/**
28
-	 * Execute the Command.
29
-	 */
30
-	public function handle()
31
-	{
32
-		// Get app config
33
-		$this->getScaffolderConfig();
27
+    /**
28
+     * Execute the Command.
29
+     */
30
+    public function handle()
31
+    {
32
+        // Get app config
33
+        $this->getScaffolderConfig();
34 34
 
35
-		$overwrite = false;
35
+        $overwrite = false;
36 36
 
37
-		if($this->option('overwrite'))
38
-			$overwrite = true;
37
+        if($this->option('overwrite'))
38
+            $overwrite = true;
39 39
 
40
-		$generate = false;
40
+        $generate = false;
41 41
 
42
-		if($this->option('generate'))
43
-			$generate = true;
42
+        if($this->option('generate'))
43
+            $generate = true;
44 44
 
45 45
 
46
-		switch ($this->argument('app')) {
47
-			case 'webapp':
46
+        switch ($this->argument('app')) {
47
+            case 'webapp':
48 48
 				
49
-				// gera código somente se houver a opcao
50
-				if($generate) {
51
-					// Gera codigo da api
52
-					$this->call('scaffolder:generate', array('app' => 'api', '-c' => 'clear-all'));
49
+                // gera código somente se houver a opcao
50
+                if($generate) {
51
+                    // Gera codigo da api
52
+                    $this->call('scaffolder:generate', array('app' => 'api', '-c' => 'clear-all'));
53 53
 					
54
-					// Se parametro --overwrite selecionado, copia arquivos para seu respectivo destino
55
-					$this->copyApiFiles($overwrite);
54
+                    // Se parametro --overwrite selecionado, copia arquivos para seu respectivo destino
55
+                    $this->copyApiFiles($overwrite);
56 56
 					
57
-					// Gera codigo da pasta webapp
58
-					$this->call('scaffolder:generate', array('app' => 'angularjs', '-c' => 'clear-all'));
57
+                    // Gera codigo da pasta webapp
58
+                    $this->call('scaffolder:generate', array('app' => 'angularjs', '-c' => 'clear-all'));
59 59
 					
60
-					// Se parametro --overwrite selecionado, copia arquivos para seu respectivo destino
61
-					$this->copyAngularjsFiles($overwrite);
62
-				}
60
+                    // Se parametro --overwrite selecionado, copia arquivos para seu respectivo destino
61
+                    $this->copyAngularjsFiles($overwrite);
62
+                }
63 63
 				
64
-				$gulpCommand = sprintf('gulp serve --cwd "%s/codificar/scaffolder-theme-material/" > null', base_path('vendor'));
64
+                $gulpCommand = sprintf('gulp serve --cwd "%s/codificar/scaffolder-theme-material/" > null', base_path('vendor'));
65 65
 
66
-				$this->info('Running gulp in serve mode, wait your browser open...');	
67
-				//$handle = popen($gulpCommand, 'r');
66
+                $this->info('Running gulp in serve mode, wait your browser open...');	
67
+                //$handle = popen($gulpCommand, 'r');
68 68
 
69
-				$this->launchBackgroundProcess($gulpCommand);
69
+                $this->launchBackgroundProcess($gulpCommand);
70 70
 				
71
-				// php artisan serve
72
-				$this->call('serve');
71
+                // php artisan serve
72
+                $this->call('serve');
73 73
 
74
-				break;
74
+                break;
75 75
 
76
-			default:
77
-				$this->info('Invalid arguments');
78
-				break;
79
-		}
76
+            default:
77
+                $this->info('Invalid arguments');
78
+                break;
79
+        }
80 80
 		
81
-	}
82
-
83
-	/**
84
-	* Launch Background Process
85
-	*
86
-	* Launches a background process (note, provides no security itself, $call must be sanitized prior to use)
87
-	* @param string $call the system call to make
88
-	* @author raccettura
89
-	*/
90
-	private function launchBackgroundProcess($call) {
81
+    }
82
+
83
+    /**
84
+     * Launch Background Process
85
+     *
86
+     * Launches a background process (note, provides no security itself, $call must be sanitized prior to use)
87
+     * @param string $call the system call to make
88
+     * @author raccettura
89
+     */
90
+    private function launchBackgroundProcess($call) {
91 91
 	 
92
-		// Windows
93
-		if($this->is_windows()){
94
-			pclose(popen('start /b '.$call, 'r'));
95
-		}
92
+        // Windows
93
+        if($this->is_windows()){
94
+            pclose(popen('start /b '.$call, 'r'));
95
+        }
96 96
 	 
97
-		// Some sort of UNIX
98
-		else {
99
-			pclose(popen($call.' /dev/null &', 'r'));
100
-		}
101
-		return true;
102
-	}
97
+        // Some sort of UNIX
98
+        else {
99
+            pclose(popen($call.' /dev/null &', 'r'));
100
+        }
101
+        return true;
102
+    }
103 103
 	 
104 104
 	 
105
-	/**
106
-	* Is Windows
107
-	*
108
-	* Tells if we are running on Windows Platform
109
-	* @author raccettura
110
-	*/
111
-	private function is_windows(){
112
-		if(PHP_OS == 'WINNT' || PHP_OS == 'WIN32'){
113
-			return true;
114
-		}
115
-		return false;
116
-	}
117
-
118
-
119
-	public function copyApiFiles($overwrite) {
120
-
121
-		$command = sprintf('cp -r %s "%s/." "%s"', 
122
-			(!$overwrite ? ' -u' : null) , 
123
-			PathParser::parse($this->scaffolderConfig->generators->api->paths->base),
124
-			base_path());
105
+    /**
106
+     * Is Windows
107
+     *
108
+     * Tells if we are running on Windows Platform
109
+     * @author raccettura
110
+     */
111
+    private function is_windows(){
112
+        if(PHP_OS == 'WINNT' || PHP_OS == 'WIN32'){
113
+            return true;
114
+        }
115
+        return false;
116
+    }
117
+
118
+
119
+    public function copyApiFiles($overwrite) {
120
+
121
+        $command = sprintf('cp -r %s "%s/." "%s"', 
122
+            (!$overwrite ? ' -u' : null) , 
123
+            PathParser::parse($this->scaffolderConfig->generators->api->paths->base),
124
+            base_path());
125 125
 		
126
-		shell_exec($command);
126
+        shell_exec($command);
127 127
 
128
-		$this->info('- Api files copied');	
129
-	}
128
+        $this->info('- Api files copied');	
129
+    }
130 130
 
131
-	public function copyAngularjsFiles($overwrite) {
131
+    public function copyAngularjsFiles($overwrite) {
132 132
 
133
-		// resource angular js path
134
-		Directory::createIfNotExists(PathParser::parse($this->scaffolderConfig->generators->angularjs->paths->resources), 0755, true);
133
+        // resource angular js path
134
+        Directory::createIfNotExists(PathParser::parse($this->scaffolderConfig->generators->angularjs->paths->resources), 0755, true);
135 135
 
136
-		// copying page files
137
-		$command = sprintf('cp -r %s "%s/." "%s/"', 
138
-			(!$overwrite ? ' -u' : null) , 
139
-			PathParser::parse($this->scaffolderConfig->generators->angularjs->paths->index),
140
-			PathParser::parse($this->scaffolderConfig->generators->angularjs->paths->resources));
136
+        // copying page files
137
+        $command = sprintf('cp -r %s "%s/." "%s/"', 
138
+            (!$overwrite ? ' -u' : null) , 
139
+            PathParser::parse($this->scaffolderConfig->generators->angularjs->paths->index),
140
+            PathParser::parse($this->scaffolderConfig->generators->angularjs->paths->resources));
141 141
 
142
-		shell_exec($command);
142
+        shell_exec($command);
143 143
 		
144
-		$this->info('- Angularjs files copied');	
145
-	}
144
+        $this->info('- Angularjs files copied');	
145
+    }
146 146
 
147 147
 
148
-	/**
149
-	 * Get the app.json configuration and parse to an object
150
-	 *
151
-	 * @return void
152
-	 */
153
-	private function getScaffolderConfig(){
154
-		// Get app config
155
-		$this->scaffolderConfig = Json::decodeFile(base_path('scaffolder-config/app.json'));
148
+    /**
149
+     * Get the app.json configuration and parse to an object
150
+     *
151
+     * @return void
152
+     */
153
+    private function getScaffolderConfig(){
154
+        // Get app config
155
+        $this->scaffolderConfig = Json::decodeFile(base_path('scaffolder-config/app.json'));
156 156
 
157
-	}
157
+    }
158 158
 
159 159
 }
160 160
\ No newline at end of file
Please login to merge, or discard this patch.
src/Scaffolder/Compilers/AngularJs/IndexApiCompiler.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,6 @@
 block discarded – undo
6 6
 use Scaffolder\Compilers\AbstractCompiler;
7 7
 use Scaffolder\Compilers\Support\FileToCompile;
8 8
 use Scaffolder\Compilers\Support\PathParser;
9
-use Scaffolder\Support\Directory;
10 9
 
11 10
 class IndexApiCompiler extends AbstractCompiler
12 11
 {
Please login to merge, or discard this patch.
Indentation   +45 added lines, -45 removed lines patch added patch discarded remove patch
@@ -10,56 +10,56 @@
 block discarded – undo
10 10
 
11 11
 class IndexApiCompiler extends AbstractCompiler
12 12
 {
13
-	protected $cachePrefix 	= 'index_api_';
14
-	protected $stubFilename = 'IndexApi.js' ;
13
+    protected $cachePrefix 	= 'index_api_';
14
+    protected $stubFilename = 'IndexApi.js' ;
15 15
 
16
-	public function __construct($scaffolderConfig, $modelData = null)
17
-	{
18
-		$this->stubsDirectory = __DIR__ . '/../../../../stubs/AngularJs/';
19
-		parent::__construct($scaffolderConfig, $modelData);
20
-	}
16
+    public function __construct($scaffolderConfig, $modelData = null)
17
+    {
18
+        $this->stubsDirectory = __DIR__ . '/../../../../stubs/AngularJs/';
19
+        parent::__construct($scaffolderConfig, $modelData);
20
+    }
21 21
 
22
-	/**
23
-	 * Replace and store the Stub.
24
-	 *
25
-	 * @return string
26
-	 */
27
-	public function replaceAndStore()
28
-	{
29
-		return $this->store(new FileToCompile(false, $this->cachePrefix));
30
-	}
22
+    /**
23
+     * Replace and store the Stub.
24
+     *
25
+     * @return string
26
+     */
27
+    public function replaceAndStore()
28
+    {
29
+        return $this->store(new FileToCompile(false, $this->cachePrefix));
30
+    }
31 31
 
32
-	/**
33
-	 * Compiles .
34
-	 *
35
-	 * @param null $extra
36
-	 *
37
-	 * @return string
38
-	 */
39
-	public function compile($extra = null)
40
-	{
41
-		if (File::exists(base_path('scaffolder-config/cache/' . $this->cachePrefix  . self::CACHE_EXT)))
42
-		{
43
-			return $this->store(new FileToCompile(true, $this->cachePrefix));
44
-		}
45
-		else
46
-		{
32
+    /**
33
+     * Compiles .
34
+     *
35
+     * @param null $extra
36
+     *
37
+     * @return string
38
+     */
39
+    public function compile($extra = null)
40
+    {
41
+        if (File::exists(base_path('scaffolder-config/cache/' . $this->cachePrefix  . self::CACHE_EXT)))
42
+        {
43
+            return $this->store(new FileToCompile(true, $this->cachePrefix));
44
+        }
45
+        else
46
+        {
47 47
 
48
-			return $this->replaceAndStore();
49
-		}
50
-	}
48
+            return $this->replaceAndStore();
49
+        }
50
+    }
51 51
 	
52
-	/**
53
-	 * Get output filename
54
-	 *
55
-	 *
56
-	 * @return $this
57
-	 */
58
-	protected function getOutputFilename()
59
-	{
60
-		$folder = PathParser::parse($this->scaffolderConfig->generator->paths->index);
52
+    /**
53
+     * Get output filename
54
+     *
55
+     *
56
+     * @return $this
57
+     */
58
+    protected function getOutputFilename()
59
+    {
60
+        $folder = PathParser::parse($this->scaffolderConfig->generator->paths->index);
61 61
 
62
-		return $folder  . 'index.api.js';
63
-	}
62
+        return $folder  . 'index.api.js';
63
+    }
64 64
 
65 65
 }
66 66
\ No newline at end of file
Please login to merge, or discard this patch.
src/Scaffolder/Compilers/AngularJs/IndexModuleCompiler.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,6 @@
 block discarded – undo
6 6
 use Scaffolder\Compilers\AbstractCompiler;
7 7
 use Scaffolder\Compilers\Support\FileToCompile;
8 8
 use Scaffolder\Compilers\Support\PathParser;
9
-use Scaffolder\Support\CamelCase;
10 9
 
11 10
 class IndexModuleCompiler extends AbstractCompiler
12 11
 {
Please login to merge, or discard this patch.
Indentation   +86 added lines, -86 removed lines patch added patch discarded remove patch
@@ -10,98 +10,98 @@
 block discarded – undo
10 10
 
11 11
 class IndexModuleCompiler extends AbstractCompiler
12 12
 {
13
-	protected $stubFilename = 'IndexModule.js' ;
13
+    protected $stubFilename = 'IndexModule.js' ;
14 14
 
15
-	protected $stubResourceFilename = 'IndexModuleModel.js' ;
16
-	protected $stubResource  ;
15
+    protected $stubResourceFilename = 'IndexModuleModel.js' ;
16
+    protected $stubResource  ;
17 17
 
18 18
 
19
-	public function __construct($scaffolderConfig, $modelData = null)
20
-	{
21
-		$this->stubsDirectory = __DIR__ . '/../../../../stubs/AngularJs/';
22
-		parent::__construct($scaffolderConfig, null);
19
+    public function __construct($scaffolderConfig, $modelData = null)
20
+    {
21
+        $this->stubsDirectory = __DIR__ . '/../../../../stubs/AngularJs/';
22
+        parent::__construct($scaffolderConfig, null);
23 23
 		
24
-		$this->stubResource = File::get($this->stubsDirectory . $this->stubResourceFilename );
25
-	}
26
-
27
-	/**
28
-	 * Replace and store the Stub.
29
-	 *
30
-	 * @return string
31
-	 */
32
-	public function replaceAndStore(){}
33
-
34
-	/**
35
-	 * Compiles a resource.
36
-	 *
37
-	 * @param      $hash
38
-	 * @param null $extra
39
-	 *
40
-	 * @return string
41
-	 */
42
-	public function compile($extra = null) {}
43
-
44
-	/**
45
-	 * Compiles a group of routes.
46
-	 *
47
-	 * @param      $hash
48
-	 * @param null $extra
49
-	 *
50
-	 * @return mixed
51
-	 */
52
-	public function compileGroup($compiledIndexes)
53
-	{
54
-
55
-		$this->replaceIndexes($compiledIndexes)
56
-			->store(new FileToCompile(null, null));
57
-
58
-		return $this->stub;
59
-	}
60
-
61
-
62
-	/**
63
-	 * Get output filename
64
-	 *
65
-	 *
66
-	 * @return $this
67
-	 */
68
-	protected function getOutputFilename()
69
-	{
70
-		$folder = PathParser::parse($this->scaffolderConfig->generator->paths->index);
71
-
72
-		return $folder  . 'index.module.js';
73
-	}
74
-
75
-
76
-	/**
77
-	 * Replace the resource.
78
-	 *
79
-	 * @param $this->modelName
80
-	 *
81
-	 * @return string routeStub
82
-	 */
83
-	public function replaceResource($modelData)
84
-	{
24
+        $this->stubResource = File::get($this->stubsDirectory . $this->stubResourceFilename );
25
+    }
26
+
27
+    /**
28
+     * Replace and store the Stub.
29
+     *
30
+     * @return string
31
+     */
32
+    public function replaceAndStore(){}
33
+
34
+    /**
35
+     * Compiles a resource.
36
+     *
37
+     * @param      $hash
38
+     * @param null $extra
39
+     *
40
+     * @return string
41
+     */
42
+    public function compile($extra = null) {}
43
+
44
+    /**
45
+     * Compiles a group of routes.
46
+     *
47
+     * @param      $hash
48
+     * @param null $extra
49
+     *
50
+     * @return mixed
51
+     */
52
+    public function compileGroup($compiledIndexes)
53
+    {
54
+
55
+        $this->replaceIndexes($compiledIndexes)
56
+            ->store(new FileToCompile(null, null));
57
+
58
+        return $this->stub;
59
+    }
60
+
61
+
62
+    /**
63
+     * Get output filename
64
+     *
65
+     *
66
+     * @return $this
67
+     */
68
+    protected function getOutputFilename()
69
+    {
70
+        $folder = PathParser::parse($this->scaffolderConfig->generator->paths->index);
71
+
72
+        return $folder  . 'index.module.js';
73
+    }
74
+
75
+
76
+    /**
77
+     * Replace the resource.
78
+     *
79
+     * @param $this->modelName
80
+     *
81
+     * @return string routeStub
82
+     */
83
+    public function replaceResource($modelData)
84
+    {
85 85
 		
86
-		$indexStub = str_replace('{{table_name_uc}}', $modelData->modelName, $this->stubResource);
87
-		$indexStub = str_replace('{{table_name}}', $modelData->tableName, $indexStub);
86
+        $indexStub = str_replace('{{table_name_uc}}', $modelData->modelName, $this->stubResource);
87
+        $indexStub = str_replace('{{table_name}}', $modelData->tableName, $indexStub);
88 88
 		
89
-		return $indexStub;
90
-	}
91
-
92
-	/**
93
-	 * Replace compiled routes.
94
-	 *
95
-	 * @param $compiledRoutes
96
-	 *
97
-	 * @return $this
98
-	 */
99
-	private function replaceIndexes($compiledIndexes)
100
-	{
101
-		$this->stub = str_replace('{{tables}}', $compiledIndexes, $this->stub);
102
-
103
-		return $this;
104
-	}
89
+        return $indexStub;
90
+    }
91
+
92
+    /**
93
+     * Replace compiled routes.
94
+     *
95
+     * @param $compiledRoutes
96
+     *
97
+     * @return $this
98
+     */
99
+    private function replaceIndexes($compiledIndexes)
100
+    {
101
+        $this->stub = str_replace('{{tables}}', $compiledIndexes, $this->stub);
102
+
103
+        return $this;
104
+    }
105 105
 
106 106
 	
107 107
 }
108 108
\ No newline at end of file
Please login to merge, or discard this patch.
src/Scaffolder/Compilers/AngularJs/ListChooseColumnsCompiler.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace Scaffolder\Compilers\AngularJs;
4 4
 
5
-use Illuminate\Support\Facades\File;
6 5
 use Scaffolder\Compilers\AbstractCompiler;
7 6
 use Scaffolder\Compilers\Support\FileToCompile;
8 7
 use Scaffolder\Compilers\Support\PathParser;
Please login to merge, or discard this patch.
Indentation   +32 added lines, -32 removed lines patch added patch discarded remove patch
@@ -10,40 +10,40 @@
 block discarded – undo
10 10
 
11 11
 class ListChooseColumnsCompiler extends AbstractCompiler
12 12
 {
13
-	protected $cachePrefix 	= 'list_choose_column_';
14
-	protected $stubFilename = 'ChooseColumnsDialog.html' ;
15
-
16
-	public function __construct($scaffolderConfig, $modelData = null)
17
-	{
18
-		$this->stubsDirectory = __DIR__ . '/../../../../stubs/AngularJs/';
19
-		parent::__construct($scaffolderConfig, $modelData);
20
-	}
21
-
22
-	/**
23
-	 * Replace and store the Stub.
24
-	 *
25
-	 * @return string
26
-	 */
27
-	public function replaceAndStore()
28
-	{
13
+    protected $cachePrefix 	= 'list_choose_column_';
14
+    protected $stubFilename = 'ChooseColumnsDialog.html' ;
15
+
16
+    public function __construct($scaffolderConfig, $modelData = null)
17
+    {
18
+        $this->stubsDirectory = __DIR__ . '/../../../../stubs/AngularJs/';
19
+        parent::__construct($scaffolderConfig, $modelData);
20
+    }
21
+
22
+    /**
23
+     * Replace and store the Stub.
24
+     *
25
+     * @return string
26
+     */
27
+    public function replaceAndStore()
28
+    {
29 29
 		
30
-		return $this->store(new FileToCompile(false, $this->modelData->modelHash));
30
+        return $this->store(new FileToCompile(false, $this->modelData->modelHash));
31 31
 		
32
-	}
32
+    }
33 33
 	
34
-	/**
35
-	 * Get output filename
36
-	 *
37
-	 *
38
-	 * @return $this
39
-	 */
40
-	protected function getOutputFilename()
41
-	{
42
-		$folder = PathParser::parse($this->scaffolderConfig->generator->paths->pages).$this->modelData->tableName.'/list/' ;
43
-
44
-		Directory::createIfNotExists($folder, 0755, true);
45
-
46
-		return $folder .$this->modelData->tableName . '_columns.dialog.html';
47
-	}
34
+    /**
35
+     * Get output filename
36
+     *
37
+     *
38
+     * @return $this
39
+     */
40
+    protected function getOutputFilename()
41
+    {
42
+        $folder = PathParser::parse($this->scaffolderConfig->generator->paths->pages).$this->modelData->tableName.'/list/' ;
43
+
44
+        Directory::createIfNotExists($folder, 0755, true);
45
+
46
+        return $folder .$this->modelData->tableName . '_columns.dialog.html';
47
+    }
48 48
 
49 49
 }
50 50
\ No newline at end of file
Please login to merge, or discard this patch.
src/Scaffolder/Compilers/AngularJs/ListControllerCompiler.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace Scaffolder\Compilers\AngularJs;
4 4
 
5
-use Illuminate\Support\Facades\File;
6 5
 use Scaffolder\Compilers\AbstractCompiler;
7 6
 use Scaffolder\Compilers\Support\FileToCompile;
8 7
 use Scaffolder\Compilers\Support\PathParser;
Please login to merge, or discard this patch.
Indentation   +61 added lines, -61 removed lines patch added patch discarded remove patch
@@ -10,82 +10,82 @@
 block discarded – undo
10 10
 
11 11
 class ListControllerCompiler extends AbstractCompiler
12 12
 {
13
-	protected $cachePrefix 	= 'list_controller_';
14
-	protected $stubFilename = 'ListController.js' ;
15
-
16
-	public function __construct($scaffolderConfig, $modelData = null)
17
-	{
18
-		$this->stubsDirectory = __DIR__ . '/../../../../stubs/AngularJs/';
19
-		parent::__construct($scaffolderConfig, $modelData);
20
-	}
21
-
22
-	/**
23
-	 * Replace and store the Stub.
24
-	 *
25
-	 * @return string
26
-	 */
27
-	public function replaceAndStore()
28
-	{
13
+    protected $cachePrefix 	= 'list_controller_';
14
+    protected $stubFilename = 'ListController.js' ;
15
+
16
+    public function __construct($scaffolderConfig, $modelData = null)
17
+    {
18
+        $this->stubsDirectory = __DIR__ . '/../../../../stubs/AngularJs/';
19
+        parent::__construct($scaffolderConfig, $modelData);
20
+    }
21
+
22
+    /**
23
+     * Replace and store the Stub.
24
+     *
25
+     * @return string
26
+     */
27
+    public function replaceAndStore()
28
+    {
29 29
 		
30
-		return $this->replaceColumns()
31
-					->store(new FileToCompile(false, $this->modelData->modelHash));
30
+        return $this->replaceColumns()
31
+                    ->store(new FileToCompile(false, $this->modelData->modelHash));
32 32
 		
33
-	}
33
+    }
34 34
 
35
-	/**
36
-	 * replace columns
37
-	 *
38
-	 * @return $this
39
-	 */
40
-	public function replaceColumns(){
35
+    /**
36
+     * replace columns
37
+     *
38
+     * @return $this
39
+     */
40
+    public function replaceColumns(){
41 41
 
42
-		$columns = $this->getGridColumns();
42
+        $columns = $this->getGridColumns();
43 43
 
44
-		$this->stub = str_replace('{{grid_columns}}',  join(",\n ", $columns) , $this->stub); 
44
+        $this->stub = str_replace('{{grid_columns}}',  join(",\n ", $columns) , $this->stub); 
45 45
 
46
-		return $this ;
46
+        return $this ;
47 47
 
48
-	}
48
+    }
49 49
 
50
-	public function getGridColumns(){
50
+    public function getGridColumns(){
51 51
 
52
-		$columns = [];
52
+        $columns = [];
53 53
 
54
-		foreach ($this->modelData->fields as $field)
55
-		{
56
-			array_push($columns,  "\t\t\t".sprintf('{ name: vm. $t("%s.columns.%s"), field: "%s%s" }',  $this->modelData->tableName, $field->name, $this->eagerTable, $field->name ) );
54
+        foreach ($this->modelData->fields as $field)
55
+        {
56
+            array_push($columns,  "\t\t\t".sprintf('{ name: vm. $t("%s.columns.%s"), field: "%s%s" }',  $this->modelData->tableName, $field->name, $this->eagerTable, $field->name ) );
57 57
 
58
-			// Check foreign key
59
-			if ($field->foreignKey && isset($field->foreignKey->eager) && $field->foreignKey->eager)
60
-			{
61
-				// search eager fields
62
-				$foreignModelData = $this->getModelData($field->foreignKey->table);
63
-				$foreignControllerCompiler = new ListControllerCompiler($this->scaffolderConfig, $foreignModelData);
64
-				$foreignControllerCompiler->setEagerTable($field->foreignKey->table);
65
-				$eagerColumns 	= $foreignControllerCompiler->getGridColumns();
58
+            // Check foreign key
59
+            if ($field->foreignKey && isset($field->foreignKey->eager) && $field->foreignKey->eager)
60
+            {
61
+                // search eager fields
62
+                $foreignModelData = $this->getModelData($field->foreignKey->table);
63
+                $foreignControllerCompiler = new ListControllerCompiler($this->scaffolderConfig, $foreignModelData);
64
+                $foreignControllerCompiler->setEagerTable($field->foreignKey->table);
65
+                $eagerColumns 	= $foreignControllerCompiler->getGridColumns();
66 66
 
67
-				$columns = array_merge($columns, $eagerColumns);
68
-			}
69
-		}
67
+                $columns = array_merge($columns, $eagerColumns);
68
+            }
69
+        }
70 70
 
71
-		return $columns; 
71
+        return $columns; 
72 72
 
73
-	}
73
+    }
74 74
 	
75 75
 	
76
-	/**
77
-	 * Get output filename
78
-	 *
79
-	 *
80
-	 * @return $this
81
-	 */
82
-	protected function getOutputFilename()
83
-	{
84
-		$folder = PathParser::parse($this->scaffolderConfig->generator->paths->pages).$this->modelData->tableName.'/list/' ;
85
-
86
-		Directory::createIfNotExists($folder, 0755, true);
87
-
88
-		return $folder .$this->modelData->tableName . '_list.controller.js';
89
-	}
76
+    /**
77
+     * Get output filename
78
+     *
79
+     *
80
+     * @return $this
81
+     */
82
+    protected function getOutputFilename()
83
+    {
84
+        $folder = PathParser::parse($this->scaffolderConfig->generator->paths->pages).$this->modelData->tableName.'/list/' ;
85
+
86
+        Directory::createIfNotExists($folder, 0755, true);
87
+
88
+        return $folder .$this->modelData->tableName . '_list.controller.js';
89
+    }
90 90
 
91 91
 }
92 92
\ No newline at end of file
Please login to merge, or discard this patch.
src/Scaffolder/Compilers/AngularJs/ListDetailCompiler.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace Scaffolder\Compilers\AngularJs;
4 4
 
5
-use Illuminate\Support\Facades\File;
6 5
 use Scaffolder\Compilers\AbstractCompiler;
7 6
 use Scaffolder\Compilers\Support\FileToCompile;
8 7
 use Scaffolder\Compilers\Support\PathParser;
Please login to merge, or discard this patch.
Indentation   +32 added lines, -32 removed lines patch added patch discarded remove patch
@@ -10,40 +10,40 @@
 block discarded – undo
10 10
 
11 11
 class ListDetailCompiler extends AbstractCompiler
12 12
 {
13
-	protected $cachePrefix 	= 'list_detail_';
14
-	protected $stubFilename = 'DetailDialog.html' ;
15
-
16
-	public function __construct($scaffolderConfig, $modelData = null)
17
-	{
18
-		$this->stubsDirectory = __DIR__ . '/../../../../stubs/AngularJs/';
19
-		parent::__construct($scaffolderConfig, $modelData);
20
-	}
21
-
22
-	/**
23
-	 * Replace and store the Stub.
24
-	 *
25
-	 * @return string
26
-	 */
27
-	public function replaceAndStore()
28
-	{
13
+    protected $cachePrefix 	= 'list_detail_';
14
+    protected $stubFilename = 'DetailDialog.html' ;
15
+
16
+    public function __construct($scaffolderConfig, $modelData = null)
17
+    {
18
+        $this->stubsDirectory = __DIR__ . '/../../../../stubs/AngularJs/';
19
+        parent::__construct($scaffolderConfig, $modelData);
20
+    }
21
+
22
+    /**
23
+     * Replace and store the Stub.
24
+     *
25
+     * @return string
26
+     */
27
+    public function replaceAndStore()
28
+    {
29 29
 		
30
-		return $this->store(new FileToCompile(false, $this->modelData->modelHash));
30
+        return $this->store(new FileToCompile(false, $this->modelData->modelHash));
31 31
 		
32
-	}
32
+    }
33 33
 	
34
-	/**
35
-	 * Get output filename
36
-	 *
37
-	 *
38
-	 * @return $this
39
-	 */
40
-	protected function getOutputFilename()
41
-	{
42
-		$folder = PathParser::parse($this->scaffolderConfig->generator->paths->pages).$this->modelData->tableName.'/list/' ;
43
-
44
-		Directory::createIfNotExists($folder, 0755, true);
45
-
46
-		return $folder .$this->modelData->tableName . '_details.dialog.html';
47
-	}
34
+    /**
35
+     * Get output filename
36
+     *
37
+     *
38
+     * @return $this
39
+     */
40
+    protected function getOutputFilename()
41
+    {
42
+        $folder = PathParser::parse($this->scaffolderConfig->generator->paths->pages).$this->modelData->tableName.'/list/' ;
43
+
44
+        Directory::createIfNotExists($folder, 0755, true);
45
+
46
+        return $folder .$this->modelData->tableName . '_details.dialog.html';
47
+    }
48 48
 
49 49
 }
50 50
\ No newline at end of file
Please login to merge, or discard this patch.
src/Scaffolder/Compilers/AngularJs/ListModuleCompiler.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace Scaffolder\Compilers\AngularJs;
4 4
 
5
-use Illuminate\Support\Facades\File;
6 5
 use Scaffolder\Compilers\AbstractCompiler;
7 6
 use Scaffolder\Compilers\Support\FileToCompile;
8 7
 use Scaffolder\Compilers\Support\PathParser;
Please login to merge, or discard this patch.
Indentation   +32 added lines, -32 removed lines patch added patch discarded remove patch
@@ -10,40 +10,40 @@
 block discarded – undo
10 10
 
11 11
 class ListModuleCompiler extends AbstractCompiler
12 12
 {
13
-	protected $cachePrefix 	= 'list_module_';
14
-	protected $stubFilename = 'ListModule.js' ;
15
-
16
-	public function __construct($scaffolderConfig, $modelData = null)
17
-	{
18
-		$this->stubsDirectory = __DIR__ . '/../../../../stubs/AngularJs/';
19
-		parent::__construct($scaffolderConfig, $modelData);
20
-	}
21
-
22
-	/**
23
-	 * Replace and store the Stub.
24
-	 *
25
-	 * @return string
26
-	 */
27
-	public function replaceAndStore()
28
-	{
13
+    protected $cachePrefix 	= 'list_module_';
14
+    protected $stubFilename = 'ListModule.js' ;
15
+
16
+    public function __construct($scaffolderConfig, $modelData = null)
17
+    {
18
+        $this->stubsDirectory = __DIR__ . '/../../../../stubs/AngularJs/';
19
+        parent::__construct($scaffolderConfig, $modelData);
20
+    }
21
+
22
+    /**
23
+     * Replace and store the Stub.
24
+     *
25
+     * @return string
26
+     */
27
+    public function replaceAndStore()
28
+    {
29 29
 		
30
-		return $this->store(new FileToCompile(false, $this->modelData->modelHash));
30
+        return $this->store(new FileToCompile(false, $this->modelData->modelHash));
31 31
 		
32
-	}
32
+    }
33 33
 	
34
-	/**
35
-	 * Get output filename
36
-	 *
37
-	 *
38
-	 * @return $this
39
-	 */
40
-	protected function getOutputFilename()
41
-	{
42
-		$folder = PathParser::parse($this->scaffolderConfig->generator->paths->pages).$this->modelData->tableName.'/list/' ;
43
-
44
-		Directory::createIfNotExists($folder, 0755, true);
45
-
46
-		return $folder .$this->modelData->tableName . '_list.module.js';
47
-	}
34
+    /**
35
+     * Get output filename
36
+     *
37
+     *
38
+     * @return $this
39
+     */
40
+    protected function getOutputFilename()
41
+    {
42
+        $folder = PathParser::parse($this->scaffolderConfig->generator->paths->pages).$this->modelData->tableName.'/list/' ;
43
+
44
+        Directory::createIfNotExists($folder, 0755, true);
45
+
46
+        return $folder .$this->modelData->tableName . '_list.module.js';
47
+    }
48 48
 
49 49
 }
50 50
\ No newline at end of file
Please login to merge, or discard this patch.
src/Scaffolder/Compilers/AngularJs/ListTemplateCompiler.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,6 @@
 block discarded – undo
9 9
 use Scaffolder\Support\Directory;
10 10
 use Scaffolder\Support\CamelCase;
11 11
 use Scaffolder\Support\Validator;
12
-use stdClass ;
13 12
 
14 13
 class ListTemplateCompiler extends AbstractCompiler
15 14
 {
Please login to merge, or discard this patch.
Indentation   +166 added lines, -166 removed lines patch added patch discarded remove patch
@@ -13,201 +13,201 @@
 block discarded – undo
13 13
 
14 14
 class ListTemplateCompiler extends AbstractCompiler
15 15
 {
16
-	protected $cachePrefix 	= 'list_template_';
17
-	protected $stubFilename = 'ListTemplate.html' ;
18
-
19
-	public function __construct($scaffolderConfig, $modelData = null)
20
-	{
21
-		$this->stubsDirectory = __DIR__ . '/../../../../stubs/AngularJs/';
22
-		parent::__construct($scaffolderConfig, $modelData);
23
-	}
24
-
25
-	/**
26
-	 * Replace and store the Stub.
27
-	 *
28
-	 * @return string
29
-	 */
30
-	public function replaceAndStore()
31
-	{
16
+    protected $cachePrefix 	= 'list_template_';
17
+    protected $stubFilename = 'ListTemplate.html' ;
18
+
19
+    public function __construct($scaffolderConfig, $modelData = null)
20
+    {
21
+        $this->stubsDirectory = __DIR__ . '/../../../../stubs/AngularJs/';
22
+        parent::__construct($scaffolderConfig, $modelData);
23
+    }
24
+
25
+    /**
26
+     * Replace and store the Stub.
27
+     *
28
+     * @return string
29
+     */
30
+    public function replaceAndStore()
31
+    {
32 32
 		
33
-		return $this->replaceInputFields()
34
-					->replaceBelongsToManyFields()
35
-					->store(new FileToCompile(false, $this->modelData->modelHash));
33
+        return $this->replaceInputFields()
34
+                    ->replaceBelongsToManyFields()
35
+                    ->store(new FileToCompile(false, $this->modelData->modelHash));
36 36
 		
37
-	}
37
+    }
38 38
 
39
-	/**
40
-	 * Replace input fields
41
-	 *
42
-	 * @return $this
43
-	 */
44
-	private function replaceInputFields(){
39
+    /**
40
+     * Replace input fields
41
+     *
42
+     * @return $this
43
+     */
44
+    private function replaceInputFields(){
45 45
 
46
-		$inputFields = $this->getInputFields();
46
+        $inputFields = $this->getInputFields();
47 47
 
48
-		$this->stub = str_replace('{{columns_inputs}}', $inputFields, $this->stub);
48
+        $this->stub = str_replace('{{columns_inputs}}', $inputFields, $this->stub);
49 49
 
50
-		return $this;
51
-	}
50
+        return $this;
51
+    }
52 52
 
53
-	/**
54
-	 * get search conditions
55
-	 *
56
-	 * @return $this
57
-	 */
58
-	public function getInputFields(){
53
+    /**
54
+     * get search conditions
55
+     *
56
+     * @return $this
57
+     */
58
+    public function getInputFields(){
59 59
 
60
-		$inputFields = $eagerFields = '';
60
+        $inputFields = $eagerFields = '';
61 61
 
62
-		foreach ($this->modelData->fields as $field)
63
-		{
64
-			$fieldStub = $this->getInputStubByField($field);
62
+        foreach ($this->modelData->fields as $field)
63
+        {
64
+            $fieldStub = $this->getInputStubByField($field);
65 65
 
66
-			if($field->foreignKey){
67
-				$fieldStub 	= $this->replaceForeingStrings($field, $fieldStub) ;
68
-				$fieldStub = str_replace('{{foreign_model_name}}', strtolower(CamelCase::convertToCamelCase($field->foreignKey->table)), $fieldStub);
69
-			}
66
+            if($field->foreignKey){
67
+                $fieldStub 	= $this->replaceForeingStrings($field, $fieldStub) ;
68
+                $fieldStub = str_replace('{{foreign_model_name}}', strtolower(CamelCase::convertToCamelCase($field->foreignKey->table)), $fieldStub);
69
+            }
70 70
 
71
-			$inputFields .= $this->replaceFieldInput($field, $fieldStub) ;
71
+            $inputFields .= $this->replaceFieldInput($field, $fieldStub) ;
72 72
 
73
-			// Check foreign key
74
-			if ($field->foreignKey && isset($field->foreignKey->eager) && $field->foreignKey->eager)
75
-			{
76
-				// search eager fields
77
-				$foreignModelData = $this->getModelData($field->foreignKey->table);
78
-				$foreignControllerCompiler = new ListTemplateCompiler($this->scaffolderConfig, $foreignModelData);
79
-				$foreignControllerCompiler->setEagerTable($this->modelData->tableName);
80
-				$eagerFields 	.= $foreignControllerCompiler->getInputFields();
81
-			}
73
+            // Check foreign key
74
+            if ($field->foreignKey && isset($field->foreignKey->eager) && $field->foreignKey->eager)
75
+            {
76
+                // search eager fields
77
+                $foreignModelData = $this->getModelData($field->foreignKey->table);
78
+                $foreignControllerCompiler = new ListTemplateCompiler($this->scaffolderConfig, $foreignModelData);
79
+                $foreignControllerCompiler->setEagerTable($this->modelData->tableName);
80
+                $eagerFields 	.= $foreignControllerCompiler->getInputFields();
81
+            }
82 82
 
83
-		}
83
+        }
84 84
 
85
-		// replace table name
86
-		$inputFields = str_replace('{{table_name}}', $this->modelData->tableName, $inputFields);
85
+        // replace table name
86
+        $inputFields = str_replace('{{table_name}}', $this->modelData->tableName, $inputFields);
87 87
 		
88
-		$this->stub = str_replace('{{eager_objects_inputs}}', $eagerFields, $this->stub); 
89
-
90
-		return $inputFields ;
91
-
92
-	}
93
-
94
-	/**
95
-	 * replace field stub with fields and validations
96
-	 *
97
-	 * @param string $field
98
-	 * @param string $fieldStub
99
-	 *
100
-	 * @return $this
101
-	 */
102
-	protected function replaceFieldInput($field, $fieldStub){
103
-		$fieldStub = $this->replaceFieldStrings($field, $fieldStub) ;
104
-		$fieldStub = $this->replaceFieldValidations($field, $fieldStub) ;
105
-
106
-		return $fieldStub ;
107
-	}
108
-
109
-	/**
110
-	 * replace field stub with fields and validations
111
-	 *
112
-	 * @param string $field
113
-	 * @param string $fieldStub
114
-	 *
115
-	 * @return $this
116
-	 */
117
-	protected function replaceFieldValidations($field, $fieldStub){
118
-		$fieldStub = $this->replaceFieldStrings($field, $fieldStub) ;
88
+        $this->stub = str_replace('{{eager_objects_inputs}}', $eagerFields, $this->stub); 
89
+
90
+        return $inputFields ;
91
+
92
+    }
93
+
94
+    /**
95
+     * replace field stub with fields and validations
96
+     *
97
+     * @param string $field
98
+     * @param string $fieldStub
99
+     *
100
+     * @return $this
101
+     */
102
+    protected function replaceFieldInput($field, $fieldStub){
103
+        $fieldStub = $this->replaceFieldStrings($field, $fieldStub) ;
104
+        $fieldStub = $this->replaceFieldValidations($field, $fieldStub) ;
105
+
106
+        return $fieldStub ;
107
+    }
108
+
109
+    /**
110
+     * replace field stub with fields and validations
111
+     *
112
+     * @param string $field
113
+     * @param string $fieldStub
114
+     *
115
+     * @return $this
116
+     */
117
+    protected function replaceFieldValidations($field, $fieldStub){
118
+        $fieldStub = $this->replaceFieldStrings($field, $fieldStub) ;
119 119
 		
120
-		$validationsConverted = Validator::convertValidations($field->validations, true);
120
+        $validationsConverted = Validator::convertValidations($field->validations, true);
121 121
 
122
-		$inputValidations = '' ; 
122
+        $inputValidations = '' ; 
123 123
 
124
-		foreach ($validationsConverted as $attribute => $value) {
125
-			if($value)
126
-				$inputValidations .=  ' '.$attribute.'="'. $value.'"' ;
127
-			else
128
-				$inputValidations .=  ' '.$attribute  ; 
129
-		}
124
+        foreach ($validationsConverted as $attribute => $value) {
125
+            if($value)
126
+                $inputValidations .=  ' '.$attribute.'="'. $value.'"' ;
127
+            else
128
+                $inputValidations .=  ' '.$attribute  ; 
129
+        }
130 130
 
131
-		$fieldStub = str_replace('{{field_validation}}', $inputValidations, $fieldStub);
131
+        $fieldStub = str_replace('{{field_validation}}', $inputValidations, $fieldStub);
132 132
 
133
-		return $fieldStub ;
134
-	}
133
+        return $fieldStub ;
134
+    }
135 135
 
136
-	/**
137
-	 * Replace belongs to many fields
138
-	 *
139
-	 * @return $this
140
-	 */
141
-	protected function replaceBelongsToManyFields() {
136
+    /**
137
+     * Replace belongs to many fields
138
+     *
139
+     * @return $this
140
+     */
141
+    protected function replaceBelongsToManyFields() {
142 142
 		
143
-		$belongToManyFields = '';
143
+        $belongToManyFields = '';
144 144
 		
145
-		foreach ($this->modelData->reverseRelationships as $relationship)
146
-		{
147
-			if ($relationship->type == "belongsToMany") {
148
-				$fieldStub = File::get($this->stubsDirectory . 'List/'. CamelCase::convertToCamelCase($relationship->ui). '.html');
149
-
150
-				$fieldStub = str_replace('{{related_table}}',CamelCase::convertToCamelCase($relationship->relatedTable), $fieldStub);
151
-				$fieldStub = str_replace('{{related_table_lw}}', strtolower(CamelCase::convertToCamelCase($relationship->relatedTable)), $fieldStub);
152
-				$fieldStub = str_replace('{{table_name}}', $this->modelData->tableName, $fieldStub);
153
-				$fieldStub = str_replace('{{related_table_lw_pl}}', CamelCase::pluralize(strtolower($relationship->relatedTable)), $fieldStub);
145
+        foreach ($this->modelData->reverseRelationships as $relationship)
146
+        {
147
+            if ($relationship->type == "belongsToMany") {
148
+                $fieldStub = File::get($this->stubsDirectory . 'List/'. CamelCase::convertToCamelCase($relationship->ui). '.html');
149
+
150
+                $fieldStub = str_replace('{{related_table}}',CamelCase::convertToCamelCase($relationship->relatedTable), $fieldStub);
151
+                $fieldStub = str_replace('{{related_table_lw}}', strtolower(CamelCase::convertToCamelCase($relationship->relatedTable)), $fieldStub);
152
+                $fieldStub = str_replace('{{table_name}}', $this->modelData->tableName, $fieldStub);
153
+                $fieldStub = str_replace('{{related_table_lw_pl}}', CamelCase::pluralize(strtolower($relationship->relatedTable)), $fieldStub);
154 154
 				
155
-				$belongToManyFields .= $fieldStub;	
156
-			}
157
-		}
155
+                $belongToManyFields .= $fieldStub;	
156
+            }
157
+        }
158 158
 
159
-		$this->stub = str_replace('{{belongs_to_many_inputs}}', $belongToManyFields, $this->stub); 
159
+        $this->stub = str_replace('{{belongs_to_many_inputs}}', $belongToManyFields, $this->stub); 
160 160
 
161
-		return $this;
162
-	}
161
+        return $this;
162
+    }
163 163
 
164 164
 	
165
-	/**
166
-	 * get input field stub by ui type
167
-	 *
168
-	 * @param string $field
169
-	 *
170
-	 * @return $this
171
-	 */
172
-	private $inputStub = [];
173
-	private function getInputStubByField($field){
165
+    /**
166
+     * get input field stub by ui type
167
+     *
168
+     * @param string $field
169
+     *
170
+     * @return $this
171
+     */
172
+    private $inputStub = [];
173
+    private function getInputStubByField($field){
174 174
 		
175
-		if($field->index == 'primary'){
176
-			$uiType = 'primary' ;
177
-		}
178
-		elseif(isset($field->foreignKey) && $field->foreignKey){
179
-			if(isset($field->foreignKey->eager) && $field->foreignKey->eager)
180
-				$uiType = 'foreign_eager' ;
181
-			else 
182
-				$uiType = $field->type->ui ;
183
-		}
184
-		else {
185
-			$uiType = $field->type->ui ;
186
-		}
187
-
188
-		if(array_key_exists($uiType, $this->inputStub)){
189
-			return $this->inputStub[$uiType];
190
-		}
191
-		else {
192
-			$this->inputStub[$uiType] = File::get($this->stubsDirectory . 'List/'. CamelCase::convertToCamelCase($uiType). '.html');
193
-
194
-			return $this->inputStub[$uiType];
195
-		}
196
-	}
175
+        if($field->index == 'primary'){
176
+            $uiType = 'primary' ;
177
+        }
178
+        elseif(isset($field->foreignKey) && $field->foreignKey){
179
+            if(isset($field->foreignKey->eager) && $field->foreignKey->eager)
180
+                $uiType = 'foreign_eager' ;
181
+            else 
182
+                $uiType = $field->type->ui ;
183
+        }
184
+        else {
185
+            $uiType = $field->type->ui ;
186
+        }
187
+
188
+        if(array_key_exists($uiType, $this->inputStub)){
189
+            return $this->inputStub[$uiType];
190
+        }
191
+        else {
192
+            $this->inputStub[$uiType] = File::get($this->stubsDirectory . 'List/'. CamelCase::convertToCamelCase($uiType). '.html');
193
+
194
+            return $this->inputStub[$uiType];
195
+        }
196
+    }
197 197
 	
198
-	/**
199
-	 * Get output filename
200
-	 *
201
-	 *
202
-	 * @return $this
203
-	 */
204
-	protected function getOutputFilename()
205
-	{
206
-		$folder = PathParser::parse($this->scaffolderConfig->generator->paths->pages).$this->modelData->tableName.'/list/' ;
207
-
208
-		Directory::createIfNotExists($folder, 0755, true);
209
-
210
-		return $folder .$this->modelData->tableName . '_list.html';
211
-	}
198
+    /**
199
+     * Get output filename
200
+     *
201
+     *
202
+     * @return $this
203
+     */
204
+    protected function getOutputFilename()
205
+    {
206
+        $folder = PathParser::parse($this->scaffolderConfig->generator->paths->pages).$this->modelData->tableName.'/list/' ;
207
+
208
+        Directory::createIfNotExists($folder, 0755, true);
209
+
210
+        return $folder .$this->modelData->tableName . '_list.html';
211
+    }
212 212
 
213 213
 }
214 214
\ No newline at end of file
Please login to merge, or discard this patch.