Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Platform
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
Platform
Commits
62bd990d
Unverified
Commit
62bd990d
authored
Sep 20, 2017
by
Nicolas Widart
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updating media list component structure
parent
c6a68306
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
86 additions
and
42 deletions
+86
-42
MediaList.vue
Modules/Media/Assets/js/components/MediaList.vue
+86
-42
No files found.
Modules/Media/Assets/js/components/MediaList.vue
View file @
62bd990d
...
@@ -2,35 +2,65 @@
...
@@ -2,35 +2,65 @@
<div
class=
"row"
>
<div
class=
"row"
>
<div
class=
"col-xs-12"
>
<div
class=
"col-xs-12"
>
<div
class=
"sc-table"
>
<div
class=
"sc-table"
>
<div
class=
"el-row"
>
<div
class=
"title"
>
<h4
v-if=
"singleModal"
>
{{
trans
(
'
media.choose file
'
)
}}
</h4>
<h3
v-if=
"! singleModal"
>
{{
trans
(
'
media.title.media
'
)
}}
</h3>
</div>
</div>
<div
class=
"box box-primary"
>
<div
class=
"box-body"
>
<div
class=
"tool-bar el-row"
style=
"padding-bottom: 20px;"
>
<div
class=
"tool-bar el-row"
style=
"padding-bottom: 20px;"
>
<div
class=
"actions el-col el-col-8"
>
<div
class=
"actions el-col el-col-14"
>
<h4>
{{
trans
(
'
media.choose file
'
)
}}
</h4>
<new-folder></new-folder>
<upload-button></upload-button>
<el-button-group>
<el-button
type=
"primary"
:disabled=
"selectedMedia.length === 0"
>
Move
</el-button>
<el-button
type=
"warning"
:disabled=
"selectedMedia.length === 0"
>
Rename
</el-button>
<el-button
type=
"danger"
:disabled=
"selectedMedia.length === 0"
>
Delete
</el-button>
</el-button-group>
</div>
</div>
<div
class=
"search el-col el-col-5"
>
<div
class=
"search el-col el-col-5"
>
<el-input
icon=
"search"
@
change=
"performSearch"
v-model=
"searchQuery"
>
<el-input
icon=
"search"
@
change=
"performSearch"
v-model=
"searchQuery"
>
</el-input>
</el-input>
</div>
</div>
</div>
</div>
<el-table
<el-table
:data=
"data"
:data=
"data"
stripe
stripe
style=
"width: 100%"
style=
"width: 100%"
ref=
"mediaTable"
ref=
"mediaTable"
v-loading
.
body=
"tableIsLoading"
v-loading
.
body=
"tableIsLoading"
@
sort-change=
"handleSortChange"
>
@
sort-change=
"handleSortChange"
@
selection-change=
"handleSelectionChange"
>
<el-table-column
type=
"selection"
width=
"55"
>
</el-table-column>
<el-table-column
label=
""
width=
"150"
>
<el-table-column
label=
""
width=
"150"
>
<template
scope=
"scope"
>
<template
scope=
"scope"
>
<img
:src=
"scope.row.small_thumb"
alt=
""
v-if=
"scope.row.is_image"
/>
<img
:src=
"scope.row.small_thumb"
alt=
""
v-if=
"scope.row.is_image"
/>
<i
:class=
"`fa $
{scope.row.fa_icon}`" style="font-size: 20px;" v-if="! scope.row.is_image">
</i>
<i
:class=
"`fa $
{scope.row.fa_icon}`" style="font-size: 38px;"
v-if="! scope.row.is_image
&&
! scope.row.is_folder">
</i>
<i
class=
"fa fa-folder"
style=
"font-size: 38px;"
v-if=
"scope.row.is_folder"
></i>
</
template
>
</
template
>
</el-table-column>
</el-table-column>
<el-table-column
prop=
"filename"
:label=
"trans('media.table.filename')"
sortable=
"custom"
>
<el-table-column
prop=
"filename"
:label=
"trans('media.table.filename')"
sortable=
"custom"
>
<
template
scope=
"scope"
>
<strong
v-if=
"scope.row.is_folder"
style=
"cursor: pointer;"
>
{{
scope
.
row
.
filename
}}
</strong>
<span
v-else
>
{{
scope
.
row
.
filename
}}
</span>
</
template
>
</el-table-column>
</el-table-column>
<el-table-column
prop=
"created_at"
:label=
"trans('core.table.created at')"
sortable=
"custom"
>
<el-table-column
prop=
"created_at"
:label=
"trans('core.table.created at')"
sortable=
"custom"
width=
"150"
>
</el-table-column>
</el-table-column>
<el-table-column
prop=
"actions"
label=
""
width=
"150"
>
<el-table-column
prop=
"actions"
label=
""
width=
"150"
>
<
template
scope=
"scope"
>
<
template
scope=
"scope"
>
<a
class=
"btn btn-primary btn-flat"
@
click
.
prevent=
"insertMedia(scope)"
v-if=
"singleModal"
>
<a
class=
"btn btn-primary btn-flat"
@
click
.
prevent=
"insertMedia(scope)"
v-if=
"singleModal"
>
{{
trans
(
'
media.insert
'
)
}}
{{
trans
(
'
media.insert
'
)
}}
</a>
</a>
</
template
>
</
template
>
...
@@ -50,10 +80,19 @@
...
@@ -50,10 +80,19 @@
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</template>
</template>
<
script
>
<
script
>
import
NewFolder
from
'
./NewFolder.vue
'
;
import
UploadButton
from
'
./UploadButton.vue
'
;
export
default
{
export
default
{
components
:
{
'
new-folder
'
:
NewFolder
,
'
upload-button
'
:
UploadButton
,
},
props
:
{
props
:
{
singleModal
:
{
type
:
Boolean
},
singleModal
:
{
type
:
Boolean
},
},
},
...
@@ -71,6 +110,7 @@
...
@@ -71,6 +110,7 @@
},
},
links
:
{},
links
:
{},
searchQuery
:
''
,
searchQuery
:
''
,
selectedMedia
:
{},
}
}
},
},
methods
:
{
methods
:
{
...
@@ -121,8 +161,12 @@
...
@@ -121,8 +161,12 @@
insertMedia
(
scope
)
{
insertMedia
(
scope
)
{
this
.
$events
.
emit
(
'
fileWasSelected
'
,
scope
.
row
);
this
.
$events
.
emit
(
'
fileWasSelected
'
,
scope
.
row
);
},
},
handleSelectionChange
(
selectedMedia
)
{
this
.
selectedMedia
=
selectedMedia
;
},
},
},
mounted
()
{
mounted
()
{
this
.
selectedMedia
.
length
=
0
;
this
.
fetchMediaData
();
this
.
fetchMediaData
();
this
.
$events
.
listen
(
'
fileWasUploaded
'
,
eventData
=>
{
this
.
$events
.
listen
(
'
fileWasUploaded
'
,
eventData
=>
{
this
.
fetchMediaData
();
this
.
fetchMediaData
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment