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

SubmissionType and ExamInformation Comp converted to TS

parent f39d2a2a
No related branches found
No related tags found
1 merge request!119Typesafe store
...@@ -38,7 +38,7 @@ export default { ...@@ -38,7 +38,7 @@ export default {
}, },
expand: { expand: {
type: Boolean, type: Boolean,
default: false default: true
} }
}, },
data () { data () {
......
...@@ -2,11 +2,10 @@ ...@@ -2,11 +2,10 @@
<v-layout column> <v-layout column>
<v-card> <v-card>
<v-card-title class="title mb-2">{{ name }} - Full score: {{ fullScore }}</v-card-title> <v-card-title class="title mb-2">{{ name }} - Full score: {{ fullScore }}</v-card-title>
<v-expansion-panel expand> <v-expansion-panel expand v-model="expanded">
<v-expansion-panel-content <v-expansion-panel-content
v-for="(item, i) in typeItems" v-for="(item, i) in typeItems"
:key="i" :key="i"
:value="expandedByDefault[item.title]"
> >
<div slot="header"><b>{{ item.title }}</b></div> <div slot="header"><b>{{ item.title }}</b></div>
<v-card <v-card
...@@ -31,72 +30,74 @@ ...@@ -31,72 +30,74 @@
</v-layout> </v-layout>
</template> </template>
<script> <script lang="ts">
import {Vue, Component, Prop} from 'vue-property-decorator'
import {highlight} from 'highlight.js' import {highlight} from 'highlight.js'
import {UI} from '@/store/modules/ui' import {UI} from '@/store/modules/ui'
export default { @Component
name: 'submission-type', export default class SubmissionType extends Vue {
props: { @Prop({
name: { type: String,
type: String, required: true
required: true }) name!: string
}, @Prop({
description: { type: String,
type: String, required: true
required: true }) description!: string
}, @Prop({
solution: { type: String,
type: String, required: true
required: true }) solution!: string
}, @Prop({
fullScore: { type: Number,
type: Number, required: true
required: true }) fullScore!: number
}, @Prop({
programmingLanguage: { type: String,
type: String, default: 'c'
default: 'c' }) programmingLanguage!: string
}, @Prop({
reverse: { type: Boolean,
type: Boolean, default: false
default: false }) reverse!: boolean
}, @Prop({
expandedByDefault: { type: Object,
type: Object, default: function () {
default: function () { return {
return { Description: true,
Description: true, Solution: true
Solution: true
}
} }
} }
}, }) expandedByDefault!: {Description: boolean, Solution: boolean}
computed: {
typeItems () { expanded = this.reverse
let items = [ ? [this.expandedByDefault.Description, this.expandedByDefault.Solution]
{ : [this.expandedByDefault.Solution, this.expandedByDefault.Description]
title: 'Description',
text: this.description get typeItems () {
}, let items = [
{ {
title: 'Solution', title: 'Description',
text: this.solution text: this.description
} },
] {
if (this.reverse) { title: 'Solution',
return items.reverse() text: this.solution
} else {
return items
} }
}, ]
highlightedSolution () { if (this.reverse) {
return highlight(this.programmingLanguage, this.solution, true).value return items.reverse()
}, } else {
backgroundColor () { return items
return UI.state.darkMode ? 'grey' : '#F3F3F3'
} }
} }
get highlightedSolution () {
return highlight(this.programmingLanguage, this.solution, true).value
}
get backgroundColor () {
return UI.state.darkMode ? 'grey' : '#F3F3F3'
}
} }
</script> </script>
......
...@@ -20,9 +20,12 @@ ...@@ -20,9 +20,12 @@
</table> </table>
</template> </template>
<script> <script lang="ts">
export default { import {Vue, Component, Prop} from 'vue-property-decorator'
name: 'exam-information', import { Exam } from '@/models';
props: ['exam']
@Component
export default class ExamInformation extends Vue {
@Prop(Object) exam!: Exam
} }
</script> </script>
...@@ -109,6 +109,7 @@ import {mapActions, mapState} from 'vuex' ...@@ -109,6 +109,7 @@ import {mapActions, mapState} from 'vuex'
import StudentListMenu from '@/components/student_list/StudentListMenu' import StudentListMenu from '@/components/student_list/StudentListMenu'
import StudentListReverseMapper from '@/components/student_list/StudentListReverseMapper' import StudentListReverseMapper from '@/components/student_list/StudentListReverseMapper'
import { changeActiveForUser } from '@/api' import { changeActiveForUser } from '@/api'
import { getters } from '@/store/getters';
export default { export default {
components: { components: {
...@@ -137,7 +138,7 @@ export default { ...@@ -137,7 +138,7 @@ export default {
'students' 'students'
]), ]),
submissionTypeHeaders () { submissionTypeHeaders () {
const subTypes = Object.values(this.$store.state.submissionTypes) const subTypes = Object.values(getters.state.submissionTypes)
return subTypes.map(type => { return subTypes.map(type => {
return { return {
pk: type.pk, pk: type.pk,
......
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