-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implementation of LXD PWA with a dynamic start_url"
- Added Screenshot images to /public/assets/img/ for use in teh manifest variable in index.html. Signed-off-by: Nkeiruka <[email protected]>
- Loading branch information
Showing
6 changed files
with
49 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
var screenshot = window.location.origin + "/ui/assets/img/"; | ||
|
||
const manifestElement = document.getElementById("manifest"); | ||
const dynamicManifest = JSON.stringify({ | ||
short_name: "LXD " + window.location.origin, | ||
name: "LXD-UI - " + window.location.origin, | ||
icons: [ | ||
{ | ||
src: window.location.origin + "/ui/assets/img/canonical-lxd-512.png", | ||
type: "image/png", | ||
sizes: "512x512", | ||
}, | ||
], | ||
id: "LXDID-" + window.location.origin, | ||
start_url: window.location.origin, | ||
background_color: "#E95420", | ||
display: "standalone", | ||
scope: window.location.origin, | ||
theme_color: "#262626", | ||
shortcuts: [], | ||
description: | ||
"LXD provides a unified user experience for managing system containers and virtual machines.", | ||
screenshots: [ | ||
{ | ||
src: screenshot + "LXD-screenshot.png", | ||
type: "image/png", | ||
sizes: "954x953", | ||
form_factor: "wide", | ||
}, | ||
{ | ||
src: screenshot + "LXD-screenshot2.png", | ||
type: "image/png", | ||
sizes: "954x953", | ||
form_factor: "wide", | ||
}, | ||
{ | ||
src: screenshot + "LXD-screenshot3.png", | ||
type: "image/png", | ||
sizes: "1920x1075", | ||
}, | ||
], | ||
}); | ||
|
||
manifestElement?.setAttribute( | ||
"href", | ||
"data:application/json;charset=utf-8," + encodeURIComponent(dynamicManifest), | ||
); |