2020-01-29 20:37:25 +01:00
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<mk-container :show-header="!props.compact">
|
|
|
|
<template #header><fa :icon="faStickyNote"/>{{ $t('_widgets.memo') }}</template>
|
|
|
|
|
|
|
|
<div class="otgbylcu">
|
|
|
|
<textarea v-model="text" :placeholder="$t('placeholder')" @input="onChange"></textarea>
|
2020-03-29 04:06:58 +02:00
|
|
|
<button @click="saveMemo" :disabled="!changed" class="_buttonPrimary">{{ $t('save') }}</button>
|
2020-01-29 20:37:25 +01:00
|
|
|
</div>
|
|
|
|
</mk-container>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import { faStickyNote } from '@fortawesome/free-solid-svg-icons';
|
|
|
|
import MkContainer from '../components/ui/container.vue';
|
|
|
|
import define from './define';
|
|
|
|
|
|
|
|
export default define({
|
|
|
|
name: 'memo',
|
|
|
|
props: () => ({
|
|
|
|
compact: false
|
|
|
|
})
|
|
|
|
}).extend({
|
|
|
|
|
|
|
|
components: {
|
|
|
|
MkContainer
|
|
|
|
},
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
text: null,
|
|
|
|
changed: false,
|
|
|
|
timeoutId: null,
|
|
|
|
faStickyNote
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
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;
|
|
|
|
clearTimeout(this.timeoutId);
|
|
|
|
this.timeoutId = setTimeout(this.saveMemo, 1000);
|
|
|
|
},
|
|
|
|
|
|
|
|
saveMemo() {
|
|
|
|
this.$store.dispatch('settings/set', {
|
|
|
|
key: 'memo',
|
|
|
|
value: this.text
|
|
|
|
});
|
|
|
|
this.changed = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.otgbylcu {
|
|
|
|
padding-bottom: 28px + 16px;
|
|
|
|
|
|
|
|
> textarea {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
max-width: 100%;
|
|
|
|
min-width: 100%;
|
|
|
|
padding: 16px;
|
|
|
|
color: var(--inputText);
|
|
|
|
background: var(--face);
|
|
|
|
border: none;
|
|
|
|
border-bottom: solid var(--lineWidth) var(--faceDivider);
|
|
|
|
border-radius: 0;
|
2020-03-29 04:06:58 +02:00
|
|
|
box-sizing: border-box;
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
> button {
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
bottom: 8px;
|
|
|
|
right: 8px;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0 10px;
|
|
|
|
height: 28px;
|
|
|
|
outline: none;
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
|
|
&:disabled {
|
|
|
|
opacity: 0.7;
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|