feat: edit and delete sidebar item
This commit is contained in:
@@ -22,7 +22,7 @@
|
|||||||
"dayjs": "^1.11.6",
|
"dayjs": "^1.11.6",
|
||||||
"feather-icons": "^4.28.0",
|
"feather-icons": "^4.28.0",
|
||||||
"frappe-ui": "^0.1.56",
|
"frappe-ui": "^0.1.56",
|
||||||
"lucide-vue-next": "^0.309.0",
|
"lucide-vue-next": "^0.383.0",
|
||||||
"markdown-it": "^14.0.0",
|
"markdown-it": "^14.0.0",
|
||||||
"pinia": "^2.0.33",
|
"pinia": "^2.0.33",
|
||||||
"socket.io-client": "^4.7.2",
|
"socket.io-client": "^4.7.2",
|
||||||
|
|||||||
@@ -16,8 +16,14 @@
|
|||||||
class="mx-2 my-0.5"
|
class="mx-2 my-0.5"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div class="mt-4 px-2 pt-1 border-t border-gray-200">
|
<div
|
||||||
<div v-if="isModerator" class="flex items-center justify-between pl-2">
|
v-if="sidebarSettings.data?.web_pages?.length || isModerator"
|
||||||
|
class="mt-4 pt-1 border-t border-gray-200"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
v-if="isModerator"
|
||||||
|
class="flex items-center justify-between pl-4 pr-2"
|
||||||
|
>
|
||||||
<span class="text-sm font-medium text-gray-600">
|
<span class="text-sm font-medium text-gray-600">
|
||||||
{{ __('Web Pages') }}
|
{{ __('Web Pages') }}
|
||||||
</span>
|
</span>
|
||||||
@@ -27,12 +33,18 @@
|
|||||||
</template>
|
</template>
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
<div v-if="sidebarSettings.data?.web_pages.length">
|
<div
|
||||||
|
v-if="sidebarSettings.data?.web_pages?.length"
|
||||||
|
class="flex flex-col overflow-y-auto"
|
||||||
|
>
|
||||||
<SidebarLink
|
<SidebarLink
|
||||||
v-for="link in sidebarSettings.data.web_pages"
|
v-for="link in sidebarSettings.data.web_pages"
|
||||||
:link="link"
|
:link="link"
|
||||||
:isCollapsed="isSidebarCollapsed"
|
:isCollapsed="isSidebarCollapsed"
|
||||||
class="mx-2 my-0.5"
|
class="mx-2 my-0.5"
|
||||||
|
:showControls="isModerator ? true : false"
|
||||||
|
@openModal="openPageModal"
|
||||||
|
@deletePage="deletePage"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -55,7 +67,11 @@
|
|||||||
</template>
|
</template>
|
||||||
</SidebarLink>
|
</SidebarLink>
|
||||||
</div>
|
</div>
|
||||||
<PageModal v-model="showPageModal" v-model:reloadSidebar="sidebarSettings" />
|
<PageModal
|
||||||
|
v-model="showPageModal"
|
||||||
|
v-model:reloadSidebar="sidebarSettings"
|
||||||
|
:page="pageToEdit"
|
||||||
|
/>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
@@ -67,7 +83,7 @@ import { ref, onMounted, inject, watch } from 'vue'
|
|||||||
import { getSidebarLinks } from '../utils'
|
import { getSidebarLinks } from '../utils'
|
||||||
import { usersStore } from '@/stores/user'
|
import { usersStore } from '@/stores/user'
|
||||||
import { sessionStore } from '@/stores/session'
|
import { sessionStore } from '@/stores/session'
|
||||||
import { Bell, Plus } from 'lucide-vue-next'
|
import { Plus } from 'lucide-vue-next'
|
||||||
import { createResource, Button } from 'frappe-ui'
|
import { createResource, Button } from 'frappe-ui'
|
||||||
import PageModal from '@/components/Modals/PageModal.vue'
|
import PageModal from '@/components/Modals/PageModal.vue'
|
||||||
|
|
||||||
@@ -78,6 +94,7 @@ const unreadCount = ref(0)
|
|||||||
const sidebarLinks = ref(getSidebarLinks())
|
const sidebarLinks = ref(getSidebarLinks())
|
||||||
const showPageModal = ref(false)
|
const showPageModal = ref(false)
|
||||||
const isModerator = ref(false)
|
const isModerator = ref(false)
|
||||||
|
const pageToEdit = ref(null)
|
||||||
|
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
socket.on('publish_lms_notifications', (data) => {
|
socket.on('publish_lms_notifications', (data) => {
|
||||||
@@ -114,7 +131,7 @@ const addNotifications = () => {
|
|||||||
if (user) {
|
if (user) {
|
||||||
sidebarLinks.value.push({
|
sidebarLinks.value.push({
|
||||||
label: 'Notifications',
|
label: 'Notifications',
|
||||||
icon: Bell,
|
icon: 'Bell',
|
||||||
to: 'Notifications',
|
to: 'Notifications',
|
||||||
activeFor: ['Notifications'],
|
activeFor: ['Notifications'],
|
||||||
count: unreadCount.value,
|
count: unreadCount.value,
|
||||||
@@ -137,8 +154,27 @@ const sidebarSettings = createResource({
|
|||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
const openPageModal = () => {
|
const openPageModal = (link) => {
|
||||||
showPageModal.value = true
|
showPageModal.value = true
|
||||||
|
pageToEdit.value = link
|
||||||
|
}
|
||||||
|
|
||||||
|
const deletePage = (link) => {
|
||||||
|
createResource({
|
||||||
|
url: 'lms.lms.api.delete_sidebar_item',
|
||||||
|
makeParams(values) {
|
||||||
|
return {
|
||||||
|
webpage: link.web_page,
|
||||||
|
}
|
||||||
|
},
|
||||||
|
}).submit(
|
||||||
|
{},
|
||||||
|
{
|
||||||
|
onSuccess() {
|
||||||
|
sidebarSettings.reload()
|
||||||
|
},
|
||||||
|
}
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
const getSidebarFromStorage = () => {
|
const getSidebarFromStorage = () => {
|
||||||
|
|||||||
@@ -6,13 +6,10 @@
|
|||||||
<div class="w-full">
|
<div class="w-full">
|
||||||
<Popover>
|
<Popover>
|
||||||
<template #target="{ togglePopover }">
|
<template #target="{ togglePopover }">
|
||||||
<FormControl
|
<button
|
||||||
v-model="selectedIcon"
|
@click="openPopover(togglePopover)"
|
||||||
@focus="openPopover(togglePopover)"
|
class="flex w-full items-center space-x-2 focus:outline-none bg-gray-100 rounded h-7 py-1.5 px-2 hover:bg-gray-200 focus:bg-white border border-gray-100 hover:border-gray-200 focus:border-gray-500"
|
||||||
:placeholder="__('Choose an icon')"
|
|
||||||
class="w-full"
|
|
||||||
>
|
>
|
||||||
<template #prefix>
|
|
||||||
<component
|
<component
|
||||||
v-if="selectedIcon"
|
v-if="selectedIcon"
|
||||||
class="w-4 h-4 text-gray-700 stroke-1.5"
|
class="w-4 h-4 text-gray-700 stroke-1.5"
|
||||||
@@ -23,15 +20,21 @@
|
|||||||
class="w-4 h-4 text-gray-700 stroke-1.5"
|
class="w-4 h-4 text-gray-700 stroke-1.5"
|
||||||
:is="icons.Folder"
|
:is="icons.Folder"
|
||||||
/>
|
/>
|
||||||
</template>
|
<span v-if="selectedIcon">
|
||||||
</FormControl>
|
{{ selectedIcon }}
|
||||||
|
</span>
|
||||||
|
<span v-else class="text-gray-600">
|
||||||
|
{{ __('Choose an icon') }}
|
||||||
|
</span>
|
||||||
|
</button>
|
||||||
</template>
|
</template>
|
||||||
<template #body-main="{ close, isOpen }" class="w-full">
|
<template #body-main="{ close, isOpen }" class="w-full">
|
||||||
<div class="p-3 max-h-56 overflow-auto w-full">
|
<div class="p-3 max-h-56 overflow-auto w-full">
|
||||||
<FormControl
|
<FormControl
|
||||||
|
ref="search"
|
||||||
v-model="iconQuery"
|
v-model="iconQuery"
|
||||||
:placeholder="__('Search for an icon')"
|
:placeholder="__('Search for an icon')"
|
||||||
class="search-input"
|
autocomplete="off"
|
||||||
/>
|
/>
|
||||||
<div class="grid grid-cols-10 gap-4 mt-4">
|
<div class="grid grid-cols-10 gap-4 mt-4">
|
||||||
<div v-for="(iconComponent, iconName) in filteredIcons">
|
<div v-for="(iconComponent, iconName) in filteredIcons">
|
||||||
@@ -51,12 +54,13 @@
|
|||||||
<script setup>
|
<script setup>
|
||||||
import { FormControl, Popover } from 'frappe-ui'
|
import { FormControl, Popover } from 'frappe-ui'
|
||||||
import * as icons from 'lucide-vue-next'
|
import * as icons from 'lucide-vue-next'
|
||||||
import { ref, computed } from 'vue'
|
import { ref, computed, onMounted, nextTick } from 'vue'
|
||||||
|
|
||||||
const iconQuery = ref('')
|
const iconQuery = ref('')
|
||||||
const selectedIcon = ref('')
|
const selectedIcon = ref('')
|
||||||
|
const search = ref(null)
|
||||||
const emit = defineEmits(['update:modelValue', 'change'])
|
const emit = defineEmits(['update:modelValue', 'change'])
|
||||||
|
console.log(icons)
|
||||||
const iconArray = ref(
|
const iconArray = ref(
|
||||||
Object.keys(icons)
|
Object.keys(icons)
|
||||||
.sort(() => 0.5 - Math.random())
|
.sort(() => 0.5 - Math.random())
|
||||||
@@ -78,6 +82,11 @@ const props = defineProps({
|
|||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
|
onMounted(() => {
|
||||||
|
selectedIcon.value = props.modelValue
|
||||||
|
console.log(search.value)
|
||||||
|
})
|
||||||
|
|
||||||
const setIcon = (icon, close) => {
|
const setIcon = (icon, close) => {
|
||||||
emit('update:modelValue', icon)
|
emit('update:modelValue', icon)
|
||||||
selectedIcon.value = icon
|
selectedIcon.value = icon
|
||||||
@@ -102,8 +111,9 @@ const filteredIcons = computed(() => {
|
|||||||
|
|
||||||
const openPopover = (togglePopover) => {
|
const openPopover = (togglePopover) => {
|
||||||
togglePopover()
|
togglePopover()
|
||||||
setTimeout(() => {
|
nextTick(() => {
|
||||||
document.querySelector('.search-input').focus()
|
/* search.value.focus() */
|
||||||
}, 0)
|
console.log(search.value.children)
|
||||||
|
})
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -30,40 +30,53 @@
|
|||||||
</Dialog>
|
</Dialog>
|
||||||
</template>
|
</template>
|
||||||
<script setup>
|
<script setup>
|
||||||
import { Dialog, FormControl, createResource } from 'frappe-ui'
|
import { Dialog, createResource } from 'frappe-ui'
|
||||||
import Link from '@/components/Controls/Link.vue'
|
import Link from '@/components/Controls/Link.vue'
|
||||||
import { reactive } from 'vue'
|
import { reactive, watch } from 'vue'
|
||||||
import IconPicker from '@/components/Controls/IconPicker.vue'
|
import IconPicker from '@/components/Controls/IconPicker.vue'
|
||||||
import { showToast } from '@/utils'
|
import { showToast } from '@/utils'
|
||||||
|
|
||||||
const topics = defineModel('reloadSidebar')
|
const sidebar = defineModel('reloadSidebar')
|
||||||
const show = defineModel()
|
const show = defineModel()
|
||||||
const page = reactive({
|
const page = reactive({
|
||||||
icon: '',
|
icon: '',
|
||||||
webpage: '',
|
webpage: '',
|
||||||
})
|
})
|
||||||
|
|
||||||
|
const props = defineProps({
|
||||||
|
page: {
|
||||||
|
type: Object,
|
||||||
|
default: null,
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
||||||
const webPage = createResource({
|
const webPage = createResource({
|
||||||
url: 'frappe.client.insert',
|
url: 'lms.lms.api.update_sidebar_item',
|
||||||
makeParams(values) {
|
makeParams(values) {
|
||||||
return {
|
return {
|
||||||
doc: {
|
webpage: page.webpage,
|
||||||
doctype: 'LMS Sidebar Item',
|
|
||||||
web_page: page.webpage,
|
|
||||||
icon: page.icon,
|
icon: page.icon,
|
||||||
parent: 'LMS Settings',
|
|
||||||
parentfield: 'sidebar_items',
|
|
||||||
parenttype: 'LMS Settings',
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
|
watch(
|
||||||
|
() => props.page,
|
||||||
|
(newPage) => {
|
||||||
|
if (newPage) {
|
||||||
|
page.icon = newPage.icon
|
||||||
|
page.webpage = newPage.web_page
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ immediate: true }
|
||||||
|
)
|
||||||
|
|
||||||
const addWebPage = (close) => {
|
const addWebPage = (close) => {
|
||||||
webPage.submit(
|
webPage.submit(
|
||||||
{},
|
{},
|
||||||
{
|
{
|
||||||
onSuccess() {
|
onSuccess() {
|
||||||
|
sidebar.value.reload()
|
||||||
close()
|
close()
|
||||||
showToast('Success', 'Web page added to sidebar', 'check')
|
showToast('Success', 'Web page added to sidebar', 'check')
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -6,14 +6,14 @@
|
|||||||
@click="handleClick"
|
@click="handleClick"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
class="flex items-center w-full duration-300 ease-in-out"
|
class="flex items-center w-full duration-300 ease-in-out group"
|
||||||
:class="isCollapsed ? 'p-1' : 'px-2 py-1'"
|
:class="isCollapsed ? 'p-1' : 'px-2 py-1'"
|
||||||
>
|
>
|
||||||
<Tooltip :text="link.label" placement="right">
|
<Tooltip :text="link.label" placement="right">
|
||||||
<slot name="icon">
|
<slot name="icon">
|
||||||
<span class="grid h-5 w-6 flex-shrink-0 place-items-center">
|
<span class="grid h-5 w-6 flex-shrink-0 place-items-center">
|
||||||
<component
|
<component
|
||||||
:is="link.icon"
|
:is="icons[link.icon]"
|
||||||
class="h-4 w-4 stroke-1.5 text-gray-800"
|
class="h-4 w-4 stroke-1.5 text-gray-800"
|
||||||
/>
|
/>
|
||||||
</span>
|
</span>
|
||||||
@@ -32,16 +32,32 @@
|
|||||||
<span v-if="link.count" class="!ml-auto block text-xs text-gray-600">
|
<span v-if="link.count" class="!ml-auto block text-xs text-gray-600">
|
||||||
{{ link.count }}
|
{{ link.count }}
|
||||||
</span>
|
</span>
|
||||||
|
<div
|
||||||
|
v-if="showControls"
|
||||||
|
class="flex items-center space-x-2 !ml-auto block text-xs text-gray-600 group-hover:visible invisible"
|
||||||
|
>
|
||||||
|
<component
|
||||||
|
:is="icons['Edit']"
|
||||||
|
class="h-3 w-3 stroke-1.5 text-gray-800"
|
||||||
|
@click.stop="openModal(link)"
|
||||||
|
/>
|
||||||
|
<component
|
||||||
|
:is="icons['X']"
|
||||||
|
class="h-3 w-3 stroke-1.5 text-gray-800"
|
||||||
|
@click.stop="deletePage(link)"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</button>
|
</button>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import { Tooltip } from 'frappe-ui'
|
import { Tooltip, Button } from 'frappe-ui'
|
||||||
import { computed } from 'vue'
|
import { computed, defineEmits } from 'vue'
|
||||||
import { useRouter } from 'vue-router'
|
import { useRouter } from 'vue-router'
|
||||||
|
import * as icons from 'lucide-vue-next'
|
||||||
|
|
||||||
const router = useRouter()
|
const router = useRouter()
|
||||||
|
const emit = defineEmits(['openModal', 'deletePage'])
|
||||||
|
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
link: {
|
link: {
|
||||||
@@ -52,17 +68,29 @@ const props = defineProps({
|
|||||||
type: Boolean,
|
type: Boolean,
|
||||||
default: false,
|
default: false,
|
||||||
},
|
},
|
||||||
|
showControls: {
|
||||||
|
type: Boolean,
|
||||||
|
default: false,
|
||||||
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
function handleClick() {
|
function handleClick() {
|
||||||
if (props.link.to.includes('/')) {
|
if (router.hasRoute(props.link.to)) {
|
||||||
window.location.href = props.link.to
|
|
||||||
} else {
|
|
||||||
router.push({ name: props.link.to })
|
router.push({ name: props.link.to })
|
||||||
|
} else {
|
||||||
|
window.location.href = `/${props.link.to}`
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
let isActive = computed(() => {
|
const isActive = computed(() => {
|
||||||
return props.link?.activeFor?.includes(router.currentRoute.value.name)
|
return props.link?.activeFor?.includes(router.currentRoute.value.name)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
const openModal = (link) => {
|
||||||
|
emit('openModal', link)
|
||||||
|
}
|
||||||
|
|
||||||
|
const deletePage = (link) => {
|
||||||
|
emit('deletePage', link)
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -1,13 +1,5 @@
|
|||||||
import { toast } from 'frappe-ui'
|
import { toast } from 'frappe-ui'
|
||||||
import { useTimeAgo } from '@vueuse/core'
|
import { useTimeAgo } from '@vueuse/core'
|
||||||
import {
|
|
||||||
BookOpen,
|
|
||||||
Users,
|
|
||||||
TrendingUp,
|
|
||||||
Briefcase,
|
|
||||||
GraduationCap,
|
|
||||||
Bell,
|
|
||||||
} from 'lucide-vue-next'
|
|
||||||
import { Quiz } from '@/utils/quiz'
|
import { Quiz } from '@/utils/quiz'
|
||||||
import { Upload } from '@/utils/upload'
|
import { Upload } from '@/utils/upload'
|
||||||
import Header from '@editorjs/header'
|
import Header from '@editorjs/header'
|
||||||
@@ -331,31 +323,31 @@ export function getSidebarLinks() {
|
|||||||
return [
|
return [
|
||||||
{
|
{
|
||||||
label: 'Courses',
|
label: 'Courses',
|
||||||
icon: BookOpen,
|
icon: 'BookOpen',
|
||||||
to: 'Courses',
|
to: 'Courses',
|
||||||
activeFor: ['Courses', 'CourseDetail', 'Lesson'],
|
activeFor: ['Courses', 'CourseDetail', 'Lesson'],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'Batches',
|
label: 'Batches',
|
||||||
icon: Users,
|
icon: 'Users',
|
||||||
to: 'Batches',
|
to: 'Batches',
|
||||||
activeFor: ['Batches', 'BatchDetail', 'Batch'],
|
activeFor: ['Batches', 'BatchDetail', 'Batch'],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'Certified Participants',
|
label: 'Certified Participants',
|
||||||
icon: GraduationCap,
|
icon: 'GraduationCap',
|
||||||
to: 'CertifiedParticipants',
|
to: 'CertifiedParticipants',
|
||||||
activeFor: ['CertifiedParticipants'],
|
activeFor: ['CertifiedParticipants'],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'Jobs',
|
label: 'Jobs',
|
||||||
icon: Briefcase,
|
icon: 'Briefcase',
|
||||||
to: 'Jobs',
|
to: 'Jobs',
|
||||||
activeFor: ['Jobs', 'JobDetail'],
|
activeFor: ['Jobs', 'JobDetail'],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'Statistics',
|
label: 'Statistics',
|
||||||
icon: TrendingUp,
|
icon: 'TrendingUp',
|
||||||
to: 'Statistics',
|
to: 'Statistics',
|
||||||
activeFor: ['Statistics'],
|
activeFor: ['Statistics'],
|
||||||
},
|
},
|
||||||
|
|||||||
2089
frontend/yarn.lock
Normal file
2089
frontend/yarn.lock
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user