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

CustomColorInherit.vue « Theming « Components « vue « src - github.com/marius-wieschollek/passwords-webextension.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 092c763d115c57ced9b4e104b63a23b5d615b94f (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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<template>
    <div class="color-setting">
        <translate :say="label"/>
        <input-field type="checkbox" :title="title" v-model="currentBase"/>
        <input-field type="checkbox" :title="title" v-model="currentHover"/>
    </div>
</template>

<script>
    import Translate from '@vue/Components/Translate';
    import InputField from '@vue/Components/Form/InputField';

    export default {
        components: {InputField, Translate},

        props: {
            name  : String,
            type  : String,
            colors: Object
        },

        data() {
            let keyBase      = `${this.name}-${this.type}`,
                keyHover     = `${this.name}-hover-${this.type}`,
                inheritBase  = this.colors[keyBase] === 'inherit',
                inheritHover = this.colors[keyHover] === 'inherit';

            return {
                colorBase   : inheritBase ? '#000':this.colors[keyBase],
                colorHover  : inheritHover ? '#000':this.colors[keyHover],
                defaultBase : inheritBase,
                defaultHover: inheritHover,
                currentBase : inheritBase,
                currentHover: inheritHover,
                keyBase,
                keyHover
            };
        },

        computed: {
            label() {
                return this.type === 'bg' ? 'BackgroundInheritLabel':'ForegroundInheritLabel';
            },
            title() {
                return this.type === 'bg' ? 'BackgroundInheritTitle':'ForegroundInheritTitle';
            }
        },

        methods: {
            update() {
                let colors = {};

                colors[this.keyBase] = this.currentBase ? 'inherit':this.colorBase;
                colors[this.keyHover] = this.currentHover ? 'inherit':this.colorHover;

                this.$emit('update', colors);
            }
        },

        watch: {
            colors: {
                deep: true,
                handler(value) {
                    let inheritBase  = this.colors[this.keyBase] === 'inherit',
                        inheritHover = this.colors[this.keyHover] === 'inherit';

                    if(!inheritBase) this.colorBase = value[this.keyBase];
                    if(!inheritHover) this.colorHover = value[this.keyHover];
                    this.defaultBase = inheritBase;
                    this.defaultHover = inheritHover;
                    this.currentBase = inheritBase;
                    this.currentHover = inheritHover;
                }
            },
            currentBase() {
                this.update();
            },
            currentHover() {
                this.update();
            }
        }
    };
</script>

<style lang="scss">

</style>