aboutsummaryrefslogtreecommitdiff
path: root/resources/vue/components/courseware/layouts/CoursewareCompanionOverlay.vue
blob: e2e447823238df5412c40a52fe1cb30cea0744df (plain)
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
<script>
import { mapActions, mapGetters } from 'vuex';

export default {
    name: 'courseware-companion-overlay',
    render() {
        return null;
    },
    computed: {
        ...mapGetters({
            showCompanion: 'showCompanionOverlay',
            msgCompanion: 'msgCompanionOverlay',
            styleCompanion: 'styleCompanionOverlay',
            showToolbar: 'showToolbar',
        }),
        msgType() {
            let type = 'info';
            switch (this.styleCompanion) {
                case 'special':
                case 'unsure':
                    type = 'warning';
                    break;
                case 'sad':
                    type = 'error';
                    break;
                case 'happy':
                    type = 'success';
                    break
                case 'pointing':
                case 'curious':
            }
            return type;
        }
    },
    methods: {
        ...mapActions({
            coursewareShowCompanionOverlay: 'coursewareShowCompanionOverlay'
        }),
        hideCompanion() {
            this.coursewareShowCompanionOverlay(false);
        },
    },
    watch: {
        showCompanion(newValue, oldValue) {
            if (newValue === true && oldValue === false) {
                setTimeout(() => {
                    this.hideCompanion();
                }, 4000);
            }
        },
        showToolbar(newValue, oldValue) {
            // hide companion when toolbar is closed
            if (oldValue === true && newValue === false) {
                this.hideCompanion();
            }
        },
        msgCompanion: {
            handler(current) {
                if (current.trim().length === 0) {
                    return;
                }
                const notification = {
                    type: this.msgType,
                    message: current
                };
                this.globalEmit('push-system-notification', notification);
            },
            immediate: true
        }
    }
};
</script>