1
1
mirror of https://github.com/aelve/guide.git synced 2024-12-26 06:11:33 +03:00
guide/front/client/components/CategoryItemSection.vue
avele b248b75a49
updating-vue-and-babel (#267)
* Vue updated, got rid of vue fork, babel updated

* update vue-class-component

* Vue-class-component updated

* Vue-class-component update and usage
2019-02-20 00:24:07 +04:00

86 lines
1.6 KiB
Vue

<template>
<div class="category-item-section">
<h3 class="title font-weight-bold mb-1">
{{title}}
<category-item-btn
small
:title="editBtnTitle"
:icon="editBtnIcon"
@click="toggleEdit"
/>
</h3>
<slot v-if="!isEdit"/>
<markdown-editor
v-else
class="mb-2"
toolbar
:value="editText"
:height="editorHeight"
@cancel="toggleEdit"
@save="save"
/>
</div>
</template>
<script lang="ts">
import Vue from 'vue'
import Component from 'vue-class-component'
import { Prop } from 'vue-property-decorator'
import MarkdownEditor from 'client/components/MarkdownEditor.vue'
import CategoryItemBtn from 'client/components/CategoryItemBtn.vue'
@Component({
components: {
MarkdownEditor,
CategoryItemBtn
}
})
export default class CategoryItemSection extends Vue {
@Prop({
type: String,
default: ''
}) title: string
@Prop({
type: String,
default: ''
}) editText: string
@Prop({
type: Number,
default: 200
}) editorHeight: number
@Prop({
type: String,
default: 'pencil-alt'
}) editBtnIcon: string
@Prop({
type: String,
default: 'edit'
}) editBtnTitle: string
@Prop(Boolean) customEdit: boolean
isEdit: boolean = false
toggleEdit (): void {
if (this.customEdit) {
this.$emit('toggleEdit')
return
}
this.isEdit = !this.isEdit
}
save (edited: string): void {
this.$emit('save', edited)
this.toggleEdit()
}
}
</script>
<style scoped>
.category-item-section:not(:last-child) {
margin-bottom: 15px;
}
</style>