-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontroller.php
82 lines (71 loc) · 2.55 KB
/
controller.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<?php
namespace Concrete\Package\TailwindGridFramework;
use C5j\TailwindGridFramework\Page\Theme\GridFramework\Type\TailwindcssFlexbox;
use Concrete\Core\Asset\AssetList;
use Concrete\Core\Package\Package;
use Concrete\Core\Page\Page;
use Concrete\Core\Page\Theme\GridFramework\Manager;
use Concrete\Core\View\View;
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
use Symfony\Component\EventDispatcher\GenericEvent;
class Controller extends Package
{
protected $pkgHandle = 'tailwind_grid_framework';
protected $appVersionRequired = '8.5.4';
protected $pkgVersion = '0.1';
protected $pkgAutoloaderRegistries = [
'src' => '\C5j\TailwindGridFramework',
];
/**
* {@inheritdoc}
*/
public function getPackageName()
{
return t('Tailwind CSS Grid Framework');
}
/**
* {@inheritdoc}
*/
public function getPackageDescription()
{
return t('Add tailwindcss Grid Framework to use from themes.');
}
/**
* Install process of the package.
*/
public function install()
{
$pkg = parent::install();
$this->installContentFile('config/install.xml');
}
public function on_start()
{
$app = $this->app;
/** @var Manager $manager */
$manager = $app->make('manager/grid_framework');
$manager->extend('tailwindcss_flexbox', function () {
return new TailwindcssFlexbox();
});
$list = AssetList::getInstance();
if ($list) {
$list->register('css', 'tailwindcss1', 'https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css', ['local' => false]);
$list->register('css', 'tailwindcss_layoutfix_v8', 'css/layoutfix_v8.css', [], 'tailwind_grid_framework');
$list->register('css', 'tailwindcss_editfix_v8', 'css/editfix_v8.css', [], 'tailwind_grid_framework');
$list->registerGroup('tailwindcss1', [
['css', 'tailwindcss1'],
['css', 'tailwindcss_layoutfix_v8']
]);
}
/** @var EventDispatcherInterface $dispatcher */
$dispatcher = $app->make(EventDispatcherInterface::class);
$dispatcher->addListener('on_before_render', function ($event) use ($app) {
/** @var GenericEvent $event */
$page = Page::getCurrentPage();
if ($page && $page->isEditMode()) {
/** @var View $view */
$view = $event->getArgument('view');
$view->requireAsset('css', 'tailwindcss_editfix_v8');
}
});
}
}