Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Nextcloud
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeDomum
Nextcloud
Commits
6318721e
Unverified
Commit
6318721e
authored
4 years ago
by
Morris Jobke
Committed by
GitHub
4 years ago
Browse files
Options
Downloads
Plain Diff
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
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
apps/theming/lib/AppInfo/Application.php
+14
-15
14 additions, 15 deletions
apps/theming/lib/AppInfo/Application.php
apps/theming/lib/Listener/BeforeTemplateRenderedListener.php
+83
-0
83 additions, 0 deletions
apps/theming/lib/Listener/BeforeTemplateRenderedListener.php
with
97 additions
and
15 deletions
apps/theming/lib/AppInfo/Application.php
+
14
−
15
View file @
6318721e
...
@@ -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\Ap
p
{
class
Application
extends
App
implements
IBootstra
p
{
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
;
});
}
}
}
}
This diff is collapsed.
Click to expand it.
apps/theming/
appinfo/app
.php
→
apps/theming/
lib/Listener/BeforeTemplateRenderedListener
.php
+
83
−
0
View file @
6318721e
<?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'
);
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment