mirror of
https://github.com/BoostIo/Boostnote
synced 2025-12-13 17:56:25 +00:00
51 lines
1.5 KiB
JavaScript
51 lines
1.5 KiB
JavaScript
import { Provider } from 'react-redux'
|
|
import Main from './Main'
|
|
import store from './store'
|
|
import React from 'react'
|
|
import ReactDOM from 'react-dom'
|
|
require('!!style!css!stylus?sourceMap!./global.styl')
|
|
import { Router, Route, IndexRoute, IndexRedirect, hashHistory } from 'react-router'
|
|
import { syncHistoryWithStore } from 'react-router-redux'
|
|
require('./lib/ipcClient')
|
|
const electron = require('electron')
|
|
const ipc = electron.ipcRenderer
|
|
|
|
ipc.send('check-update', 'check-update')
|
|
window.addEventListener('online', function () {
|
|
ipc.send('check-update', 'check-update')
|
|
})
|
|
|
|
document.addEventListener('drop', function (e) {
|
|
e.preventDefault()
|
|
e.stopPropagation()
|
|
})
|
|
document.addEventListener('dragover', function (e) {
|
|
e.preventDefault()
|
|
e.stopPropagation()
|
|
})
|
|
|
|
let el = document.getElementById('content')
|
|
const history = syncHistoryWithStore(hashHistory, store)
|
|
|
|
ReactDOM.render((
|
|
<Provider store={store}>
|
|
<Router history={history}>
|
|
<Route path='/' component={Main}>
|
|
<IndexRedirect to='/home'/>
|
|
<Route path='home'/>
|
|
<Route path='starred'/>
|
|
<Route path='storages'>
|
|
<IndexRedirect to='/home'/>
|
|
<Route path=':storageKey'>
|
|
<IndexRoute/>
|
|
<Route path='folders/:folderKey'/>
|
|
</Route>
|
|
</Route>
|
|
</Route>
|
|
</Router>
|
|
</Provider>
|
|
), el, function () {
|
|
let loadingCover = document.getElementById('loadingCover')
|
|
loadingCover.parentNode.removeChild(loadingCover)
|
|
})
|