2015-06-23 11:41:25 -04:00
|
|
|
/*
|
2016-01-06 23:17:56 -05:00
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
2015-06-23 11:41:25 -04:00
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
2016-02-10 09:54:49 -05:00
|
|
|
// for ES6 stuff like startsWith() that Safari doesn't handle
|
|
|
|
// and babel doesn't do by default
|
|
|
|
require('babel-polyfill');
|
|
|
|
|
2015-12-01 13:05:43 -05:00
|
|
|
// CSS requires: just putting them here for now as CSS is going to be
|
|
|
|
// refactored soon anyway
|
|
|
|
require('../../vector/components.css');
|
|
|
|
require('gemini-scrollbar/gemini-scrollbar.css');
|
|
|
|
require('gfm.css/gfm.css');
|
|
|
|
require('highlight.js/styles/github.css');
|
|
|
|
|
2015-10-28 13:39:50 -04:00
|
|
|
var RunModernizrTests = require("./modernizr"); // this side-effects a global
|
2015-06-09 12:40:42 -04:00
|
|
|
var React = require("react");
|
2015-11-09 18:13:46 -05:00
|
|
|
var ReactDOM = require("react-dom");
|
2015-09-22 13:49:04 -04:00
|
|
|
var sdk = require("matrix-react-sdk");
|
2015-11-30 12:31:32 -05:00
|
|
|
sdk.loadSkin(require('../component-index'));
|
2015-11-30 13:10:09 -05:00
|
|
|
var VectorConferenceHandler = require('../VectorConferenceHandler');
|
|
|
|
var configJson = require("../../config.json");
|
2016-02-03 11:16:14 -05:00
|
|
|
var UpdateChecker = require("./updater");
|
2015-06-09 12:40:42 -04:00
|
|
|
|
2015-10-12 05:11:02 -04:00
|
|
|
var qs = require("querystring");
|
|
|
|
|
2015-08-06 09:58:52 -04:00
|
|
|
var lastLocationHashSet = null;
|
|
|
|
|
2015-11-30 13:10:09 -05:00
|
|
|
var CallHandler = require("matrix-react-sdk/lib/CallHandler");
|
|
|
|
CallHandler.setConferenceHandler(VectorConferenceHandler);
|
|
|
|
|
2015-10-28 13:39:50 -04:00
|
|
|
function checkBrowserFeatures(featureList) {
|
|
|
|
if (!window.Modernizr) {
|
|
|
|
console.error("Cannot check features - Modernizr global is missing.");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
var featureComplete = true;
|
|
|
|
for (var i = 0; i < featureList.length; i++) {
|
|
|
|
if (window.Modernizr[featureList[i]] === undefined) {
|
|
|
|
console.error(
|
|
|
|
"Looked for feature '%s' but Modernizr has no results for this. " +
|
|
|
|
"Has it been configured correctly?", featureList[i]
|
|
|
|
);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (window.Modernizr[featureList[i]] === false) {
|
|
|
|
console.error("Browser missing feature: '%s'", featureList[i]);
|
|
|
|
// toggle flag rather than return early so we log all missing features
|
|
|
|
// rather than just the first.
|
|
|
|
featureComplete = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return featureComplete;
|
|
|
|
}
|
|
|
|
|
|
|
|
var validBrowser = checkBrowserFeatures([
|
2015-10-29 11:56:03 -04:00
|
|
|
"displaytable", "flexbox", "es5object", "es5function", "localstorage",
|
|
|
|
"objectfit"
|
2015-10-28 13:39:50 -04:00
|
|
|
]);
|
2015-10-08 17:42:09 -04:00
|
|
|
|
2015-10-12 05:11:02 -04:00
|
|
|
// We want to support some name / value pairs in the fragment
|
2015-10-12 12:41:56 -04:00
|
|
|
// so we're re-using query string like format
|
2015-10-12 05:11:02 -04:00
|
|
|
function parseQsFromFragment(location) {
|
2015-10-08 17:42:09 -04:00
|
|
|
var hashparts = location.hash.split('?');
|
2015-10-12 05:11:02 -04:00
|
|
|
if (hashparts.length > 1) {
|
|
|
|
return qs.parse(hashparts[1]);
|
2015-10-08 17:42:09 -04:00
|
|
|
}
|
2015-10-12 05:11:02 -04:00
|
|
|
return {};
|
2015-10-08 17:42:09 -04:00
|
|
|
}
|
|
|
|
|
2015-11-06 06:22:59 -05:00
|
|
|
function parseQs(location) {
|
|
|
|
return qs.parse(location.search.substring(1));
|
|
|
|
}
|
|
|
|
|
2015-07-15 15:33:12 -04:00
|
|
|
// Here, we do some crude URL analysis to allow
|
|
|
|
// deep-linking. We only support registration
|
|
|
|
// deep-links in this example.
|
2015-07-15 14:25:36 -04:00
|
|
|
function routeUrl(location) {
|
2015-11-06 06:22:59 -05:00
|
|
|
var params = parseQs(location);
|
|
|
|
var loginToken = params.loginToken;
|
|
|
|
if (loginToken) {
|
|
|
|
window.matrixChat.showScreen('token_login', parseQs(location));
|
|
|
|
}
|
|
|
|
else if (location.hash.indexOf('#/register') == 0) {
|
2015-10-12 05:11:02 -04:00
|
|
|
window.matrixChat.showScreen('register', parseQsFromFragment(location));
|
2015-07-20 15:20:17 -04:00
|
|
|
} else {
|
2016-02-10 08:45:24 -05:00
|
|
|
var hashparts = location.hash.split('?');
|
|
|
|
window.matrixChat.showScreen(hashparts[0].substring(2));
|
2015-07-15 14:25:36 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-20 15:20:17 -04:00
|
|
|
function onHashChange(ev) {
|
2015-08-06 09:58:52 -04:00
|
|
|
if (decodeURIComponent(window.location.hash) == lastLocationHashSet) {
|
|
|
|
// we just set this: no need to route it!
|
|
|
|
return;
|
|
|
|
}
|
2015-07-20 15:20:17 -04:00
|
|
|
routeUrl(window.location);
|
|
|
|
}
|
|
|
|
|
2016-02-03 11:50:05 -05:00
|
|
|
function onVersion(current, latest) {
|
|
|
|
window.matrixChat.onVersion(current, latest);
|
2016-02-03 11:16:14 -05:00
|
|
|
}
|
|
|
|
|
2015-07-15 15:33:12 -04:00
|
|
|
var loaded = false;
|
2015-10-05 10:32:34 -04:00
|
|
|
var lastLoadedScreen = null;
|
2015-07-15 15:33:12 -04:00
|
|
|
|
|
|
|
// This will be called whenever the SDK changes screens,
|
|
|
|
// so a web page can update the URL bar appropriately.
|
2015-11-10 20:31:37 -05:00
|
|
|
var onNewScreen = function(screen) {
|
2015-10-05 10:32:34 -04:00
|
|
|
if (!loaded) {
|
|
|
|
lastLoadedScreen = screen;
|
|
|
|
} else {
|
2015-11-10 20:31:37 -05:00
|
|
|
var hash = '#/' + screen;
|
|
|
|
lastLocationHashSet = hash;
|
|
|
|
window.location.hash = hash;
|
2016-01-11 20:23:39 -05:00
|
|
|
if (ga) ga('send', 'pageview', window.location.pathname + window.location.search + window.location.hash);
|
2015-10-05 10:32:34 -04:00
|
|
|
}
|
2015-07-15 14:25:36 -04:00
|
|
|
}
|
|
|
|
|
2015-07-15 15:33:12 -04:00
|
|
|
// We use this to work out what URL the SDK should
|
|
|
|
// pass through when registering to allow the user to
|
|
|
|
// click back to the client having registered.
|
|
|
|
// It's up to us to recognise if we're loaded with
|
|
|
|
// this URL and tell MatrixClient to resume registration.
|
|
|
|
var makeRegistrationUrl = function() {
|
|
|
|
return window.location.protocol + '//' +
|
|
|
|
window.location.host +
|
|
|
|
window.location.pathname +
|
|
|
|
'#/register';
|
|
|
|
}
|
|
|
|
|
2015-07-31 10:50:47 -04:00
|
|
|
window.addEventListener('hashchange', onHashChange);
|
|
|
|
window.onload = function() {
|
2015-10-28 13:39:50 -04:00
|
|
|
if (!validBrowser) {
|
|
|
|
return;
|
|
|
|
}
|
2016-02-03 11:50:05 -05:00
|
|
|
UpdateChecker.setVersionListener(onVersion);
|
2016-02-03 11:16:14 -05:00
|
|
|
UpdateChecker.run();
|
2015-07-31 10:50:47 -04:00
|
|
|
routeUrl(window.location);
|
|
|
|
loaded = true;
|
2015-10-05 10:32:34 -04:00
|
|
|
if (lastLoadedScreen) {
|
|
|
|
onNewScreen(lastLoadedScreen);
|
|
|
|
lastLoadedScreen = null;
|
|
|
|
}
|
2015-07-31 10:50:47 -04:00
|
|
|
}
|
|
|
|
|
2015-10-28 13:39:50 -04:00
|
|
|
function loadApp() {
|
|
|
|
if (validBrowser) {
|
2015-11-30 13:10:09 -05:00
|
|
|
var MatrixChat = sdk.getComponent('structures.MatrixChat');
|
2015-11-09 18:13:46 -05:00
|
|
|
window.matrixChat = ReactDOM.render(
|
2015-11-30 13:10:09 -05:00
|
|
|
<MatrixChat
|
|
|
|
onNewScreen={onNewScreen}
|
|
|
|
registrationUrl={makeRegistrationUrl()}
|
|
|
|
ConferenceHandler={VectorConferenceHandler}
|
2015-12-17 10:01:07 -05:00
|
|
|
config={configJson}
|
2016-01-07 09:43:12 -05:00
|
|
|
startingQueryParams={parseQsFromFragment(window.location)}
|
|
|
|
enableGuest={true} />,
|
2015-10-28 13:39:50 -04:00
|
|
|
document.getElementById('matrixchat')
|
|
|
|
);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
console.error("Browser is missing required features.");
|
|
|
|
// take to a different landing page to AWOOOOOGA at the user
|
2015-12-01 10:45:38 -05:00
|
|
|
var CompatibilityPage = sdk.getComponent("structures.CompatibilityPage");
|
2015-11-09 18:13:46 -05:00
|
|
|
window.matrixChat = ReactDOM.render(
|
2015-10-28 13:39:50 -04:00
|
|
|
<CompatibilityPage onAccept={function() {
|
|
|
|
validBrowser = true;
|
|
|
|
console.log("User accepts the compatibility risks.");
|
|
|
|
loadApp();
|
|
|
|
window.onload(); // still do the same code paths for compatible clients
|
|
|
|
}} />,
|
|
|
|
document.getElementById('matrixchat')
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
loadApp();
|