Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
condenser
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor 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
hive
condenser
Commits
7344146c
Commit
7344146c
authored
4 years ago
by
Jason Salyers
Browse files
Options
Downloads
Patches
Plain Diff
[JES] Updates to blacklisting. Fixes some small bugs and re-arranges the page a bit
parent
b0d3bce1
No related branches found
No related tags found
2 merge requests
!168
Develop
,
!165
[JES] Updates to blacklisting. Fixes some small bugs and re-arranges the page a bit
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/app/components/pages/ListManagement.jsx
+132
-79
132 additions, 79 deletions
src/app/components/pages/ListManagement.jsx
src/app/locales/en.json
+4
-2
4 additions, 2 deletions
src/app/locales/en.json
with
136 additions
and
81 deletions
src/app/components/pages/ListManagement.jsx
+
132
−
79
View file @
7344146c
...
...
@@ -34,6 +34,7 @@ class ListManagement extends React.Component {
updates_are_pending
:
false
,
first_time_user
:
false
,
expand_welcome_panel
:
false
,
warning_message
:
''
,
};
this
.
handle_filter_change
=
this
.
handle_filter_change
.
bind
(
this
);
this
.
validate_accounts_to_add
=
this
.
validate_accounts_to_add
.
bind
(
...
...
@@ -144,7 +145,11 @@ class ListManagement extends React.Component {
result
.
length
!=
this
.
state
.
all_listed_accounts
.
length
)
{
//updates came through, so set pending to false
this
.
setState
({
updates_are_pending
:
false
});
this
.
setState
({
updates_are_pending
:
false
,
warning_message
:
''
,
});
this
.
multiadd
=
''
;
}
this
.
setState
({
all_listed_accounts
:
result
});
},
...
...
@@ -239,6 +244,19 @@ class ListManagement extends React.Component {
let
accounts
=
[];
let
validated_accounts
=
[];
let
all_users
=
text
.
split
(
'
,
'
);
if
(
this
.
state
.
error_message
!==
''
)
this
.
setState
({
error_message
:
''
});
if
(
all_users
.
length
>
100
)
this
.
setState
({
warning_message
:
'
You are adding a large number of accounts. Numerous brodcast operations will be required.
'
,
});
else
this
.
setState
({
warning_message
:
''
});
let
names_only
=
this
.
state
.
all_listed_accounts
.
map
(
item
=>
{
return
item
.
name
;
});
for
(
var
user
of
all_users
)
{
if
(
user
!==
''
)
accounts
.
push
(
user
);
}
...
...
@@ -248,6 +266,10 @@ class ListManagement extends React.Component {
let
result_string
=
JSON
.
stringify
(
result
);
for
(
var
check_user
of
all_users
)
{
if
(
check_user
===
''
)
continue
;
if
(
names_only
.
includes
(
check_user
))
{
bad_accounts
.
push
(
check_user
);
continue
;
}
if
(
!
result_string
.
includes
(
check_user
))
bad_accounts
.
push
(
check_user
);
else
validated_accounts
.
push
(
check_user
);
...
...
@@ -305,16 +327,29 @@ class ListManagement extends React.Component {
let
follower
=
this
.
props
.
username
;
let
following
=
this
.
state
.
validated_accounts
;
let
followings
=
[];
if
(
following
.
length
>
100
)
{
let
i
=
0
;
while
(
following
.
length
>
0
)
{
let
new_following
=
following
.
splice
(
0
,
100
);
followings
.
push
(
new_following
);
}
}
else
{
followings
.
push
(
following
);
}
this
.
setState
({
is_busy
:
true
});
this
.
props
.
updateList
(
follower
,
following
,
what
,
()
=>
{
this
.
multiadd
.
value
=
''
;
this
.
setState
({
is_busy
:
false
,
validated_accounts
:
[]
,
unmatched
_accounts
:
[],
updates_are_pending
:
true
,
});
for
(
var
following_list
of
followings
)
{
this
.
props
.
updateList
(
follower
,
following_list
,
what
,
()
=>
{})
;
}
this
.
setState
({
is_busy
:
false
,
validate
_accounts
:
[],
unmatched_accounts
:
[]
,
updates_are_pending
:
true
,
});
this
.
multiadd
.
value
=
''
;
}
generate_table_rows
()
{
...
...
@@ -602,7 +637,7 @@ class ListManagement extends React.Component {
this
.
state
.
expand_welcome_panel
)
&&
(
<
div
>
<
center
>
<
table
style
=
{
{
width
:
'
35%
'
,
border
:
'
2
'
}
}
>
<
table
style
=
{
{
width
:
'
35%
'
,
border
:
2
}
}
>
<
thead
/>
<
tbody
>
...
...
@@ -676,9 +711,12 @@ class ListManagement extends React.Component {
</
div
>
)
}
<
p
/>
<
div
>
<
center
>
<
h4
>
{
header_text
}
</
h4
>
<
h5
>
<
b
>
{
header_text
}
</
b
>
</
h5
>
{
(
this
.
props
.
list_type
===
'
blacklisted
'
||
this
.
props
.
list_type
===
'
muted
'
)
&&
(
<
h6
>
...
...
@@ -690,29 +728,7 @@ class ListManagement extends React.Component {
:
mute_list_description
}
</
h6
>
)
}
<
p
/>
<
table
style
=
{
{
width
:
'
35%
'
}
}
>
<
thead
/>
<
tbody
>
<
tr
>
<
td
style
=
{
{
textAlign
:
'
right
'
}
}
>
<
right
>
{
tt
(
'
list_management_jsx.search_for_user
'
)
}
</
right
>
</
td
>
<
td
>
<
input
type
=
"text"
ref
=
{
el
=>
(
this
.
searchbox
=
el
)
}
style
=
{
{
width
:
'
350px
'
}
}
onChange
=
{
this
.
handle_filter_change
}
/>
</
td
>
</
tr
>
</
tbody
>
</
table
>
<
p
/>
<
table
style
=
{
{
width
:
'
35%
'
}
}
>
...
...
@@ -765,6 +781,13 @@ class ListManagement extends React.Component {
{
tt
(
'
list_management_jsx.last
'
)
}
</
span
>
)
}
{
list_length
>
0
&&
(
<
div
>
{
tt
(
'
list_management_jsx.users_on_list
'
,
{
user_count
:
list_length
,
})
}
</
div
>
)
}
{
list_length
>
this
.
state
.
entries_per_page
&&
(
<
div
>
{
tt
(
'
list_management_jsx.page_count
'
,
{
...
...
@@ -778,11 +801,13 @@ class ListManagement extends React.Component {
<
div
>
<
p
/>
<
p
/>
<
h4
>
{
tt
(
'
list_management_jsx.add_users_to_list
'
)
}
</
h4
>
<
h5
>
<
b
>
{
tt
(
'
list_management_jsx.add_users_to_list
'
)
}
</
b
>
</
h5
>
<
table
style
=
{
{
width
:
'
35%
'
}
}
>
<
thead
/>
<
tbody
>
...
...
@@ -815,53 +840,71 @@ class ListManagement extends React.Component {
<
td
style
=
{
{
width
:
'
25%
'
}
}
>
{
this
.
state
.
validated_accounts
.
length
>
0
&&
this
.
state
.
unmatched_accounts
.
length
==
0
&&
(
<
span
className
=
"button slim hollow secondary"
onClick
=
{
this
.
broadcastFollowOperation
}
>
{
button_text
}
</
span
>
)
}
.
length
>
0
&&
(
<
span
className
=
"button slim hollow secondary"
onClick
=
{
this
.
broadcastFollowOperation
}
>
{
button_text
}
</
span
>
)
}
</
td
>
</
tr
>
</
tbody
>
</
table
>
<
p
/>
<
h4
>
{
tt
(
'
list_management_jsx.reset_header
'
)
}
</
h4
>
<
span
className
=
"button slim hollow secondary"
onClick
=
{
this
.
handle_reset_list
.
bind
(
this
,
false
)
}
>
{
this
.
state
.
is_busy
?
tt
(
'
list_management_jsx.button_busy
'
)
:
reset_button_text
}
</
span
>
<
span
className
=
"button slim hollow secondary"
onClick
=
{
this
.
handle_reset_list
.
bind
(
this
,
true
)
}
>
{
this
.
state
.
is_busy
?
tt
(
'
list_management_jsx.button_busy
'
)
:
reset_all_button_text
}
</
span
>
</
div
>
)
}
<
h5
>
<
b
>
Search This List
</
b
>
</
h5
>
<
table
style
=
{
{
width
:
'
35%
'
}
}
>
<
thead
/>
<
tbody
>
<
tr
>
<
td
colSpan
=
"2"
style
=
{
{
textAlign
:
'
right
'
}
}
>
<
center
>
<
input
type
=
"text"
ref
=
{
el
=>
(
this
.
searchbox
=
el
)
}
style
=
{
{
width
:
'
350px
'
}
}
onChange
=
{
this
.
handle_filter_change
}
/>
</
center
>
</
td
>
</
tr
>
</
tbody
>
</
table
>
<
p
/>
<
h4
>
{
tt
(
'
list_management_jsx.reset_header
'
)
}
</
h4
>
<
span
className
=
"button slim hollow secondary"
onClick
=
{
this
.
handle_reset_list
.
bind
(
this
,
false
)
}
>
{
this
.
state
.
is_busy
?
tt
(
'
list_management_jsx.button_busy
'
)
:
reset_button_text
}
</
span
>
<
span
className
=
"button slim hollow secondary"
onClick
=
{
this
.
handle_reset_list
.
bind
(
this
,
true
)
}
>
{
this
.
state
.
is_busy
?
tt
(
'
list_management_jsx.button_busy
'
)
:
reset_all_button_text
}
</
span
>
{
this
.
state
.
unmatched_accounts
.
length
>
0
&&
(
<
div
style
=
{
{
color
:
'
red
'
}
}
>
<
b
>
...
...
@@ -879,6 +922,16 @@ class ListManagement extends React.Component {
</
b
>
</
div
>
)
}
{
this
.
state
.
error_message
!==
''
&&
(
<
div
style
=
{
{
color
:
'
red
'
}
}
>
<
b
>
{
this
.
state
.
error_message
}
</
b
>
</
div
>
)
}
{
this
.
state
.
warning_message
!==
''
&&
(
<
div
style
=
{
{
color
:
'
orange
'
}
}
>
<
b
>
{
this
.
state
.
warning_message
}
</
b
>
</
div
>
)
}
</
center
>
</
div
>
</
div
>
...
...
This diff is collapsed.
Click to expand it.
src/app/locales/en.json
+
4
−
2
View file @
7344146c
...
...
@@ -893,7 +893,8 @@
"button_mute"
:
"Mute Users"
,
"button_follow_blacklists"
:
"Follow Blacklists"
,
"button_follow_muted_lists"
:
"Follow Muted Lists"
,
"unknown_accounts"
:
"Unable to find account(s): "
,
"unknown_accounts"
:
"These accounts cannot be added because they can't be validated or are already on the list: "
,
"page_count"
:
"Viewing Page %(current)s of %(total)s"
,
"search_for_user"
:
"Search List For Account:"
,
"add_users_to_list"
:
"Add Account(s) To List"
,
...
...
@@ -932,6 +933,7 @@
"first"
:
"First"
,
"previous"
:
"Previous"
,
"next"
:
"Next"
,
"last"
:
"Last"
"last"
:
"Last"
,
"users_on_list"
:
"Users On List: %(user_count)s"
}
}
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