refactor: monorepo+pnpm (removed husky)
This commit is contained in:
62
packages/hoppscotch-app/layouts/error.vue
Normal file
62
packages/hoppscotch-app/layouts/error.vue
Normal file
@@ -0,0 +1,62 @@
|
||||
<template>
|
||||
<div class="page page-error">
|
||||
<h1 class="mb-4 text-4xl heading">{{ statusCode }}</h1>
|
||||
<h3 class="select-text">{{ message }}</h3>
|
||||
<p class="mt-4">
|
||||
<ButtonSecondary to="/" svg="home" filled :label="$t('app.home')" />
|
||||
<ButtonSecondary
|
||||
svg="refresh-cw"
|
||||
:label="$t('app.reload')"
|
||||
filled
|
||||
@click.native="reloadApplication"
|
||||
/>
|
||||
</p>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { defineComponent } from "@nuxtjs/composition-api"
|
||||
import { initializeFirebase } from "~/helpers/fb"
|
||||
|
||||
export default defineComponent({
|
||||
props: {
|
||||
error: {
|
||||
type: Object,
|
||||
default: null,
|
||||
},
|
||||
},
|
||||
|
||||
computed: {
|
||||
statusCode() {
|
||||
return (this.error && this.error.statusCode) || 500
|
||||
},
|
||||
message() {
|
||||
return this.error.message || this.$t("error.something_went_wrong")
|
||||
},
|
||||
},
|
||||
|
||||
beforeMount() {
|
||||
initializeFirebase()
|
||||
},
|
||||
|
||||
methods: {
|
||||
reloadApplication() {
|
||||
window.location.reload()
|
||||
},
|
||||
},
|
||||
})
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
.page-error {
|
||||
@apply flex flex-col;
|
||||
@apply items-center;
|
||||
@apply justify-center;
|
||||
@apply text-center;
|
||||
}
|
||||
|
||||
.error_banner {
|
||||
@apply w-24;
|
||||
@apply mb-12;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user