Skip to content
Snippets Groups Projects
Commit b2823227 authored by piotr.kupczyk@id.ethz.ch's avatar piotr.kupczyk@id.ethz.ch
Browse files

SSDM-13270 : Admin UI - update libraries - fix history (no basename...

SSDM-13270 : Admin UI - update libraries - fix history (no basename configuration property in v5 anymore)
parent a9102dbf
No related branches found
No related tags found
1 merge request!40SSDM-13578 : 2PT : Database and V3 Implementation - include the new AFS "free"...
function getApplicationPath() {
return window.location.pathname.substr(
0,
window.location.pathname.lastIndexOf('/') + 1
)
}
export default {
getApplicationPath
}
import _ from 'lodash' import _ from 'lodash'
import React from 'react' import React from 'react'
import { createBrowserHistory } from 'history' import { createHashHistory } from 'history'
import openbis from '@src/js/services/openbis.js' import openbis from '@src/js/services/openbis.js'
import objectType from '@src/js/common/consts/objectType.js' import objectType from '@src/js/common/consts/objectType.js'
import objectOperation from '@src/js/common/consts/objectOperation.js' import objectOperation from '@src/js/common/consts/objectOperation.js'
import routes from '@src/js/common/consts/routes.js' import routes from '@src/js/common/consts/routes.js'
import users from '@src/js/common/consts/users.js' import users from '@src/js/common/consts/users.js'
import cookie from '@src/js/common/cookie.js' import cookie from '@src/js/common/cookie.js'
import url from '@src/js/common/url.js'
import ids from '@src/js/common/consts/ids.js' import ids from '@src/js/common/consts/ids.js'
const AppContext = React.createContext() const AppContext = React.createContext()
...@@ -16,12 +15,10 @@ export class AppController { ...@@ -16,12 +15,10 @@ export class AppController {
init(context) { init(context) {
context.initState(this.initialState()) context.initState(this.initialState())
const history = createBrowserHistory({ const history = createHashHistory()
basename: url.getApplicationPath() + '#'
})
history.listen(location => { history.listen(location => {
const route = routes.parse(location.pathname) const route = routes.parse(location.location.pathname)
this.routeChanged(route.path) this.routeChanged(route.path)
}) })
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment