Skip to content
Snippets Groups Projects
Commit 20075072 authored by robinwilliam.hundt's avatar robinwilliam.hundt
Browse files

Started typing js files

parent ff996d22
No related branches found
No related tags found
1 merge request!113Resolve "Frontend Refactor"
declare module 'v-clipboard';
\ No newline at end of file
......@@ -4,13 +4,13 @@ import router from './router/index'
import store from './store/store'
import Vuetify from 'vuetify'
import Notifications from 'vue-notification'
import Cliboard from 'v-clipboard'
import Clipboard from 'v-clipboard'
import 'vuetify/dist/vuetify.min.css'
import 'highlight.js/styles/atom-one-light.css'
Vue.use(Vuetify)
Vue.use(Cliboard)
Vue.use(Clipboard)
Vue.use(Notifications)
Vue.config.productionTip = false
......
import Vue from 'vue'
import Router from 'vue-router'
import Router, {RawLocation, Route, NavigationGuard} from 'vue-router'
import Login from '@/pages/Login.vue'
import StudentSubmissionPage from '@/pages/student/StudentSubmissionPage.vue'
import StudentOverviewPage from '@/pages/reviewer/StudentOverviewPage.vue'
......@@ -19,7 +19,9 @@ import store from '@/store/store'
Vue.use(Router)
function denyAccess (next, redirect) {
type rerouteFunc = (to?: RawLocation | false | ((vm: Vue) => any) | void) => void
function denyAccess (next: rerouteFunc, redirect: Route) {
next(redirect.path)
VueInstance.$notify({
title: 'Access denied',
......@@ -28,23 +30,23 @@ function denyAccess (next, redirect) {
})
}
function tutorOrReviewerOnly (to, from, next) {
let tutorOrReviewerOnly: NavigationGuard = function (to, from, next) {
if (store.getters.isTutorOrReviewer) {
next()
} else {
denyAccess(next, from.path)
denyAccess(next, from)
}
}
function reviewerOnly (to, from, next) {
let reviewerOnly: NavigationGuard = function (to, from, next) {
if (store.getters.isReviewer) {
next()
} else {
denyAccess(next, from.path)
denyAccess(next, from)
}
}
function studentOnly (to, from, next) {
let studentOnly: NavigationGuard = function (to, from, next) {
if (store.getters.isStudent) {
next()
} else {
......@@ -52,7 +54,7 @@ function studentOnly (to, from, next) {
}
}
function checkLoggedIn (to, from, next) {
let checkLoggedIn: NavigationGuard = function (to, from, next) {
if (store.getters.isLoggedIn) {
next()
} else {
......
const getters = {
corrected (state) {
return state.statistics.submission_type_progress.every(progress => {
return progress.percentage === 100
return progress.feedback_final === progress.submission_count
})
},
getSubmission: state => pk => {
......
......@@ -2,7 +2,7 @@
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"strict": false,
"strict": true,
"jsx": "preserve",
"importHelpers": true,
"moduleResolution": "node",
......@@ -10,11 +10,6 @@
"esModuleInterop": true,
"sourceMap": true,
"baseUrl": ".",
"types": [
"node",
"mocha",
"chai"
],
"paths": {
"@/*": [
"src/*"
......@@ -28,6 +23,7 @@
]
},
"include": [
"@types/",
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment