mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-26 02:10:19 +08:00
1d91b4d8a6
- Updated to go through HomeController with the builder as a helper class. - Extracted some reapeated items into variables in manifest. - Updated background color to match those used by BookStack. - Removed reference of icon.ico since its not intended to be used. - Added tests to cover functionality. Review of #4430
60 lines
1.9 KiB
PHP
60 lines
1.9 KiB
PHP
<?php
|
|
|
|
namespace BookStack\App;
|
|
|
|
class PwaManifestBuilder
|
|
{
|
|
public function build(): array
|
|
{
|
|
$darkMode = (bool) setting()->getForCurrentUser('dark-mode-enabled');
|
|
$appName = setting('app-name');
|
|
|
|
return [
|
|
"name" => $appName,
|
|
"short_name" => $appName,
|
|
"start_url" => "./",
|
|
"scope" => "/",
|
|
"display" => "standalone",
|
|
"background_color" => $darkMode ? '#111111' : '#F2F2F2',
|
|
"description" => $appName,
|
|
"theme_color" => ($darkMode ? setting('app-color-dark') : setting('app-color')),
|
|
"launch_handler" => [
|
|
"client_mode" => "focus-existing"
|
|
],
|
|
"orientation" => "portrait",
|
|
"icons" => [
|
|
[
|
|
"src" => setting('app-icon-32') ?: url('/icon-32.png'),
|
|
"sizes" => "32x32",
|
|
"type" => "image/png"
|
|
],
|
|
[
|
|
"src" => setting('app-icon-64') ?: url('/icon-64.png'),
|
|
"sizes" => "64x64",
|
|
"type" => "image/png"
|
|
],
|
|
[
|
|
"src" => setting('app-icon-128') ?: url('/icon-128.png'),
|
|
"sizes" => "128x128",
|
|
"type" => "image/png"
|
|
],
|
|
[
|
|
"src" => setting('app-icon-180') ?: url('/icon-180.png'),
|
|
"sizes" => "180x180",
|
|
"type" => "image/png"
|
|
],
|
|
[
|
|
"src" => setting('app-icon') ?: url('/icon.png'),
|
|
"sizes" => "256x256",
|
|
"type" => "image/png"
|
|
],
|
|
[
|
|
"src" => url('favicon.ico'),
|
|
"sizes" => "48x48",
|
|
"type" => "image/vnd.microsoft.icon"
|
|
],
|
|
],
|
|
];
|
|
}
|
|
}
|