Skip to content
Snippets Groups Projects
Commit 97786d7a authored by Xiao Gui's avatar Xiao Gui
Browse files

chore: fix remove / from id in routes

parent 7031a090
No related branches found
No related tags found
No related merge requests found
......@@ -16,6 +16,7 @@ export const PARSE_ERROR = {
PARCELLATION_NOT_UPDATED: 'PARCELLATION_NOT_UPDATED',
}
const encodeId = (id: string) => id.replace(/\//g, '_')
const endcodePath = (key: string, val: string) => `${key}:${encodeURIComponent(val)}`
const decodePath = (path: string) => {
const re = /^(.*?):(.+)$/.exec(path)
......@@ -348,11 +349,11 @@ export const cvtStateToHashedRoutes = state => {
routes = {
// for atlas
a: selectedAtlas && selectedAtlas['@id'],
a: selectedAtlas && encodeId(selectedAtlas['@id']),
// for template
t: selectedTemplate && (selectedTemplate['@id'] || selectedTemplate['fullId']),
t: selectedTemplate && encodeId(selectedTemplate['@id'] || selectedTemplate['fullId']),
// for parcellation
p: selectedParcellation && (selectedParcellation['@id'] || selectedParcellation['fullId']),
p: selectedParcellation && encodeId(selectedParcellation['@id'] || selectedParcellation['fullId']),
// for regions
r: Object.keys(cRegionObj).length > 0 && JSON.stringify(cRegionObj),
// nav
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment