feat: implemented sidebar layout builder

This commit is contained in:
Shariq Ansari 2024-06-15 11:01:28 +05:30
parent 212dacfedf
commit 8292a0c1be
2 changed files with 99 additions and 1 deletions

View File

@ -1,6 +1,6 @@
<template>
<div class="flex h-full flex-col gap-8">
<h2 class="flex gap-2 text-xl font-semibold leading-none">
<h2 class="flex gap-2 text-xl font-semibold leading-none h-5">
<div>{{ __(doctype) }}</div>
<Badge
v-if="data.isDirty"

View File

@ -0,0 +1,98 @@
<template>
<div>
<Draggable :list="sections" item-key="label" class="flex flex-col">
<template #item="{ element: section }">
<div class="border-b">
<div class="flex items-center justify-between p-2">
<div
class="flex h-7 max-w-fit cursor-pointer items-center gap-2 pl-2 pr-3 text-base font-semibold leading-5"
@click="section.opened = !section.opened"
>
<FeatherIcon
name="chevron-right"
class="h-4 text-gray-900 transition-all duration-300 ease-in-out"
:class="{ 'rotate-90': section.opened }"
/>
<div v-if="!section.editingLabel">
{{ __(section.label) || __('Untitled') }}
</div>
<div v-else>
<Input
v-model="section.label"
@keydown.enter="section.editingLabel = false"
@blur="section.editingLabel = false"
@click.stop
/>
</div>
</div>
<div>
<Button
:icon="section.editingLabel ? 'check' : 'edit'"
variant="ghost"
@click="section.editingLabel = !section.editingLabel"
/>
<Button
icon="x"
variant="ghost"
@click="sections.splice(sections.indexOf(section), 1)"
/>
</div>
</div>
<div v-show="section.opened" class="p-4 pt-0 pb-2">
<Draggable
:list="section.fields"
item-key="label"
class="flex flex-col gap-1"
handle=".cursor-grab"
>
<template #item="{ element: field }">
<div
class="px-1.5 py-1 border rounded text-base text-gray-800 flex items-center justify-between gap-2"
>
<div class="flex items-center gap-2">
<DragVerticalIcon class="h-3.5 cursor-grab" />
<div>{{ field.label }}</div>
</div>
<div>
<Button
variant="ghost"
icon="x"
@click="
section.fields.splice(section.fields.indexOf(field), 1)
"
/>
</div>
</div>
</template>
</Draggable>
<Button
class="w-full mt-2"
variant="outline"
:label="__('Add Field')"
@click="section.fields.push({ label: 'New Field' })"
/>
</div>
</div>
</template>
</Draggable>
<div class="p-2">
<Button
class="w-full"
variant="outline"
:label="__('Add Section')"
@click="
sections.push({ label: 'New Section', opened: true, fields: [] })
"
/>
</div>
</div>
</template>
<script setup>
import DragVerticalIcon from '@/components/Icons/DragVerticalIcon.vue'
import Draggable from 'vuedraggable'
import { Input } from 'frappe-ui'
const props = defineProps({
sections: Object,
})
</script>