Added launcher view.
parent
05c18d42db
commit
6b9764e6c6
@ -0,0 +1,7 @@
|
|||||||
|
/* global $, Whisper, storage */
|
||||||
|
const $body = $(document.body);
|
||||||
|
|
||||||
|
// eslint-disable-next-line strict
|
||||||
|
window.view = new Whisper.LauncherView();
|
||||||
|
$body.html('');
|
||||||
|
window.view.$el.prependTo($body);
|
@ -0,0 +1,26 @@
|
|||||||
|
/* global i18n: false */
|
||||||
|
/* global Whisper: false */
|
||||||
|
/* global $: false */
|
||||||
|
|
||||||
|
/* eslint-disable no-new */
|
||||||
|
|
||||||
|
// eslint-disable-next-line func-names
|
||||||
|
(function() {
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
window.Whisper = window.Whisper || {};
|
||||||
|
|
||||||
|
Whisper.LauncherView = Whisper.View.extend({
|
||||||
|
className: 'launcher',
|
||||||
|
templateName: 'launcher',
|
||||||
|
initialize() {
|
||||||
|
this.render();
|
||||||
|
},
|
||||||
|
render_attributes() {
|
||||||
|
return {
|
||||||
|
title: 'WOOOWEEE',
|
||||||
|
};
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
})();
|
@ -0,0 +1,43 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Security-Policy"
|
||||||
|
content="default-src 'none';
|
||||||
|
child-src 'self';
|
||||||
|
connect-src 'self' https: wss:;
|
||||||
|
font-src 'self';
|
||||||
|
form-action 'self';
|
||||||
|
frame-src 'none';
|
||||||
|
img-src 'self' blob: data:;
|
||||||
|
media-src 'self' blob:;
|
||||||
|
object-src 'none';
|
||||||
|
script-src 'self';
|
||||||
|
style-src 'self' 'unsafe-inline';"
|
||||||
|
>
|
||||||
|
<link href="stylesheets/manifest.css" rel="stylesheet" type="text/css" />
|
||||||
|
<style>
|
||||||
|
</style>
|
||||||
|
<script type='text/x-tmpl-mustache' id='launcher'>
|
||||||
|
<div class='content'>
|
||||||
|
<h4>{{ title }}</h4>
|
||||||
|
</div>
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<script type='text/javascript' src='js/components.js'></script>
|
||||||
|
<script type='text/javascript' src='js/views/whisper_view.js'></script>
|
||||||
|
<script type='text/javascript' src='js/views/launcher_view.js'></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class='app-loading-screen'>
|
||||||
|
<div class='content'>
|
||||||
|
<img src='images/loki/loki_icon_128.png'>
|
||||||
|
<div class='container'>
|
||||||
|
<span class='dot'></span>
|
||||||
|
<span class='dot'></span>
|
||||||
|
<span class='dot'></span>
|
||||||
|
</div>
|
||||||
|
<div class='message'></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<script type='text/javascript' src='js/launcher_start.js'></script>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -0,0 +1,31 @@
|
|||||||
|
/* global window */
|
||||||
|
|
||||||
|
const { ipcRenderer } = require('electron');
|
||||||
|
const url = require('url');
|
||||||
|
const i18n = require('./js/modules/i18n');
|
||||||
|
|
||||||
|
const userConfig = require('./app/user_config');
|
||||||
|
|
||||||
|
const config = url.parse(window.location.toString(), true).query;
|
||||||
|
const { locale } = config;
|
||||||
|
const localeMessages = ipcRenderer.sendSync('locale-data');
|
||||||
|
|
||||||
|
window.theme = config.theme;
|
||||||
|
window.i18n = i18n.setup(locale, localeMessages);
|
||||||
|
|
||||||
|
// So far we're only using this for Signal.Types
|
||||||
|
const Signal = require('./js/modules/signal');
|
||||||
|
|
||||||
|
window.Signal = Signal.setup({
|
||||||
|
Attachments: null,
|
||||||
|
userDataPath: null,
|
||||||
|
getRegionCode: () => null,
|
||||||
|
});
|
||||||
|
|
||||||
|
window.userConfig = userConfig;
|
||||||
|
window.getEnvironment = () => config.environment;
|
||||||
|
window.getVersion = () => config.version;
|
||||||
|
window.getAppInstance = () => config.appInstance;
|
||||||
|
|
||||||
|
window.onLogin = (passPhrase) => ipcRenderer.send('launcher_login', passPhrase);
|
||||||
|
require('./js/logging');
|
Loading…
Reference in New Issue