budibase/packages/builder/src/App.svelte

30 lines
744 B
Svelte
Raw Normal View History

2019-07-13 11:35:57 +02:00
<script>
import Modal from "svelte-simple-modal"
2020-02-03 10:50:30 +01:00
import { onMount } from "svelte"
2020-04-02 15:16:46 +02:00
import { Router } from "@sveltech/routify"
import { routes } from "@sveltech/routify/tmp/routes"
import { store, initialise } from "builderStore"
import AppNotification, {
showAppNotification,
} from "components/common/AppNotification.svelte"
2020-02-03 10:50:30 +01:00
2020-03-30 22:14:41 +02:00
function showErrorBanner() {
showAppNotification({
status: "danger",
message:
"Whoops! Looks like we're having trouble. Please refresh the page.",
})
}
onMount(() => {
window.addEventListener("error", showErrorBanner)
window.addEventListener("unhandledrejection", showErrorBanner)
})
2019-07-13 11:35:57 +02:00
</script>
2020-04-02 15:16:46 +02:00
<AppNotification />
2019-09-30 06:20:21 +02:00
<Modal>
<Router {routes} />
</Modal>