mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-25 11:16:31 -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 [doneTasks, setDoneTasks] = useState<number>(0)
|
||||||
const [initTasks, setInitTasks] = useState<InitTask[]>([])
|
const [initTasks, setInitTasks] = useState<InitTask[]>([])
|
||||||
const { pathname } = useLocation()
|
const { pathname } = useLocation()
|
||||||
const [applicationLoading, setApplicationLoading] = useState<boolean>(false)
|
const [tasksAlreadyTriggered, setTasksAlreadyTriggered] = useState<boolean>(false)
|
||||||
|
|
||||||
const runTask = async (task: Promise<void>): Promise<void> => {
|
const runTask = async (task: Promise<void>): Promise<void> => {
|
||||||
await task
|
await task
|
||||||
|
@ -20,14 +20,14 @@ export const ApplicationLoader: React.FC = ({ children }) => {
|
||||||
}
|
}
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (applicationLoading) {
|
if (tasksAlreadyTriggered) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
setApplicationLoading(true)
|
setTasksAlreadyTriggered(true)
|
||||||
const baseUrl:string = window.location.pathname.replace(pathname, '') + '/'
|
const baseUrl:string = window.location.pathname.replace(pathname, '') + '/'
|
||||||
console.debug('Base URL is', baseUrl)
|
console.debug('Base URL is', baseUrl)
|
||||||
setInitTasks(setUp(baseUrl))
|
setInitTasks(setUp(baseUrl))
|
||||||
}, [applicationLoading, pathname])
|
}, [tasksAlreadyTriggered, pathname])
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
for (const task of initTasks) {
|
for (const task of initTasks) {
|
||||||
|
|
Loading…
Reference in a new issue