Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
netvs-core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
scc-net
netvs
netvs-core
Commits
6bd07383
Commit
6bd07383
authored
5 days ago
by
Nazik Abdyldabekova
Committed by
Nazik Abdyldabekova
4 days ago
Browse files
Options
Downloads
Patches
Plain Diff
UPD: DragAndDrop-Components added
parent
4e19d2da
No related branches found
No related tags found
No related merge requests found
Pipeline
#424020
failed
4 days ago
Stage: build
Stage: lint
Stage: e2e
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/components/TransactionSidebar.vue
+76
-44
76 additions, 44 deletions
src/components/TransactionSidebar.vue
with
76 additions
and
44 deletions
src/components/TransactionSidebar.vue
+
76
−
44
View file @
6bd07383
<
script
setup
lang=
"ts"
>
const
actions
=
ref
([
{
id
:
0
,
title
:
'
Action 1
'
,
description
:
'
to action 1
'
,
position
:
0
,
},
{
id
:
1
,
title
:
'
Action 2
'
,
description
:
'
to action 2
'
,
position
:
1
,
},
{
id
:
2
,
title
:
'
Action 3
'
,
description
:
'
to action 3
'
,
position
:
2
,
},
{
id
:
3
,
title
:
'
Action 4
'
,
description
:
'
to action 4
'
,
position
:
3
,
},
])
const
emptyListPhrase
=
'
No actions planned
'
function
clearList
()
{
actions
.
value
=
[]
}
</
script
>
<
template
>
<SidebarProvider
cookie-name=
"transaction-sidebar"
>
<SidebarInset>
<slot
/>
</SidebarInset>
<Sidebar
collapsible=
"
icon
"
side=
"right"
>
<SidebarHeader
mt-topbar
>
Pla
ceholder
<Sidebar
collapsible=
"
offcanvas
"
side=
"right"
style=
"--sidebar-width: 26rem"
>
<SidebarHeader
mt-topbar
text-center
>
Pla
nned Actions
</SidebarHeader>
<SidebarSeparator
/>
<SidebarContent>
<SidebarGroup>
<SidebarGroupLabel>
Platform
</SidebarGroupLabel>
<SidebarMenu
/>
<SidebarGroup
class=
"m-b-2 m-t-2 flex flex-row justify-center"
>
<Button
variant=
"outline"
w=
"1/8"
rounded-bl-lg
rounded-br-none
rounded-tl-lg
rounded-tr-none
>
<IconTooling
/>
</Button>
<Button
variant=
"outline"
w=
"1/8"
rounded-bl-none
rounded-br-lg
rounded-tl-none
rounded-tr-lg
>
<IconTooling
/>
</Button>
</SidebarGroup>
<SidebarGroup
class=
"group-data-[collapsible=icon]:hidden"
>
<SidebarGroupLabel>
Projects
</SidebarGroupLabel>
<SidebarMenu>
<SidebarMenuItem>
<SidebarMenuButton
as-child
>
Sample Text
</SidebarMenuButton>
<DropdownMenu>
<DropdownMenuTrigger
as-child
>
<SidebarMenuAction
show-on-hover
>
<MoreHorizontal
/>
<span
class=
"sr-only"
>
More
</span>
</SidebarMenuAction>
</DropdownMenuTrigger>
<DropdownMenuContent
class=
"w-48 rounded-lg"
side=
"bottom"
align=
"end"
>
<DropdownMenuItem>
<Folder
class=
"text-muted-foreground"
/>
<span>
View Project
</span>
</DropdownMenuItem>
<DropdownMenuItem>
<Forward
class=
"text-muted-foreground"
/>
<span>
Share Project
</span>
</DropdownMenuItem>
<DropdownMenuSeparator
/>
<DropdownMenuItem>
<Trash2
class=
"text-muted-foreground"
/>
<span>
Delete Project
</span>
</DropdownMenuItem>
</DropdownMenuContent>
</DropdownMenu>
</SidebarMenuItem>
<SidebarMenuItem>
<SidebarMenuButton
class=
"text-sidebar-foreground/70"
>
<MoreHorizontal
class=
"text-sidebar-foreground/70"
/>
<span>
More
</span>
</SidebarMenuButton>
</SidebarMenuItem>
</SidebarMenu>
<SidebarSeparator/>
<SidebarGroup
class=
"m-b-2 flex flex-row justify-center"
>
<div
flex
flex-row
justify-center
>
<Button
variant=
"outline"
w-8rem
rounded-bl-lg
rounded-br-none
rounded-tl-lg
rounded-tr-none
@
click=
"clearList()"
>
Clear List
</Button>
<Select>
<SelectTrigger
rounded-none
w=
"1/7"
>
<SelectValue
placeholder=
"Test"
/>
</SelectTrigger>
<SelectContent>
<SelectGroup
class=
"max-h-35 overflow-y-scroll"
>
<SelectLabel>
Actions to test
</SelectLabel>
<SelectItem
v-for=
"action in actions"
:key=
"action.id"
:value=
"action.title"
>
{{
action
.
title
}}
</SelectItem>
</SelectGroup>
</SelectContent>
</Select>
<Button
variant=
"outline"
w-8rem
rounded-bl-none
rounded-br-lg
rounded-tl-none
rounded-tr-lg
>
Apply
</Button>
</div>
</SidebarGroup>
<SidebarSeparator
/>
<SidebarGroup>
<DragAndDrop
:length=
"actions.length"
:emptyListPhrase=
"emptyListPhrase"
>
<DragAndDropItem
v-for=
"action in actions"
:key=
"action.id"
:item=
"action"
:items=
"actions"
>
</DragAndDropItem>
</DragAndDrop>
</SidebarGroup>
</SidebarContent>
<SidebarFooter>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment