1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
<template>
<div id="action-bar">
<FileUpload
:accept="'text/plain'"
:multiple="true"
@fileChanged="handlePtChange">Upload PT Schedule</FileUpload>
<FileUpload
:accept="'application/json'"
@fileChanged="handleLabChange">Import Lab Schedule</FileUpload>
<UIButton @click="save">Export</UIButton>
</div>
</template>
<script lang="ts">
import { defineComponent } from 'vue';
import FileUpload from '@/components/FileUpload.vue';
import { parseLabFile, parsePtSchedule } from '@/features/parser';
import UIButton from '@/components/UIButton.vue';
import PeerTeacher from '@/models/PeerTeacher';
export default defineComponent({
name: 'ActionBar',
components: {
FileUpload,
UIButton,
},
methods: {
async handleLabChange(files: File[]) {
const data = await parseLabFile(files[0]);
this.$store.commit('importLabs', data);
},
async handlePtChange(files: File[]) {
const promises: Promise<PeerTeacher>[] = [];
files.forEach((file) => {
promises.push(parsePtSchedule(file));
});
const result = await Promise.all(promises);
this.$store.commit('addPeerTeachers', result);
},
save() {
const database = {
labs: Object.fromEntries(this.$store.state.labs),
peerTeachers: Object.fromEntries(this.$store.state.peerTeachers),
};
const jsonObj = JSON.stringify(database, (_, value) => {
if (typeof value === 'object' && value instanceof Set) {
return [...value];
}
return value;
});
const blob = new Blob([jsonObj], { type: 'text/json' });
const anchor = document.createElement('a');
const url = window.URL.createObjectURL(blob);
anchor.href = url;
anchor.download = 'pt-db.json';
anchor.style.display = 'none';
document.body.appendChild(anchor);
anchor.click();
document.body.removeChild(anchor);
window.URL.revokeObjectURL(url);
},
},
});
</script>
<style>
#action-bar {
max-width: 100vw;
overflow-x: auto;
white-space: nowrap;
}
#action-bar > * {
margin-left: 0.5rem;
}
#action-bar > *:first-child {
margin-left: 0;
}
</style>
|