@@ -43,7 +43,7 @@ |
||
| 43 | 43 | |
| 44 | 44 | $this->call('twill:make:module', [ |
| 45 | 45 | 'moduleName' => $this->argument('moduleName'), |
| 46 | - ] + $options->mapWithKeys(function ($value, $key) { |
|
| 46 | + ] + $options->mapWithKeys(function($value, $key) { |
|
| 47 | 47 | return ["--{$key}" => $value]; |
| 48 | 48 | })->toArray()); |
| 49 | 49 | } |
@@ -74,7 +74,7 @@ discard block |
||
| 74 | 74 | $blockRepository = app(BlockRepository::class); |
| 75 | 75 | |
| 76 | 76 | $blockRepository->bulkDelete($object->blocks()->pluck('id')->toArray()); |
| 77 | - $this->getBlocks($object, $fields)->each(function ($block) use ($object, $blockRepository) { |
|
| 77 | + $this->getBlocks($object, $fields)->each(function($block) use ($object, $blockRepository) { |
|
| 78 | 78 | $this->createBlock($blockRepository, $block); |
| 79 | 79 | }); |
| 80 | 80 | } |
@@ -92,7 +92,7 @@ discard block |
||
| 92 | 92 | $blockCreated = $blockRepository->create($blockFields); |
| 93 | 93 | |
| 94 | 94 | // Handle child blocks |
| 95 | - $blockFields['blocks']->each(function ($childBlock) use ($blockCreated, $blockRepository) { |
|
| 95 | + $blockFields['blocks']->each(function($childBlock) use ($blockCreated, $blockRepository) { |
|
| 96 | 96 | $childBlock['parent_id'] = $blockCreated->id; |
| 97 | 97 | $this->createBlock($blockRepository, $childBlock); |
| 98 | 98 | }); |
@@ -203,9 +203,9 @@ discard block |
||
| 203 | 203 | ]; |
| 204 | 204 | } |
| 205 | 205 | |
| 206 | - $fields['blocksFields'][] = Collection::make($block['content'])->filter(function ($value, $key) { |
|
| 206 | + $fields['blocksFields'][] = Collection::make($block['content'])->filter(function($value, $key) { |
|
| 207 | 207 | return $key !== "browsers"; |
| 208 | - })->map(function ($value, $key) use ($block) { |
|
| 208 | + })->map(function($value, $key) use ($block) { |
|
| 209 | 209 | return [ |
| 210 | 210 | 'name' => "blocks[$block->id][$key]", |
| 211 | 211 | 'value' => $value, |
@@ -218,15 +218,15 @@ discard block |
||
| 218 | 218 | |
| 219 | 219 | if ($medias) { |
| 220 | 220 | if (config('twill.media_library.translated_form_fields', false)) { |
| 221 | - $fields['blocksMedias'][] = Collection::make($medias)->mapWithKeys(function ($mediasByLocale, $locale) use ($block) { |
|
| 222 | - return Collection::make($mediasByLocale)->mapWithKeys(function ($value, $key) use ($block, $locale) { |
|
| 221 | + $fields['blocksMedias'][] = Collection::make($medias)->mapWithKeys(function($mediasByLocale, $locale) use ($block) { |
|
| 222 | + return Collection::make($mediasByLocale)->mapWithKeys(function($value, $key) use ($block, $locale) { |
|
| 223 | 223 | return [ |
| 224 | 224 | "blocks[$block->id][$key][$locale]" => $value, |
| 225 | 225 | ]; |
| 226 | 226 | }); |
| 227 | 227 | })->filter()->toArray(); |
| 228 | 228 | } else { |
| 229 | - $fields['blocksMedias'][] = Collection::make($medias)->mapWithKeys(function ($value, $key) use ($block) { |
|
| 229 | + $fields['blocksMedias'][] = Collection::make($medias)->mapWithKeys(function($value, $key) use ($block) { |
|
| 230 | 230 | return [ |
| 231 | 231 | "blocks[$block->id][$key]" => $value, |
| 232 | 232 | ]; |
@@ -237,8 +237,8 @@ discard block |
||
| 237 | 237 | $files = $blockFormFields['files']; |
| 238 | 238 | |
| 239 | 239 | if ($files) { |
| 240 | - Collection::make($files)->each(function ($rolesWithFiles, $locale) use (&$fields, $block) { |
|
| 241 | - $fields['blocksFiles'][] = Collection::make($rolesWithFiles)->mapWithKeys(function ($files, $role) use ($locale, $block) { |
|
| 240 | + Collection::make($files)->each(function($rolesWithFiles, $locale) use (&$fields, $block) { |
|
| 241 | + $fields['blocksFiles'][] = Collection::make($rolesWithFiles)->mapWithKeys(function($files, $role) use ($locale, $block) { |
|
| 242 | 242 | return [ |
| 243 | 243 | "blocks[$block->id][$role][$locale]" => $files, |
| 244 | 244 | ]; |
@@ -277,7 +277,7 @@ discard block |
||
| 277 | 277 | */ |
| 278 | 278 | protected function getBlockBrowsers($block) |
| 279 | 279 | { |
| 280 | - return Collection::make($block['content']['browsers'])->mapWithKeys(function ($ids, $relation) use ($block) { |
|
| 280 | + return Collection::make($block['content']['browsers'])->mapWithKeys(function($ids, $relation) use ($block) { |
|
| 281 | 281 | if (Schema::hasTable(config('twill.related_table', 'twill_related')) && $block->getRelated($relation)->isNotEmpty()) { |
| 282 | 282 | $items = $this->getFormFieldsForRelatedBrowser($block, $relation); |
| 283 | 283 | foreach ($items as &$item) { |
@@ -294,9 +294,9 @@ discard block |
||
| 294 | 294 | $sortedRelatedItems[$item->id] = $item; |
| 295 | 295 | } |
| 296 | 296 | |
| 297 | - $items = Collection::make(array_values($sortedRelatedItems))->filter(function ($value) { |
|
| 297 | + $items = Collection::make(array_values($sortedRelatedItems))->filter(function($value) { |
|
| 298 | 298 | return is_object($value); |
| 299 | - })->map(function ($relatedElement) use ($relation) { |
|
| 299 | + })->map(function($relatedElement) use ($relation) { |
|
| 300 | 300 | return [ |
| 301 | 301 | 'id' => $relatedElement->id, |
| 302 | 302 | 'name' => $relatedElement->titleInBrowser ?? $relatedElement->title, |
@@ -71,7 +71,7 @@ discard block |
||
| 71 | 71 | ->collect() |
| 72 | 72 | ->where('compiled', true) |
| 73 | 73 | ->whereIn('source', [Block::SOURCE_APP, Block::SOURCE_CUSTOM]) |
| 74 | - ->map(function ($block) { |
|
| 74 | + ->map(function($block) { |
|
| 75 | 75 | $blockName = str_replace('a17-block-', '', $block->component); |
| 76 | 76 | $basename = str_replace('.blade.php', '', $block->fileName); |
| 77 | 77 | |
@@ -93,7 +93,7 @@ discard block |
||
| 93 | 93 | $this->filesystem->put($vueBlockPath, $vueBlockContent); |
| 94 | 94 | $this->info("Block " . Str::title($blockName) . " generated successfully"); |
| 95 | 95 | } else { |
| 96 | - $this->info("Skipping block " . Str::title($blockName) . "."); |
|
| 96 | + $this->info("Skipping block " . Str::title($blockName) . "."); |
|
| 97 | 97 | } |
| 98 | 98 | }); |
| 99 | 99 | |
@@ -69,7 +69,7 @@ |
||
| 69 | 69 | private function readManifest() |
| 70 | 70 | { |
| 71 | 71 | try { |
| 72 | - return Cache::rememberForever('twill-manifest', function () { |
|
| 72 | + return Cache::rememberForever('twill-manifest', function() { |
|
| 73 | 73 | return $this->readJson($this->getManifestFilename()); |
| 74 | 74 | }); |
| 75 | 75 | } catch (\Exception $e) { |
@@ -17,7 +17,7 @@ discard block |
||
| 17 | 17 | $routesFile |
| 18 | 18 | ) { |
| 19 | 19 | if (file_exists($routesFile)) { |
| 20 | - $hostRoutes = function ($router) use ( |
|
| 20 | + $hostRoutes = function($router) use ( |
|
| 21 | 21 | $middlewares, |
| 22 | 22 | $namespace, |
| 23 | 23 | $routesFile |
@@ -27,7 +27,7 @@ discard block |
||
| 27 | 27 | 'namespace' => $namespace, |
| 28 | 28 | 'middleware' => $middlewares, |
| 29 | 29 | ], |
| 30 | - function ($router) use ($routesFile) { |
|
| 30 | + function($router) use ($routesFile) { |
|
| 31 | 31 | require $routesFile; |
| 32 | 32 | } |
| 33 | 33 | ); |
@@ -126,7 +126,7 @@ discard block |
||
| 126 | 126 | $manager = (new Manager()); |
| 127 | 127 | |
| 128 | 128 | $manager->getCapsuleList() |
| 129 | - ->each(function ($capsule) use ($router, $manager) { |
|
| 129 | + ->each(function($capsule) use ($router, $manager) { |
|
| 130 | 130 | $this->registerCapsuleRoutes($router, $capsule, $manager); |
| 131 | 131 | }); |
| 132 | 132 | } |
@@ -52,12 +52,12 @@ discard block |
||
| 52 | 52 | public function findByName($search, $sources = []) |
| 53 | 53 | { |
| 54 | 54 | return $this->collect() |
| 55 | - ->filter(function ($block) use ($search, $sources) { |
|
| 55 | + ->filter(function($block) use ($search, $sources) { |
|
| 56 | 56 | return $block->name == $search && |
| 57 | 57 | (blank($sources) || |
| 58 | 58 | collect($sources)->contains($block->source)); |
| 59 | 59 | }) |
| 60 | - ->sortBy(function ($block) { |
|
| 60 | + ->sortBy(function($block) { |
|
| 61 | 61 | return $block->source === 'app' ? 0 : 1; |
| 62 | 62 | }) |
| 63 | 63 | ->first(); |
@@ -69,7 +69,7 @@ discard block |
||
| 69 | 69 | public function getBlocks() |
| 70 | 70 | { |
| 71 | 71 | return $this->collect() |
| 72 | - ->filter(function ($block) { |
|
| 72 | + ->filter(function($block) { |
|
| 73 | 73 | return $block->type === Block::TYPE_BLOCK; |
| 74 | 74 | }) |
| 75 | 75 | ->values(); |
@@ -80,7 +80,7 @@ discard block |
||
| 80 | 80 | */ |
| 81 | 81 | public function getBlockList() |
| 82 | 82 | { |
| 83 | - return $this->getBlocks()->map(function (Block $block) { |
|
| 83 | + return $this->getBlocks()->map(function(Block $block) { |
|
| 84 | 84 | return $block->toList(); |
| 85 | 85 | }); |
| 86 | 86 | } |
@@ -108,7 +108,7 @@ discard block |
||
| 108 | 108 | } |
| 109 | 109 | |
| 110 | 110 | return collect($this->fileSystem->files($directory)) |
| 111 | - ->map(function ($file) use ($source, $type) { |
|
| 111 | + ->map(function($file) use ($source, $type) { |
|
| 112 | 112 | return new Block($file, $type, $source); |
| 113 | 113 | }); |
| 114 | 114 | } |
@@ -121,7 +121,7 @@ discard block |
||
| 121 | 121 | $this->paths = collect( |
| 122 | 122 | config('twill.block_editor.directories.source.blocks') |
| 123 | 123 | ) |
| 124 | - ->map(function ($path) { |
|
| 124 | + ->map(function($path) { |
|
| 125 | 125 | $path['type'] = Block::TYPE_BLOCK; |
| 126 | 126 | |
| 127 | 127 | return $path; |
@@ -129,7 +129,7 @@ discard block |
||
| 129 | 129 | ->merge( |
| 130 | 130 | collect( |
| 131 | 131 | config('twill.block_editor.directories.source.repeaters') |
| 132 | - )->map(function ($path) { |
|
| 132 | + )->map(function($path) { |
|
| 133 | 133 | $path['type'] = Block::TYPE_REPEATER; |
| 134 | 134 | |
| 135 | 135 | return $path; |
@@ -167,12 +167,12 @@ discard block |
||
| 167 | 167 | $this->generatePaths(); |
| 168 | 168 | |
| 169 | 169 | $this->items = collect($this->paths) |
| 170 | - ->reduce(function (Collection $keep, $path) { |
|
| 170 | + ->reduce(function(Collection $keep, $path) { |
|
| 171 | 171 | $this->readBlocks( |
| 172 | 172 | $path['path'], |
| 173 | 173 | $path['source'], |
| 174 | 174 | $path['type'] |
| 175 | - )->each(function ($block) use ($keep) { |
|
| 175 | + )->each(function($block) use ($keep) { |
|
| 176 | 176 | $keep->push($block); |
| 177 | 177 | |
| 178 | 178 | return $keep; |
@@ -183,15 +183,15 @@ discard block |
||
| 183 | 183 | ->toArray(); |
| 184 | 184 | |
| 185 | 185 | $this->items = $this->collect() |
| 186 | - ->each(function (Block $block) { |
|
| 186 | + ->each(function(Block $block) { |
|
| 187 | 187 | $block->setSource($this->detectCustomSources($block)); |
| 188 | 188 | }) |
| 189 | 189 | ->toArray(); |
| 190 | 190 | |
| 191 | 191 | // remove duplicate Twill blocks |
| 192 | 192 | $appBlocks = $this->collect()->whereIn('source', [Block::SOURCE_APP, Block::SOURCE_CUSTOM]); |
| 193 | - $this->items = $this->collect()->filter(function ($item) use ($appBlocks) { |
|
| 194 | - return !$appBlocks->contains(function ($block) use ($item) { |
|
| 193 | + $this->items = $this->collect()->filter(function($item) use ($appBlocks) { |
|
| 194 | + return !$appBlocks->contains(function($block) use ($item) { |
|
| 195 | 195 | return $item->source === Block::SOURCE_TWILL && $item->name === $block->name; |
| 196 | 196 | }); |
| 197 | 197 | })->values()->toArray(); |
@@ -214,12 +214,12 @@ discard block |
||
| 214 | 214 | */ |
| 215 | 215 | public function addBlocksFromConfig(Collection $items, $type) |
| 216 | 216 | { |
| 217 | - $items->reject(function ($value, $blockName) use ($type) { |
|
| 218 | - return $this->contains(function ($block) use ($blockName, $type) { |
|
| 217 | + $items->reject(function($value, $blockName) use ($type) { |
|
| 218 | + return $this->contains(function($block) use ($blockName, $type) { |
|
| 219 | 219 | return $block->name === $blockName && $block->type === $type; |
| 220 | 220 | }) ? [$blockName, $value] : false; |
| 221 | 221 | }) |
| 222 | - ->each(function ($block, $blockName) use ($type) { |
|
| 222 | + ->each(function($block, $blockName) use ($type) { |
|
| 223 | 223 | if ($block['compiled'] ?? false) { |
| 224 | 224 | $file = null; |
| 225 | 225 | } else { |
@@ -260,7 +260,7 @@ discard block |
||
| 260 | 260 | */ |
| 261 | 261 | public function logDeprecatedBlockConfig($blockName, $type) |
| 262 | 262 | { |
| 263 | - $path = $this->paths->filter(function ($path) use ($type) { |
|
| 263 | + $path = $this->paths->filter(function($path) use ($type) { |
|
| 264 | 264 | return $path['source'] === Block::SOURCE_APP && $path['type'] === $type; |
| 265 | 265 | })->pluck('path')->join(', ', ' or '); |
| 266 | 266 | |
@@ -282,7 +282,7 @@ discard block |
||
| 282 | 282 | public function findFileByComponentName($componentName) |
| 283 | 283 | { |
| 284 | 284 | $filename = str_replace('a17-block-', '', $componentName) . '.blade.php'; |
| 285 | - $paths = $this->paths->pluck('path')->filter(function ($path) { |
|
| 285 | + $paths = $this->paths->pluck('path')->filter(function($path) { |
|
| 286 | 286 | return $this->fileSystem->exists($path); |
| 287 | 287 | })->toArray(); |
| 288 | 288 | |
@@ -308,7 +308,7 @@ discard block |
||
| 308 | 308 | */ |
| 309 | 309 | public function list() |
| 310 | 310 | { |
| 311 | - return $this->collect()->map(function (Block $block) { |
|
| 311 | + return $this->collect()->map(function(Block $block) { |
|
| 312 | 312 | return $block->toList(); |
| 313 | 313 | }); |
| 314 | 314 | } |
@@ -327,7 +327,7 @@ discard block |
||
| 327 | 327 | public function getRepeaters() |
| 328 | 328 | { |
| 329 | 329 | return $this->collect() |
| 330 | - ->filter(function ($block) { |
|
| 330 | + ->filter(function($block) { |
|
| 331 | 331 | return $block->type === Block::TYPE_REPEATER; |
| 332 | 332 | }) |
| 333 | 333 | ->values(); |
@@ -338,7 +338,7 @@ discard block |
||
| 338 | 338 | */ |
| 339 | 339 | public function getRepeaterList() |
| 340 | 340 | { |
| 341 | - return $this->getRepeaters()->map(function (Block $block) { |
|
| 341 | + return $this->getRepeaters()->map(function(Block $block) { |
|
| 342 | 342 | return $block->toList(); |
| 343 | 343 | }); |
| 344 | 344 | } |
@@ -16,8 +16,8 @@ discard block |
||
| 16 | 16 | */ |
| 17 | 17 | function getLocales() |
| 18 | 18 | { |
| 19 | - $locales = collect(config('translatable.locales'))->map(function ($locale, $index) { |
|
| 20 | - return collect($locale)->map(function ($country) use ($locale, $index) { |
|
| 19 | + $locales = collect(config('translatable.locales'))->map(function($locale, $index) { |
|
| 20 | + return collect($locale)->map(function($country) use ($locale, $index) { |
|
| 21 | 21 | return is_numeric($index) |
| 22 | 22 | ? $locale |
| 23 | 23 | : "$index-$country"; |
@@ -42,7 +42,7 @@ discard block |
||
| 42 | 42 | { |
| 43 | 43 | $manageMultipleLanguages = count(getLocales()) > 1; |
| 44 | 44 | if ($manageMultipleLanguages && $translate) { |
| 45 | - $allLanguages = Collection::make(getLocales())->map(function ($locale, $index) use ($form_fields) { |
|
| 45 | + $allLanguages = Collection::make(getLocales())->map(function($locale, $index) use ($form_fields) { |
|
| 46 | 46 | return [ |
| 47 | 47 | 'shortlabel' => strtoupper($locale), |
| 48 | 48 | 'label' => getLanguageLabelFromLocaleCode($locale), |
@@ -22,7 +22,7 @@ discard block |
||
| 22 | 22 | */ |
| 23 | 23 | public function scopeMine($query) |
| 24 | 24 | { |
| 25 | - return $query->whereHas('revisions', function ($query) { |
|
| 25 | + return $query->whereHas('revisions', function($query) { |
|
| 26 | 26 | $query->where('user_id', auth('twill_users')->user()->id); |
| 27 | 27 | }); |
| 28 | 28 | } |
@@ -34,7 +34,7 @@ discard block |
||
| 34 | 34 | */ |
| 35 | 35 | public function revisionsArray() |
| 36 | 36 | { |
| 37 | - return $this->revisions->map(function ($revision) { |
|
| 37 | + return $this->revisions->map(function($revision) { |
|
| 38 | 38 | return [ |
| 39 | 39 | 'id' => $revision->id, |
| 40 | 40 | 'author' => $revision->user->name ?? 'Unknown', |
@@ -11,15 +11,15 @@ discard block |
||
| 11 | 11 | |
| 12 | 12 | protected static function bootHasSlug() |
| 13 | 13 | { |
| 14 | - static::created(function ($model) { |
|
| 14 | + static::created(function($model) { |
|
| 15 | 15 | $model->setSlugs(); |
| 16 | 16 | }); |
| 17 | 17 | |
| 18 | - static::updated(function ($model) { |
|
| 18 | + static::updated(function($model) { |
|
| 19 | 19 | $model->setSlugs(); |
| 20 | 20 | }); |
| 21 | 21 | |
| 22 | - static::restored(function ($model) { |
|
| 22 | + static::restored(function($model) { |
|
| 23 | 23 | $model->setSlugs($restoring = true); |
| 24 | 24 | }); |
| 25 | 25 | } |
@@ -72,7 +72,7 @@ discard block |
||
| 72 | 72 | */ |
| 73 | 73 | public function scopeForSlug($query, $slug) |
| 74 | 74 | { |
| 75 | - return $query->whereHas('slugs', function ($query) use ($slug) { |
|
| 75 | + return $query->whereHas('slugs', function($query) use ($slug) { |
|
| 76 | 76 | $query->whereSlug($slug); |
| 77 | 77 | $query->whereActive(true); |
| 78 | 78 | $query->whereLocale(app()->getLocale()); |
@@ -86,7 +86,7 @@ discard block |
||
| 86 | 86 | */ |
| 87 | 87 | public function scopeForInactiveSlug($query, $slug) |
| 88 | 88 | { |
| 89 | - return $query->whereHas('slugs', function ($query) use ($slug) { |
|
| 89 | + return $query->whereHas('slugs', function($query) use ($slug) { |
|
| 90 | 90 | $query->whereSlug($slug); |
| 91 | 91 | $query->whereLocale(app()->getLocale()); |
| 92 | 92 | })->with(['slugs']); |
@@ -99,7 +99,7 @@ discard block |
||
| 99 | 99 | */ |
| 100 | 100 | public function scopeForFallbackLocaleSlug($query, $slug) |
| 101 | 101 | { |
| 102 | - return $query->whereHas('slugs', function ($query) use ($slug) { |
|
| 102 | + return $query->whereHas('slugs', function($query) use ($slug) { |
|
| 103 | 103 | $query->whereSlug($slug); |
| 104 | 104 | $query->whereActive(true); |
| 105 | 105 | $query->whereLocale(config('translatable.fallback_locale')); |
@@ -155,7 +155,7 @@ discard block |
||
| 155 | 155 | foreach ($slugParams as $key => $value) { |
| 156 | 156 | //check variations of the slug |
| 157 | 157 | if ($key == 'slug') { |
| 158 | - $query->where(function ($query) use ($value) { |
|
| 158 | + $query->where(function($query) use ($value) { |
|
| 159 | 159 | $query->orWhere('slug', $value); |
| 160 | 160 | $query->orWhere('slug', $value . '-' . $this->getSuffixSlug()); |
| 161 | 161 | for ($i = 2; $i <= $this->nb_variation_slug; $i++) { |
@@ -235,7 +235,7 @@ discard block |
||
| 235 | 235 | */ |
| 236 | 236 | public function getActiveSlug($locale = null) |
| 237 | 237 | { |
| 238 | - return $this->slugs->first(function ($slug) use ($locale) { |
|
| 238 | + return $this->slugs->first(function($slug) use ($locale) { |
|
| 239 | 239 | return ($slug->locale === ($locale ?? app()->getLocale())) && $slug->active; |
| 240 | 240 | }) ?? null; |
| 241 | 241 | } |
@@ -247,7 +247,7 @@ discard block |
||
| 247 | 247 | */ |
| 248 | 248 | public function getFallbackActiveSlug() |
| 249 | 249 | { |
| 250 | - return $this->slugs->first(function ($slug) { |
|
| 250 | + return $this->slugs->first(function($slug) { |
|
| 251 | 251 | return $slug->locale === config('translatable.fallback_locale') && $slug->active; |
| 252 | 252 | }) ?? null; |
| 253 | 253 | } |