Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
K
koko
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
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
ops
koko
Commits
00ef1b01
Unverified
Commit
00ef1b01
authored
Sep 26, 2019
by
Eric_Lee
Committed by
GitHub
Sep 26, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix assets sort bug (#88)
parent
eeb30a18
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
11 deletions
+13
-11
pagination.go
pkg/handler/pagination.go
+13
-11
No files found.
pkg/handler/pagination.go
View file @
00ef1b01
...
@@ -202,6 +202,7 @@ type UserAssetPagination struct {
...
@@ -202,6 +202,7 @@ type UserAssetPagination struct {
displayPolicy
bool
displayPolicy
bool
Data
model
.
AssetsPaginationResponse
Data
model
.
AssetsPaginationResponse
IsNeedProxy
bool
IsNeedProxy
bool
currentData
[]
model
.
Asset
}
}
func
(
p
*
UserAssetPagination
)
Start
()
[]
model
.
Asset
{
func
(
p
*
UserAssetPagination
)
Start
()
[]
model
.
Asset
{
...
@@ -212,13 +213,13 @@ func (p *UserAssetPagination) Start() []model.Asset {
...
@@ -212,13 +213,13 @@ func (p *UserAssetPagination) Start() []model.Asset {
if
p
.
displayPolicy
&&
p
.
Data
.
Total
==
1
{
if
p
.
displayPolicy
&&
p
.
Data
.
Total
==
1
{
p
.
IsNeedProxy
=
true
p
.
IsNeedProxy
=
true
return
p
.
Data
.
Data
return
p
.
current
Data
}
}
// 无上下页,则退出循环
// 无上下页,则退出循环
if
p
.
Data
.
NextURL
==
""
&&
p
.
Data
.
PreviousURL
==
""
{
if
p
.
Data
.
NextURL
==
""
&&
p
.
Data
.
PreviousURL
==
""
{
p
.
displayPageAssets
()
p
.
displayPageAssets
()
return
p
.
Data
.
Data
return
p
.
current
Data
}
}
inLoop
:
inLoop
:
...
@@ -226,7 +227,7 @@ func (p *UserAssetPagination) Start() []model.Asset {
...
@@ -226,7 +227,7 @@ func (p *UserAssetPagination) Start() []model.Asset {
p
.
displayTipsInfo
()
p
.
displayTipsInfo
()
line
,
err
:=
p
.
term
.
ReadLine
()
line
,
err
:=
p
.
term
.
ReadLine
()
if
err
!=
nil
{
if
err
!=
nil
{
return
p
.
Data
.
Data
return
p
.
current
Data
}
}
line
=
strings
.
TrimSpace
(
line
)
line
=
strings
.
TrimSpace
(
line
)
...
@@ -247,18 +248,18 @@ func (p *UserAssetPagination) Start() []model.Asset {
...
@@ -247,18 +248,18 @@ func (p *UserAssetPagination) Start() []model.Asset {
return
[]
model
.
Asset
{}
return
[]
model
.
Asset
{}
default
:
default
:
if
indexID
,
err
:=
strconv
.
Atoi
(
line
);
err
==
nil
{
if
indexID
,
err
:=
strconv
.
Atoi
(
line
);
err
==
nil
{
if
indexID
>
0
&&
indexID
<=
len
(
p
.
Data
.
Data
)
{
if
indexID
>
0
&&
indexID
<=
len
(
p
.
current
Data
)
{
p
.
IsNeedProxy
=
true
p
.
IsNeedProxy
=
true
return
[]
model
.
Asset
{
p
.
Data
.
Data
[
indexID
-
1
]}
return
[]
model
.
Asset
{
p
.
current
Data
[
indexID
-
1
]}
}
}
}
}
goto
inLoop
goto
inLoop
}
}
default
:
default
:
if
indexID
,
err
:=
strconv
.
Atoi
(
line
);
err
==
nil
{
if
indexID
,
err
:=
strconv
.
Atoi
(
line
);
err
==
nil
{
if
indexID
>
0
&&
indexID
<=
len
(
p
.
Data
.
Data
)
{
if
indexID
>
0
&&
indexID
<=
len
(
p
.
current
Data
)
{
p
.
IsNeedProxy
=
true
p
.
IsNeedProxy
=
true
return
[]
model
.
Asset
{
p
.
Data
.
Data
[
indexID
-
1
]}
return
[]
model
.
Asset
{
p
.
current
Data
[
indexID
-
1
]}
}
}
}
}
goto
inLoop
goto
inLoop
...
@@ -275,8 +276,9 @@ func (p *UserAssetPagination) displayPageAssets() {
...
@@ -275,8 +276,9 @@ func (p *UserAssetPagination) displayPageAssets() {
Labels
:=
[]
string
{
i18n
.
T
(
"ID"
),
i18n
.
T
(
"hostname"
),
i18n
.
T
(
"IP"
),
i18n
.
T
(
"comment"
)}
Labels
:=
[]
string
{
i18n
.
T
(
"ID"
),
i18n
.
T
(
"hostname"
),
i18n
.
T
(
"IP"
),
i18n
.
T
(
"comment"
)}
fields
:=
[]
string
{
"ID"
,
"hostname"
,
"IP"
,
"comment"
}
fields
:=
[]
string
{
"ID"
,
"hostname"
,
"IP"
,
"comment"
}
data
:=
make
([]
map
[
string
]
string
,
len
(
p
.
Data
.
Data
))
p
.
currentData
=
model
.
AssetList
(
p
.
Data
.
Data
)
.
SortBy
(
config
.
GetConf
()
.
AssetListSortBy
)
for
i
,
j
:=
range
p
.
Data
.
Data
{
data
:=
make
([]
map
[
string
]
string
,
len
(
p
.
currentData
))
for
i
,
j
:=
range
p
.
currentData
{
row
:=
make
(
map
[
string
]
string
)
row
:=
make
(
map
[
string
]
string
)
row
[
"ID"
]
=
strconv
.
Itoa
(
i
+
1
)
row
[
"ID"
]
=
strconv
.
Itoa
(
i
+
1
)
row
[
"hostname"
]
=
j
.
Hostname
row
[
"hostname"
]
=
j
.
Hostname
...
@@ -298,10 +300,10 @@ func (p *UserAssetPagination) displayPageAssets() {
...
@@ -298,10 +300,10 @@ func (p *UserAssetPagination) displayPageAssets() {
var
currentPage
int
var
currentPage
int
var
totalCount
int
var
totalCount
int
var
currentOffset
int
var
currentOffset
int
currentOffset
=
p
.
offset
+
len
(
p
.
Data
.
Data
)
currentOffset
=
p
.
offset
+
len
(
p
.
current
Data
)
switch
p
.
limit
{
switch
p
.
limit
{
case
0
:
case
0
:
pageSize
=
len
(
p
.
Data
.
Data
)
pageSize
=
len
(
p
.
current
Data
)
totalCount
=
pageSize
totalCount
=
pageSize
totalPage
=
1
totalPage
=
1
currentPage
=
1
currentPage
=
1
...
...
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