Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
debomatic-webui
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
debomatic-webui-admins
debomatic-webui
Commits
77fd9f56
Commit
77fd9f56
authored
Apr 07, 2014
by
Leo Iannacone
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
more consistence view state
parent
7db434bc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
22 deletions
+21
-22
debomatic-webui/public/javascripts/page_distribution.js
debomatic-webui/public/javascripts/page_distribution.js
+21
-22
No files found.
debomatic-webui/public/javascripts/page_distribution.js
View file @
77fd9f56
...
@@ -16,6 +16,7 @@ function Page_Distrubion(socket)
...
@@ -16,6 +16,7 @@ function Page_Distrubion(socket)
view.package.version
view.package.version
view.package.orig_name
view.package.orig_name
view.package.status
view.package.status
view.package.success
view.package.files = [file]
view.package.files = [file]
view.package.debs = [file]
view.package.debs = [file]
view.package.sources = [file]
view.package.sources = [file]
...
@@ -112,7 +113,6 @@ function Page_Distrubion(socket)
...
@@ -112,7 +113,6 @@ function Page_Distrubion(socket)
$
(
'
#packages ul
'
).
append
(
'
<li class="text-muted">No packages yet</li>
'
)
$
(
'
#packages ul
'
).
append
(
'
<li class="text-muted">No packages yet</li>
'
)
}
}
packages
.
show
()
packages
.
show
()
sticky
.
update
()
},
},
clean
:
function
()
{
clean
:
function
()
{
$
(
'
#packages ul
'
).
html
(
''
)
$
(
'
#packages ul
'
).
html
(
''
)
...
@@ -139,7 +139,11 @@ function Page_Distrubion(socket)
...
@@ -139,7 +139,11 @@ function Page_Distrubion(socket)
if
(
view
.
distribution
.
name
==
status_data
.
distribution
if
(
view
.
distribution
.
name
==
status_data
.
distribution
&&
view
.
packages
[
status_data
.
package
]
)
&&
view
.
packages
[
status_data
.
package
]
)
{
{
view
.
packages
[
status_data
.
package
].
status
=
Utils
.
clone
(
status_data
.
status
)
view
.
packages
[
status_data
.
package
].
status
=
status_data
.
status
if
(
status_data
.
hasOwnProperty
(
'
success
'
))
view
.
packages
[
status_data
.
package
].
success
=
status_data
.
success
else
delete
(
view
.
packages
[
status_data
.
package
].
success
)
}
}
// and in html
// and in html
var
p_html
=
$
(
"
#packages li[id='package-
"
+
status_data
.
package
+
"
'] a
"
)
var
p_html
=
$
(
"
#packages li[id='package-
"
+
status_data
.
package
+
"
'] a
"
)
...
@@ -150,7 +154,7 @@ function Page_Distrubion(socket)
...
@@ -150,7 +154,7 @@ function Page_Distrubion(socket)
&&
view
.
distribution
.
name
==
status_data
.
distribution
)
&&
view
.
distribution
.
name
==
status_data
.
distribution
)
{
{
// in case user is watching this package, update also view.package
// in case user is watching this package, update also view.package
view
.
package
.
status
=
Utils
.
clone
(
status_data
.
status
)
view
.
package
=
Utils
.
clone
(
view
.
packages
[
status_data
.
package
]
)
}
}
},
},
show
:
function
()
{
show
:
function
()
{
...
@@ -201,7 +205,6 @@ function Page_Distrubion(socket)
...
@@ -201,7 +205,6 @@ function Page_Distrubion(socket)
$
(
'
#sources
'
).
show
()
$
(
'
#sources
'
).
show
()
}
}
files
.
show
()
files
.
show
()
sticky
.
update
()
},
},
clean
:
function
()
{
clean
:
function
()
{
$
(
'
#logs ul
'
).
html
(
''
);
$
(
'
#logs ul
'
).
html
(
''
);
...
@@ -315,15 +318,15 @@ function Page_Distrubion(socket)
...
@@ -315,15 +318,15 @@ function Page_Distrubion(socket)
start
:
function
()
{
start
:
function
()
{
$
(
window
).
scroll
(
sticky
.
init
)
$
(
window
).
scroll
(
sticky
.
init
)
},
},
stop
:
function
()
{
$
(
window
).
off
(
"
scroll
"
)
},
reset
:
function
()
{
reset
:
function
()
{
sticky
.
stop
()
sticky
.
stop
()
sticky
.
update
()
sticky
.
update
()
sticky
.
init
()
sticky
.
init
()
sticky
.
start
()
sticky
.
start
()
},
},
stop
:
function
()
{
$
(
window
).
off
(
"
scroll
"
)
},
show
:
function
()
{
show
:
function
()
{
if
(
config
.
preferences
.
sidebar
)
{
if
(
config
.
preferences
.
sidebar
)
{
$
(
"
#sticky
"
).
addClass
(
'
fixed
'
)
$
(
"
#sticky
"
).
addClass
(
'
fixed
'
)
...
@@ -344,7 +347,6 @@ function Page_Distrubion(socket)
...
@@ -344,7 +347,6 @@ function Page_Distrubion(socket)
$
(
"
#sticky-package .name
"
).
html
(
view
.
package
.
name
)
$
(
"
#sticky-package .name
"
).
html
(
view
.
package
.
name
)
$
(
"
#sticky-package .version
"
).
html
(
view
.
package
.
version
)
$
(
"
#sticky-package .version
"
).
html
(
view
.
package
.
version
)
sticky
.
set_status
()
sticky
.
set_status
()
sticky
.
show
()
}
}
},
},
set_status
:
function
(
status_data
)
{
set_status
:
function
(
status_data
)
{
...
@@ -353,6 +355,8 @@ function Page_Distrubion(socket)
...
@@ -353,6 +355,8 @@ function Page_Distrubion(socket)
status_data
.
distribution
=
view
.
distribution
.
name
status_data
.
distribution
=
view
.
distribution
.
name
status_data
.
package
=
view
.
package
.
orig_name
status_data
.
package
=
view
.
package
.
orig_name
status_data
.
status
=
view
.
package
.
status
status_data
.
status
=
view
.
package
.
status
if
(
view
.
package
.
hasOwnProperty
(
'
success
'
))
status_data
.
success
=
view
.
package
.
success
}
}
if
(
Utils
.
check_view_package
(
view
)
if
(
Utils
.
check_view_package
(
view
)
&&
status_data
.
distribution
==
view
.
distribution
.
name
&&
status_data
.
distribution
==
view
.
distribution
.
name
...
@@ -473,21 +477,16 @@ function Page_Distrubion(socket)
...
@@ -473,21 +477,16 @@ function Page_Distrubion(socket)
populate
()
populate
()
return
return
}
}
else
if
(
!
Utils
.
check_view_package
(
old_view
)
else
if
(
!
Utils
.
check_view_package
(
old_view
)
||
||
!
Utils
.
check_view_package
(
view
)
!
Utils
.
check_view_package
(
view
)
||
||
view
.
package
.
orig_name
!=
old_view
.
package
.
orig_name
view
.
package
.
orig_name
!=
old_view
.
package
.
orig_name
)
)
{
// new package view
{
// new package view
// set status from packages
if
(
view
.
packages
[
view
.
package
.
orig_name
])
view
.
package
.
status
=
view
.
packages
[
view
.
package
.
orig_name
].
status
files
.
get
()
files
.
get
()
file
.
get
()
file
.
get
()
}
}
else
if
(
!
Utils
.
check_view_file
(
old_view
)
else
if
(
!
Utils
.
check_view_file
(
old_view
)
||
||
!
Utils
.
check_view_file
(
view
)
!
Utils
.
check_view_file
(
view
)
||
||
view
.
file
.
name
!=
old_view
.
file
.
name
view
.
file
.
name
!=
old_view
.
file
.
name
)
)
{
// new file view
{
// new file view
file
.
get
()
file
.
get
()
}
}
...
@@ -561,12 +560,12 @@ function Page_Distrubion(socket)
...
@@ -561,12 +560,12 @@ function Page_Distrubion(socket)
// reset current view
// reset current view
view
.
distribution
=
Utils
.
clone
(
new_view
.
distribution
)
view
.
distribution
=
Utils
.
clone
(
new_view
.
distribution
)
view
.
package
=
Utils
.
clone
(
new_view
.
package
)
view
.
package
=
Utils
.
clone
(
new_view
.
package
)
if
(
view
.
packages
[
view
.
package
.
orig_name
])
if
(
view
.
packages
[
new_
view
.
package
.
orig_name
])
view
.
package
.
status
=
view
.
packages
[
view
.
package
.
orig_name
].
status
view
.
package
=
Utils
.
clone
(
view
.
packages
[
new_view
.
package
.
orig_name
])
view
.
file
=
Utils
.
clone
(
new_view
.
file
)
view
.
file
=
Utils
.
clone
(
new_view
.
file
)
update
.
page
(
old_view
)
update
.
page
(
old_view
)
$
(
'
html,body
'
).
animate
({
scrollTop
:
0
},
0
);
$
(
'
html,body
'
).
animate
({
scrollTop
:
0
},
0
);
debug
(
1
,
"
changing view
"
,
"
old:
"
,
old_view
,
"
new:
"
,
new_
view
)
debug
(
1
,
"
changing view
"
,
"
old:
"
,
old_view
,
"
new:
"
,
view
)
});
});
if
(
!
__check_hash_makes_sense
())
if
(
!
__check_hash_makes_sense
())
...
...
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