rudeshark.net/src/client/app/common/views/widgets/memo.vue

104 lines
1.8 KiB
Vue
Raw Normal View History

2018-05-27 15:39:20 +02:00
<template>
<div class="mkw-memo">
<mk-widget-container :show-header="!props.compact">
<template slot="header">%fa:R sticky-note%%i18n:@title%</template>
<div class="mkw-memo--body">
<textarea v-model="text" placeholder="%i18n:@memo%" @input="onChange"></textarea>
<button @click="saveMemo" :disabled="!changed">%i18n:@save%</button>
</div>
</mk-widget-container>
</div>
</template>
<script lang="ts">
import define from '../../define-widget';
export default define({
name: 'memo',
props: () => ({
compact: false
})
}).extend({
data() {
return {
text: null,
changed: false
};
},
created() {
this.text = this.$store.state.settings.memo;
this.$watch('$store.state.settings.memo', text => {
this.text = text;
});
},
methods: {
func() {
this.props.compact = !this.props.compact;
this.save();
},
onChange() {
this.changed = true;
},
saveMemo() {
this.$store.dispatch('settings/set', {
key: 'memo',
value: this.text
});
this.changed = false;
}
}
});
</script>
<style lang="stylus" scoped>
2018-09-28 12:59:19 +02:00
.mkw-memo
2018-05-27 15:39:20 +02:00
.mkw-memo--body
padding-bottom 28px + 16px
> textarea
display block
width 100%
max-width 100%
min-width 100%
padding 16px
2018-09-28 12:59:19 +02:00
color var(--inputText)
2018-09-26 13:28:13 +02:00
background var(--face)
2018-05-27 15:39:20 +02:00
border none
2018-09-28 12:59:19 +02:00
border-bottom solid 1px var(--faceDivider)
2018-05-29 21:46:50 +02:00
border-radius 0
2018-05-27 15:39:20 +02:00
> button
display block
position absolute
bottom 8px
right 8px
margin 0
padding 0 10px
height 28px
2018-09-26 13:19:35 +02:00
color var(--primaryForeground)
background var(--primary) !important
2018-05-27 15:39:20 +02:00
outline none
border none
border-radius 4px
transition background 0.1s ease
cursor pointer
&:hover
2018-09-26 13:19:35 +02:00
background var(--primaryLighten10) !important
2018-05-27 15:39:20 +02:00
&:active
2018-09-26 13:19:35 +02:00
background var(--primaryDarken10) !important
2018-05-27 15:39:20 +02:00
transition background 0s ease
&:disabled
opacity 0.7
cursor default
</style>