Adapt new bootstrap format, use Asset extender

This commit is contained in:
Franz Liedke 2018-01-16 23:19:29 +01:00
parent 1a879ac59f
commit a4c42dcfff
2 changed files with 15 additions and 54 deletions

View File

@ -9,13 +9,21 @@
* file that was distributed with this source code.
*/
use Flarum\Extend;
use Flarum\Sticky\Listener;
use Illuminate\Contracts\Events\Dispatcher;
return function (Dispatcher $events) {
$events->subscribe(Listener\AddApiAttributes::class);
$events->subscribe(Listener\AddClientAssets::class);
$events->subscribe(Listener\CreatePostWhenDiscussionIsStickied::class);
$events->subscribe(Listener\PinStickiedDiscussionsToTop::class);
$events->subscribe(Listener\SaveStickyToDatabase::class);
};
return [
(new Extend\Assets('forum'))
->defaultAssets(__DIR__)
->bootstrapper('flarum/sticky/main'),
(new Extend\Assets('admin'))
->asset(__DIR__.'/js/admin/dist/extension.js')
->bootstrapper('flarum/sticky/main'),
function (Dispatcher $events) {
$events->subscribe(Listener\AddApiAttributes::class);
$events->subscribe(Listener\CreatePostWhenDiscussionIsStickied::class);
$events->subscribe(Listener\PinStickiedDiscussionsToTop::class);
$events->subscribe(Listener\SaveStickyToDatabase::class);
},
];

View File

@ -1,47 +0,0 @@
<?php
/*
* This file is part of Flarum.
*
* (c) Toby Zerner <toby.zerner@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Flarum\Sticky\Listener;
use Flarum\Frontend\Event\Rendering;
use Illuminate\Contracts\Events\Dispatcher;
class AddClientAssets
{
/**
* @param Dispatcher $events
*/
public function subscribe(Dispatcher $events)
{
$events->listen(Rendering::class, [$this, 'addAssets']);
}
/**
* @param Rendering $event
*/
public function addAssets(Rendering $event)
{
if ($event->isForum()) {
$event->addAssets([
__DIR__.'/../../js/forum/dist/extension.js',
__DIR__.'/../../less/forum/extension.less'
]);
$event->addBootstrapper('flarum/sticky/main');
}
if ($event->isAdmin()) {
$event->addAssets([
__DIR__.'/../../js/admin/dist/extension.js'
]);
$event->addBootstrapper('flarum/sticky/main');
}
}
}