mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-21 17:26:29 -05:00
Rename var
Signed-off-by: Tilman Vatteroth <tilman.vatteroth@tu-dortmund.de>
This commit is contained in:
parent
7ef1b086bd
commit
afb2ea85b1
1 changed files with 4 additions and 4 deletions
|
@ -10,7 +10,7 @@ export const ApplicationLoader: React.FC = ({ children }) => {
|
|||
const [doneTasks, setDoneTasks] = useState<number>(0)
|
||||
const [initTasks, setInitTasks] = useState<InitTask[]>([])
|
||||
const { pathname } = useLocation()
|
||||
const [applicationLoading, setApplicationLoading] = useState<boolean>(false)
|
||||
const [tasksAlreadyTriggered, setTasksAlreadyTriggered] = useState<boolean>(false)
|
||||
|
||||
const runTask = async (task: Promise<void>): Promise<void> => {
|
||||
await task
|
||||
|
@ -20,14 +20,14 @@ export const ApplicationLoader: React.FC = ({ children }) => {
|
|||
}
|
||||
|
||||
useEffect(() => {
|
||||
if (applicationLoading) {
|
||||
if (tasksAlreadyTriggered) {
|
||||
return
|
||||
}
|
||||
setApplicationLoading(true)
|
||||
setTasksAlreadyTriggered(true)
|
||||
const baseUrl:string = window.location.pathname.replace(pathname, '') + '/'
|
||||
console.debug('Base URL is', baseUrl)
|
||||
setInitTasks(setUp(baseUrl))
|
||||
}, [applicationLoading, pathname])
|
||||
}, [tasksAlreadyTriggered, pathname])
|
||||
|
||||
useEffect(() => {
|
||||
for (const task of initTasks) {
|
||||
|
|
Loading…
Reference in a new issue