Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

404 page #12

Closed
wants to merge 8 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions src/layouts/components/KunafaLogo.vue
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This change is from pr #8 and still pending merge. If you could remove this change from this pr for separation of concerns.

Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<template>
<!-- Small logo icon , TODO: replace with logo (dynamically) -->
<Icon icon="emojione:up-arrow" class="" />
<!-- System name -->
<span class="text-xl font-semibold text-primary mx-2">Kunafa Vue</span>
</template>

<script>
export default {
name: 'KunafaLogo',
props: {
height: {
type: Number,
default: 24,
},
start: {
type: String,
default: 'primary',
},
end: {
type: String,
default: 'secondary',
},
},
}

</script>
9 changes: 3 additions & 6 deletions src/layouts/components/Sidebar.vue
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This change is from pr #8 and still pending merge. If you could remove this change from this pr for separation of concerns.

Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,7 @@
</button>
<!-- Logo and system name -->
<router-link class="flex items-center" to="/">
<!-- Small logo icon , TODO: replace with logo (dynamically) -->
<Icon icon="emojione:up-arrow" class="" />
<!-- System name -->
<span class="text-xl font-semibold text-primary mx-2"
>Kunafa Vue</span
>
<KunafaLogo />
</router-link>
</div>

Expand Down Expand Up @@ -185,12 +180,14 @@ import { useRouter } from "vue-router"; // Import useRouter
import SidebarLinkGroup from "../../layouts/components/SidebarLinkGroup.vue";
import { useI18n } from "vue-i18n";
import SelectedLanguage from "@/services/LanguageService.js";
import KunafaLogo from "./KunafaLogo.vue";

export default {
name: "Sidebar",
props: ["sidebarOpen"],
components: {
SidebarLinkGroup,
KunafaLogo,
},
setup(props, { emit }) {
const routes = ref([]);
Expand Down
11 changes: 11 additions & 0 deletions src/libs/i18n/locales/ar.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,5 +63,16 @@

"breadcrumbs": {
"home": "الرئيسية"
},

"pages": {
"errors" : {
"404": {
"title": "الصفحة غير موجودة",
"message": "عذراً، الصفحة التي تبحث عنها غير موجودة.",
"go_to_home_btn": "الذهاب للصفحة الرئيسية",
"open_issue_github_btn": "افتح مشكلة في Github"
}
}
}
}
11 changes: 11 additions & 0 deletions src/libs/i18n/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,5 +62,16 @@
},
"breadcrumbs": {
"home": "Home"
},

"pages": {
"errors" : {
"404": {
"title": "Page not found",
"message": "The page you are looking for might have been removed had its name changed or is temporarily unavailable.",
"go_to_home_btn": "Go to Home",
"open_issue_github_btn": "Open Issue in Github"
}
}
}
}
11 changes: 10 additions & 1 deletion src/router/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,16 @@ const router = createRouter({
}
},
]
}
},
{
name: '404',
path: '/404',
component: () => import('@/views/pages/errors/404.vue'),
meta: {
label: '404',
icon: 'bx:bx-error'
}
},
]
})

Expand Down
39 changes: 39 additions & 0 deletions src/views/pages/errors/404.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
<script setup>
</script>

<template>
<div class="flex flex-col items-center gap-6 px-4 my-8">
<div class="fof">
<h1 class="va-h1 text-center sm:text-5xl text-4xl">{{$t('pages.errors.404.title')}}</h1>
</div>

<p class="text-center">{{$t('pages.errors.404.message')}}</p>

<div class="flex flex-col sm:flex-row gap-4">
<RouterLink to="/" class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded">{{$t('pages.errors.404.go_to_home_btn')}}</RouterLink>
<a href="https://github.com/kunafaPlus/kunafa-dashboard-vue/issues/new/choose" preset="secondary" target="_blank"
class="bg-gray-300 hover:bg-gray-400 text-gray-800 font-bold py-2 px-4 rounded inline-flex items-center">
<Icon class="!text-gray-800" icon="entypo-social:github" width="20" height="20" />
<span class="mx-2">{{ $t('pages.errors.404.open_issue_github_btn') }}</span>
</a>
</div>
</div>
</template>
<style scoped>
.fof{
display: table-cell;
vertical-align: middle;
}

.fof h1{
font-size: 50px;
display: inline-block;
padding-right: 12px;
animation: type .5s alternate infinite;
}

@keyframes type{
from{box-shadow: inset -3px 0px 0px #888;}
to{box-shadow: inset -3px 0px 0px transparent;}
}
</style>