Skip to content
This repository was archived by the owner on Dec 31, 2024. It is now read-only.

Commit 26be64a

Browse files
committedMay 14, 2019
✨ ServiceProvider
1 parent ec81c1d commit 26be64a

8 files changed

+110
-9
lines changed
 

‎.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
vendor
1+
src/vendor/*

‎composer.json

+6-3
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,15 @@
1717
],
1818
"autoload": {
1919
"psr-4": {
20-
"BlockCompose\\": ""
20+
"TinyPixel\\BlockCompose\\": "src/"
2121
}
2222
},
2323
"require": {
24-
"php": "^7.1",
24+
"php": "^7.1.3",
25+
"illuminate/support": "^5.3",
26+
"illuminate/filesystem": "^5.3",
2527
"composer/installers": "^1.0",
26-
"tightenco/collect": "^5.8.15"
28+
"tightenco/collect": "^5.8.15",
29+
"roots/acorn": "dev-master"
2730
}
2831
}

‎Attribute.php ‎src/Attribute.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace BlockCompose;
3+
namespace TinyPixel\BlockCompose;
44

55
/**
66
* Attribute

‎src/BaseServiceProvider.php

+61
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
<?php
2+
3+
namespace TinyPixel\BlockCompose;
4+
5+
use Roots\Acorn\ServiceProvider;
6+
7+
class BaseServiceProvider extends ServiceProvider
8+
{
9+
public function register()
10+
{
11+
}
12+
13+
public function boot()
14+
{
15+
}
16+
17+
/**
18+
* Bind all classes within an App dir
19+
* to the IOC
20+
**/
21+
public function bindFromDir($dir)
22+
{
23+
$this->bound = collect();
24+
25+
collect(glob($this->app->basePath('app/'. $dir . '/*.php')))->map(
26+
function ($file) use ($dir) {
27+
$src = $this->formatBindings($dir, $file);
28+
print_r($src);
29+
$this->app->bind($src->handle, function () use ($src) {
30+
return new $src->class;
31+
});
32+
$this->bound->push($src->handle);
33+
}
34+
);
35+
36+
$this->withBound();
37+
}
38+
39+
/**
40+
* Given a file and a containing directory,
41+
* format the class to be bound and the handle
42+
* it is to be bound to.
43+
*
44+
**/
45+
public function formatBindings($class, $file)
46+
{
47+
return (object) [
48+
'handle' => strtolower($class).'.'.strtolower(basename($file, '.php')),
49+
'class' => '\\App\\'.$class.'\\'. basename($file, '.php'),
50+
];
51+
}
52+
53+
/**
54+
* Perform a boot operation on each
55+
* of the bound classes.
56+
*
57+
*/
58+
public function withBound()
59+
{
60+
}
61+
}

‎src/BlockComposeServiceProvider.php

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
<?php
2+
3+
namespace TinyPixel\BlockCompose;
4+
5+
use \TinyPixel\BlockCompose\BaseServiceProvider;
6+
7+
class BlockComposeServiceProvider extends BaseServiceProvider
8+
{
9+
/**
10+
* Service register
11+
*/
12+
public function register()
13+
{
14+
$this->app->bind('blocks.script', function () {
15+
return new \TinyPixel\BlockCompose\Script();
16+
});
17+
18+
$this->bindFromDir('Blocks');
19+
}
20+
21+
/**
22+
* Service boot
23+
*/
24+
public function boot()
25+
{
26+
}
27+
28+
/**
29+
* Initialize blocks and compose views
30+
**/
31+
public function withBound()
32+
{
33+
foreach ($this->bound as $block) {
34+
$this->app[$block]->init()->compose();
35+
}
36+
}
37+
}

‎Composer.php ‎src/Composer.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<?php
22

3-
namespace BlockCompose;
3+
namespace TinyPixel\BlockCompose;
44

55
use function Roots\app;
66
use function Roots\view;
77
use function Roots\config;
88

99
use View;
1010

11-
use BlockCompose\Traits\Compose;
11+
use \TinyPixel\BlockCompose\Traits\Compose;
1212

1313
/**
1414
* Block Composer

‎Script.php ‎src/Script.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace BlockCompose;
3+
namespace TinyPixel\BlockCompose;
44

55
use function Roots\config;
66
use function Roots\asset;

‎Traits/Compose.php ‎src/Traits/Compose.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace BlockCompose\Traits;
3+
namespace TinyPixel\BlockCompose\Traits;
44

55
trait Compose
66
{

0 commit comments

Comments
 (0)
This repository has been archived.