Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
pleroma-fe
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
Ilja
pleroma-fe
Commits
4f743926
Commit
4f743926
authored
5 years ago
by
Tae Hoon
Browse files
Options
Downloads
Patches
Plain Diff
rewrite ModerationTools using v-tooltip
parent
b9c54782
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/components/moderation_tools/moderation_tools.js
+1
-6
1 addition, 6 deletions
src/components/moderation_tools/moderation_tools.js
src/components/moderation_tools/moderation_tools.vue
+13
-13
13 additions, 13 deletions
src/components/moderation_tools/moderation_tools.vue
with
14 additions
and
19 deletions
src/components/moderation_tools/moderation_tools.js
+
1
−
6
View file @
4f743926
import
DialogModal
from
'
../dialog_modal/dialog_modal.vue
'
import
Popper
from
'
vue-popperjs/src/component/popper.js.vue
'
const
FORCE_NSFW
=
'
mrf_tag:media-force-nsfw
'
const
STRIP_MEDIA
=
'
mrf_tag:media-strip
'
...
...
@@ -29,8 +28,7 @@ const ModerationTools = {
}
},
components
:
{
DialogModal
,
Popper
DialogModal
},
computed
:
{
tagsSet
()
{
...
...
@@ -41,9 +39,6 @@ const ModerationTools = {
}
},
methods
:
{
toggleMenu
()
{
this
.
showDropDown
=
!
this
.
showDropDown
},
hasTag
(
tagName
)
{
return
this
.
tagsSet
.
has
(
tagName
)
},
...
...
This diff is collapsed.
Click to expand it.
src/components/moderation_tools/moderation_tools.vue
+
13
−
13
View file @
4f743926
<
template
>
<div>
<
Popp
er
<
v-popov
er
trigger=
"click"
append-to-body
:options=
"
{
placement: 'bottom-end',
modifiers: {
arrow: { enabled: true },
offset: { offset: '0, 5px' },
}
}"
class=
"moderation-tools-popover"
:container=
"false"
@
show=
"showDropDown = true"
@
hide=
"showDropDown = false"
>
<div
class=
"popper-wrapper"
>
<div
class=
"popper-wrapper"
slot=
"popover"
>
<div
class=
"dropdown-menu"
>
<span
v-if=
"user.is_local"
>
<button
...
...
@@ -127,14 +122,12 @@
</div>
</div>
<button
slot=
"reference"
class=
"btn btn-default btn-block"
:class=
"
{ pressed: showDropDown }"
@click="toggleMenu"
>
{{
$t
(
'
user_card.admin_menu.moderation
'
)
}}
</button>
</
Popp
er>
</
v-popov
er>
<portal
to=
"modal"
>
<DialogModal
v-if=
"showDeleteUserDialog"
...
...
@@ -188,4 +181,11 @@
}
}
.moderation-tools-popover
{
height
:
100%
;
.trigger
{
display
:
flex
!
important
;
height
:
100%
;
}
}
</
style
>
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