KSP url change

This commit is contained in:
Standa Lukeš 2020-10-05 19:50:12 +00:00
parent 812e2ca6be
commit a23438f976

View file

@ -56,16 +56,15 @@ function getLocation(id: string, solution: boolean): TaskLocation | null {
const m = /^(\d+)-(Z?)(\d)-(\d)$/.exec(id)
if (!m) return null
const [_, rocnik, z, serie, uloha] = m
const urlX = solution ? "reseni" : "zadani"
if (z == 'Z') {
const urlX = solution ? "reseni" : "zadani"
return {
url: `z/ulohy/${rocnik}/${urlX}${serie}.html`,
url: `/z/ulohy/${rocnik}/${urlX}${serie}.html`,
startElement: `task-${id}`
}
} else {
const urlX = solution ? "solution" : "tasks"
return {
url: `tasks/${rocnik}/${urlX}${serie}.html`,
url: `/ulohy/${rocnik}/${urlX}${serie}.html`,
startElement: `task-${id}`
}
}