Skip to content
Snippets Groups Projects
Unverified Commit 25212adb authored by Xaver Maierhofer's avatar Xaver Maierhofer
Browse files

[TASK] Add optional fullscreen mode

parent 4fd4e27a
Branches
Tags
No related merge requests found
File deleted
File deleted
File deleted
File added
File added
File added
...@@ -7,9 +7,9 @@ $cache-breaker: unique-id(); ...@@ -7,9 +7,9 @@ $cache-breaker: unique-id();
font-family: 'ionicons'; font-family: 'ionicons';
font-style: normal; font-style: normal;
font-weight: normal; font-weight: normal;
src: url('fonts/icon.woff2?rel=#{$cache-breaker}') format('woff2'), src: url('fonts/meshviewer.woff2?rel=#{$cache-breaker}') format('woff2'),
url('fonts/icon.woff?rel=#{$cache-breaker}') format('woff'), url('fonts/meshviewer.woff?rel=#{$cache-breaker}') format('woff'),
url('fonts/icon.ttf?rel=#{$cache-breaker}') format('truetype'); url('fonts/meshviewer.ttf?rel=#{$cache-breaker}') format('truetype');
} }
[class^='ion-'], [class^='ion-'],
...@@ -49,3 +49,5 @@ $cache-breaker: unique-id(); ...@@ -49,3 +49,5 @@ $cache-breaker: unique-id();
@include icon('arrow-resize', '\f264'); @include icon('arrow-resize', '\f264');
@include icon('arrow-left-c', '\f108'); @include icon('arrow-left-c', '\f108');
@include icon('arrow-right-c', '\f10b'); @include icon('arrow-right-c', '\f10b');
@include icon('full-enter', '\e901');
@include icon('full-exit', '\e900');
...@@ -6,6 +6,8 @@ module.exports = function () { ...@@ -6,6 +6,8 @@ module.exports = function () {
'nodeZoom': 18, 'nodeZoom': 18,
'labelZoom': 13, 'labelZoom': 13,
'clientZoom': 15, 'clientZoom': 15,
'fullscreen': true,
'fullscreenFrame': true,
'nodeAttr': [ 'nodeAttr': [
// value can be a node attribute (1 depth) or a a function in utils/node with prefix show // value can be a node attribute (1 depth) or a a function in utils/node with prefix show
{ {
......
define(['d3-interpolate', 'map', 'sidebar', 'tabs', 'container', 'legend', define(['d3-interpolate', 'map', 'sidebar', 'tabs', 'container', 'legend',
'linklist', 'nodelist', 'simplenodelist', 'infobox/main', 'linklist', 'nodelist', 'simplenodelist', 'infobox/main',
'proportions', 'forcegraph', 'title', 'about', 'datadistributor', 'proportions', 'forcegraph', 'title', 'about', 'datadistributor',
'filters/filtergui', 'filters/hostname'], 'filters/filtergui', 'filters/hostname', 'helper'],
function (d3Interpolate, Map, Sidebar, Tabs, Container, Legend, Linklist, function (d3Interpolate, Map, Sidebar, Tabs, Container, Legend, Linklist,
Nodelist, SimpleNodelist, Infobox, Proportions, ForceGraph, Nodelist, SimpleNodelist, Infobox, Proportions, ForceGraph,
Title, About, DataDistributor, FilterGUI, HostnameFilter) { Title, About, DataDistributor, FilterGUI, HostnameFilter, helper) {
'use strict'; 'use strict';
return function (language) { return function (language) {
...@@ -77,6 +77,17 @@ function (d3Interpolate, Map, Sidebar, Tabs, Container, Legend, Linklist, ...@@ -77,6 +77,17 @@ function (d3Interpolate, Map, Sidebar, Tabs, Container, Legend, Linklist,
buttons.appendChild(buttonToggle); buttons.appendChild(buttonToggle);
if (config.fullscreen || config.fullscreenFrame && window.frameElement) {
var buttonFullscreen = document.createElement('button');
buttonFullscreen.classList.add('ion-full-enter');
buttonFullscreen.setAttribute('aria-label', _.t('button.fullscreen'));
buttonFullscreen.onclick = function onclick() {
helper.fullscreen(buttonFullscreen);
};
buttons.appendChild(buttonFullscreen);
}
var title = new Title(); var title = new Title();
var header = new Container('header'); var header = new Container('header');
......
...@@ -176,5 +176,23 @@ define({ ...@@ -176,5 +176,23 @@ define({
} }
} }
ctx.fill(); ctx.fill();
},
fullscreen: function fullscreen(btn) {
if (!document.fullscreenElement) {
var fel = document.firstElementChild;
var func = fel.requestFullscreen
|| fel.webkitRequestFullScreen
|| fel.msRequestFullscreen;
func.call(fel);
btn.classList.add('ion-full-exit');
} else {
func = document.exitFullscreen
|| document.webkitexitFullscreen
|| document.msexitFullscreen;
if (func) {
func.call(document);
btn.classList.add('ion-full-enter');
}
}
} }
}); });
...@@ -59,7 +59,8 @@ ...@@ -59,7 +59,8 @@
"button": { "button": {
"switchView": "Ansicht wechseln", "switchView": "Ansicht wechseln",
"location": "Koordinaten wählen", "location": "Koordinaten wählen",
"tracking": "Lokalisierung" "tracking": "Lokalisierung",
"fullscreen": "Vollbildmodus wechseln"
}, },
"momentjs": { "momentjs": {
"calendar": { "calendar": {
......
...@@ -59,7 +59,8 @@ ...@@ -59,7 +59,8 @@
"button": { "button": {
"switchView": "Switch view", "switchView": "Switch view",
"location": "Pick coordinates", "location": "Pick coordinates",
"tracking": "Localisation" "tracking": "Localisation",
"fullscreen": "Toggle fullscreen"
}, },
"momentjs": { "momentjs": {
"calendar": { "calendar": {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment