Skip to content
Snippets Groups Projects
Unverified Commit 6318721e authored by Morris Jobke's avatar Morris Jobke Committed by GitHub
Browse files

Merge pull request #21818 from nextcloud/techdebt/noid/theming-bootstrap

Use IBootstrap for the app theming
parents 6ef029d6 340cd81d
No related branches found
No related tags found
No related merge requests found
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
/** /**
* @copyright Copyright (c) 2019 Robin Appelman <robin@icewind.nl> * @copyright Copyright (c) 2019 Robin Appelman <robin@icewind.nl>
* *
* @author Morris Jobke <hey@morrisjobke.de>
* @author Robin Appelman <robin@icewind.nl> * @author Robin Appelman <robin@icewind.nl>
* @author Roeland Jago Douma <roeland@famdouma.nl> * @author Roeland Jago Douma <roeland@famdouma.nl>
* *
...@@ -24,28 +25,26 @@ ...@@ -24,28 +25,26 @@
namespace OCA\Theming\AppInfo; namespace OCA\Theming\AppInfo;
use OCA\Theming\Service\JSDataService; use OCA\Theming\Capabilities;
use OCP\AppFramework\IAppContainer; use OCA\Theming\Listener\BeforeTemplateRenderedListener;
use OCP\IInitialStateService; use OCP\AppFramework\App;
use OCP\AppFramework\Bootstrap\IBootContext;
use OCP\AppFramework\Bootstrap\IBootstrap;
use OCP\AppFramework\Bootstrap\IRegistrationContext;
use OCP\AppFramework\Http\Events\BeforeTemplateRenderedEvent;
class Application extends \OCP\AppFramework\App { class Application extends App implements IBootstrap {
public const APP_ID = 'theming'; public const APP_ID = 'theming';
public function __construct() { public function __construct() {
parent::__construct(self::APP_ID); parent::__construct(self::APP_ID);
$container = $this->getContainer();
$this->registerInitialState($container);
} }
private function registerInitialState(IAppContainer $container) { public function register(IRegistrationContext $context): void {
/** @var IInitialStateService $initialState */ $context->registerCapability(Capabilities::class);
$initialState = $container->query(IInitialStateService::class); $context->registerEventListener(BeforeTemplateRenderedEvent::class, BeforeTemplateRenderedListener::class);
}
$initialState->provideLazyInitialState(self::APP_ID, 'data', function () use ($container) { public function boot(IBootContext $context): void {
/** @var JSDataService $data */
$data = $container->query(JSDataService::class);
return $data;
});
} }
} }
<?php <?php
declare(strict_types=1);
/** /**
* @copyright Copyright (c) 2016 Bjoern Schiessle <bjoern@schiessle.org> * @copyright Copyright (c) 2020 Morris Jobke <hey@morrisjobke.de>
* @copyright Copyright (c) 2016 Lukas Reschke <lukas@statuscode.ch>
* *
* @author Bjoern Schiessle <bjoern@schiessle.org> * @author Morris Jobke <hey@morrisjobke.de>
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
* @author Joas Schilling <coding@schilljs.com>
* @author Julius Härtl <jus@bitgrid.net>
* @author Lukas Reschke <lukas@statuscode.ch>
* @author Robin Appelman <robin@icewind.nl>
* *
* @license GNU AGPL version 3 or any later version * @license GNU AGPL version 3 or any later version
* *
...@@ -27,23 +24,60 @@ ...@@ -27,23 +24,60 @@
* *
*/ */
namespace OCA\Theming\Listener;
use OCA\Theming\AppInfo\Application; use OCA\Theming\AppInfo\Application;
use OCA\Theming\Service\JSDataService;
use OCP\EventDispatcher\Event;
use OCP\EventDispatcher\IEventListener;
use OCP\IConfig;
use OCP\IInitialStateService;
use OCP\IServerContainer;
use OCP\IURLGenerator;
class BeforeTemplateRenderedListener implements IEventListener {
/** @var IInitialStateService */
private $initialStateService;
/** @var IURLGenerator */
private $urlGenerator;
/** @var IConfig */
private $config;
/** @var IServerContainer */
private $serverContainer;
public function __construct(
IInitialStateService $initialStateService,
IURLGenerator $urlGenerator,
IConfig $config,
IServerContainer $serverContainer
) {
$this->initialStateService = $initialStateService;
$this->urlGenerator = $urlGenerator;
$this->config = $config;
$this->serverContainer = $serverContainer;
}
public function handle(Event $event): void {
$serverContainer = $this->serverContainer;
$this->initialStateService->provideLazyInitialState(Application::APP_ID, 'data', function () use ($serverContainer) {
return $serverContainer->query(JSDataService::class);
});
$linkToCSS = $this->urlGenerator->linkToRoute(
'theming.Theming.getStylesheet',
[
'v' => $this->config->getAppValue('theming', 'cachebuster', '0'),
]
);
\OCP\Util::addHeader(
'link',
[
'rel' => 'stylesheet',
'href' => $linkToCSS,
]
);
$app = \OC::$server->query(Application::class); \OCP\Util::addScript('theming', 'theming');
$app->getContainer()->registerCapability(\OCA\Theming\Capabilities::class); }
}
$linkToCSS = \OC::$server->getURLGenerator()->linkToRoute(
'theming.Theming.getStylesheet',
[
'v' => \OC::$server->getConfig()->getAppValue('theming', 'cachebuster', '0'),
]
);
\OCP\Util::addHeader(
'link',
[
'rel' => 'stylesheet',
'href' => $linkToCSS,
]
);
\OCP\Util::addScript('theming', 'theming');
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment