2015-05-13 16:26:12 +02:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
import React from 'react';
|
2015-05-15 15:38:25 +02:00
|
|
|
import Router from 'react-router';
|
2015-06-01 14:22:04 +02:00
|
|
|
import promise from 'es6-promise';
|
|
|
|
|
|
|
|
promise.polyfill();
|
2015-06-16 13:48:48 +02:00
|
|
|
import fetch from 'isomorphic-fetch';
|
|
|
|
//require('isomorphic-fetch');
|
2015-05-15 15:38:25 +02:00
|
|
|
|
2015-06-01 14:22:04 +02:00
|
|
|
import ApiUrls from './constants/api_urls';
|
2015-05-18 13:43:42 +02:00
|
|
|
import routes from './routes';
|
2015-06-16 13:48:48 +02:00
|
|
|
import requests from './utils/requests';
|
2015-06-01 14:22:04 +02:00
|
|
|
|
2015-06-10 17:28:36 +02:00
|
|
|
let headers = {
|
|
|
|
'Accept': 'application/json',
|
|
|
|
'Content-Type': 'application/json'
|
|
|
|
};
|
|
|
|
|
2015-06-16 13:48:48 +02:00
|
|
|
requests.defaults({
|
2015-06-01 14:22:04 +02:00
|
|
|
urlMap: ApiUrls,
|
|
|
|
http: {
|
2015-06-10 17:28:36 +02:00
|
|
|
headers: headers,
|
2015-06-15 11:55:50 +02:00
|
|
|
credentials: 'include'
|
2015-06-01 14:22:04 +02:00
|
|
|
},
|
|
|
|
fatalErrorHandler: (err) => {
|
|
|
|
console.log(err);
|
|
|
|
//alert('Something went wrong, please reload the page');
|
|
|
|
}
|
|
|
|
});
|
2015-05-20 11:23:50 +02:00
|
|
|
|
2015-06-08 15:24:58 +02:00
|
|
|
Router.run(routes, Router.HistoryLocation, (AscribeApp) => {
|
2015-05-21 17:54:27 +02:00
|
|
|
React.render(
|
|
|
|
<AscribeApp />,
|
|
|
|
document.getElementById('main')
|
|
|
|
);
|
2015-05-15 15:38:25 +02:00
|
|
|
});
|