Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Related.vue « Popup « Components « vue « src - github.com/marius-wieschollek/passwords-webextension.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 753f5cc5cf07061d00219948081b442cdf0f7b10 (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
<template>
    <div class="related-container">
        <password-list :passwords="passwords"/>
        <translate tag="div" class="no-results" say="NoRelatedPasswords" v-if="passwords.length === 0"/>
    </div>
</template>

<script>
    import Translate from '@vue/Components/Translate';
    import MessageService from '@js/Services/MessageService';
    import PasswordList from '@vue/Components/List/PasswordList';
    import SettingsService from '@js/Services/SettingsService';

    export default {
        components: {Translate, PasswordList},
        data() {
            return {
                hasSearch: false,
                passwords: []
            };
        },

        mounted() {
            this.reloadData();
        },

        activated() {
            this.reloadData();

            SettingsService.getValue('popup.related.search')
                .then((value) => {
                    if(value) {
                        document.addEventListener('keypress', this.search);
                        this.hasSearch = true;
                    }
                });
        },

        deactivated() {
            if(this.hasSearch) {
                document.removeEventListener('keypress', this.search);
                this.hasSearch = false;
            }
        },

        methods: {
            reloadData() {
                MessageService
                    .send({type: 'password.related'})
                    .then((r) => {
                        this.passwords = r.getPayload();
                    });
            },
            search(event) {
                if(event.key.length === 1) {
                    this.$emit('search', event.key);
                }
            }
        }
    };
</script>

<style lang="scss">
    .related-container {
        .no-results {
            line-height : 3rem;
            text-align  : center;
        }
    }
</style>