Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.core
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Roque
slapos.core
Commits
aad0686b
Commit
aad0686b
authored
Jul 19, 2012
by
Thomas Lechauve
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Instance page have stop/start/destroy button
parent
0d0d73ad
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
95 additions
and
23 deletions
+95
-23
vifib/js/pages.js
vifib/js/pages.js
+15
-18
vifib/js/pages.mobile.js
vifib/js/pages.mobile.js
+55
-0
vifib/js/panels.js
vifib/js/panels.js
+25
-5
No files found.
vifib/js/pages.js
View file @
aad0686b
...
@@ -59,28 +59,22 @@ $.vifib.softwareList = function (context) {
...
@@ -59,28 +59,22 @@ $.vifib.softwareList = function (context) {
list
.
append
(
row
);
list
.
append
(
row
);
});
});
list
.
listview
(
'
refresh
'
);
list
.
listview
(
'
refresh
'
);
}
},
statusCode
:
$
.
extend
(
false
,
$
.
vifib
.
statuscode
,
{})
});
});
});
});
}
}
$
.
vifib
.
instanceList
=
function
(
context
)
{
$
.
vifib
.
instanceList
=
function
(
context
)
{
var
list
,
var
list
;
countRequest
=
0
;
return
context
.
each
(
function
()
{
return
context
.
each
(
function
()
{
list
=
$
(
this
).
find
(
'
ul
'
);
list
=
$
(
this
).
find
(
'
ul
'
);
$
(
this
).
slapos
(
'
instanceList
'
,
{
$
(
this
).
slapos
(
'
instanceList
'
,
{
success
:
function
(
response
)
{
success
:
function
(
response
)
{
$
(
this
).
ajaxSend
(
function
()
{
++
countRequest
;
});
$
.
each
(
response
.
list
,
function
(
i
,
e
)
{
$
(
this
).
ajaxComplete
(
function
()
{
$
.
vifib
.
fillRowInstance
(
list
,
$
(
'
<li></li>
'
),
e
);
if
(
countRequest
--
==
0
)
{
console
.
log
(
"
the end
"
)
list
.
listview
(
'
refresh
'
);
}
else
{
console
.
log
(
countRequest
)
}
});
});
$
.
vifib
.
fillRowInstance
(
list
,
$
(
'
<li></li>
'
),
''
);
},
},
statusCode
:
$
.
extend
(
false
,
$
.
vifib
.
statuscode
,
{})
});
});
});
});
}
}
...
@@ -91,9 +85,9 @@ $.vifib.fillRowInstance = function (list, row, instid) {
...
@@ -91,9 +85,9 @@ $.vifib.fillRowInstance = function (list, row, instid) {
$
(
this
).
html
(
Mustache
.
render
(
$
.
vifib
.
panel
.
rowinstance
,
response
));
$
(
this
).
html
(
Mustache
.
render
(
$
.
vifib
.
panel
.
rowinstance
,
response
));
},
},
complete
:
function
(
jqxhr
,
textstatus
)
{
complete
:
function
(
jqxhr
,
textstatus
)
{
console
.
log
(
"
complete
"
)
list
.
append
(
$
(
this
)).
listview
(
'
refresh
'
);
list
.
append
(
$
(
this
));
},
}
statusCode
:
$
.
extend
(
false
,
$
.
vifib
.
statuscode
,
{})
});
});
}
}
$
.
vifib
.
computerList
=
function
(
context
)
{
$
.
vifib
.
computerList
=
function
(
context
)
{
...
@@ -107,7 +101,8 @@ $.vifib.computerList = function (context) {
...
@@ -107,7 +101,8 @@ $.vifib.computerList = function (context) {
list
.
append
(
row
);
list
.
append
(
row
);
});
});
list
.
listview
(
'
refresh
'
);
list
.
listview
(
'
refresh
'
);
}
},
statusCode
:
$
.
extend
(
false
,
$
.
vifib
.
statuscode
,
{})
});
});
});
});
}
}
...
@@ -117,7 +112,8 @@ $.vifib.fillRowSoftware = function (context, softid) {
...
@@ -117,7 +112,8 @@ $.vifib.fillRowSoftware = function (context, softid) {
success
:
function
(
response
)
{
success
:
function
(
response
)
{
$
.
extend
(
response
,
{
softurl
:
'
#/library/software/id
'
+
softid
});
$
.
extend
(
response
,
{
softurl
:
'
#/library/software/id
'
+
softid
});
$
(
this
).
html
(
Mustache
.
render
(
$
.
vifib
.
panel
.
rowsoftware
,
response
));
$
(
this
).
html
(
Mustache
.
render
(
$
.
vifib
.
panel
.
rowsoftware
,
response
));
}
},
statusCode
:
$
.
extend
(
false
,
$
.
vifib
.
statuscode
,
{})
});
});
})
})
}
}
...
@@ -127,7 +123,8 @@ $.vifib.fillRowComputer = function (context, compid) {
...
@@ -127,7 +123,8 @@ $.vifib.fillRowComputer = function (context, compid) {
success
:
function
(
response
)
{
success
:
function
(
response
)
{
$
.
extend
(
response
,
{
compurl
:
'
#/dashboard/computer/id/
'
+
compid
});
$
.
extend
(
response
,
{
compurl
:
'
#/dashboard/computer/id/
'
+
compid
});
$
(
this
).
html
(
Mustache
.
render
(
$
.
vifib
.
panel
.
rowcomputer
,
response
));
$
(
this
).
html
(
Mustache
.
render
(
$
.
vifib
.
panel
.
rowcomputer
,
response
));
}
},
statusCode
:
$
.
extend
(
false
,
$
.
vifib
.
statuscode
,
{})
});
});
})
})
}
}
vifib/js/pages.mobile.js
View file @
aad0686b
...
@@ -88,6 +88,15 @@ $.vifib.mobile = {
...
@@ -88,6 +88,15 @@ $.vifib.mobile = {
$
(
'
body
'
)
$
(
'
body
'
)
.
route
(
'
add
'
,
'
/dashboard/instance/id<path:instid>
'
,
1
)
.
route
(
'
add
'
,
'
/dashboard/instance/id<path:instid>
'
,
1
)
.
done
(
$
.
vifib
.
mobile
.
dashboard
.
instance
);
.
done
(
$
.
vifib
.
mobile
.
dashboard
.
instance
);
$
(
'
body
'
)
.
route
(
'
add
'
,
'
/dashboard/instance/start<path:instid>
'
,
1
)
.
done
(
$
.
vifib
.
mobile
.
dashboard
.
instancestart
);
$
(
'
body
'
)
.
route
(
'
add
'
,
'
/dashboard/instance/stop<path:instid>
'
,
1
)
.
done
(
$
.
vifib
.
mobile
.
dashboard
.
instancestop
);
$
(
'
body
'
)
.
route
(
'
add
'
,
'
/dashboard/instance/destroy<path:instid>
'
,
1
)
.
done
(
$
.
vifib
.
mobile
.
dashboard
.
instancedestroy
);
$
(
'
body
'
)
$
(
'
body
'
)
.
route
(
'
add
'
,
'
/dashboard/computer/list
'
,
1
)
.
route
(
'
add
'
,
'
/dashboard/computer/list
'
,
1
)
.
done
(
$
.
vifib
.
mobile
.
dashboard
.
computerlist
);
.
done
(
$
.
vifib
.
mobile
.
dashboard
.
computerlist
);
...
@@ -150,12 +159,58 @@ $.vifib.mobile = {
...
@@ -150,12 +159,58 @@ $.vifib.mobile = {
var
page
;
var
page
;
$
(
this
).
slapos
(
'
instanceInfo
'
,
instid
,
{
$
(
this
).
slapos
(
'
instanceInfo
'
,
instid
,
{
success
:
function
(
response
)
{
success
:
function
(
response
)
{
response
[
response
.
status
]
=
true
;
response
.
stop_url
=
'
#/dashboard/instance/stop
'
+
instid
;
response
.
start_url
=
'
#/dashboard/instance/start
'
+
instid
;
response
.
destroy_url
=
'
#/dashboard/instance/destroy
'
+
instid
;
page
=
$
.
vifib
.
onepanel
(
$
.
vifib
.
panel
.
instance
,
response
);
page
=
$
.
vifib
.
onepanel
(
$
.
vifib
.
panel
.
instance
,
response
);
page
.
prepend
(
Mustache
.
render
(
$
.
vifib
.
header
.
default
,
{
title
:
'
Instance
'
}));
page
.
prepend
(
Mustache
.
render
(
$
.
vifib
.
header
.
default
,
{
title
:
'
Instance
'
}));
$
.
vifib
.
changepage
(
$
(
page
));
$
.
vifib
.
changepage
(
$
(
page
));
}
}
});
});
},
},
instancestart
:
function
(
instid
)
{
$
(
this
).
slapos
(
'
instanceInfo
'
,
instid
,
{
success
:
function
(
response
)
{
if
(
response
.
status
===
'
stop_requested
'
)
{
response
.
status
=
'
started
'
;
$
(
this
).
slapos
(
'
instanceRequest
'
,
{
data
:
response
,
success
:
function
(
response
)
{
$
.
url
.
redirect
(
'
/dashboard/instance/id
'
+
instid
);
},
statusCode
:
$
.
extend
(
false
,
$
.
vifib
.
statuscode
,
{})
})
}
},
statusCode
:
$
.
extend
(
false
,
$
.
vifib
.
statuscode
,
{})
});
},
instancestop
:
function
(
instid
)
{
$
(
this
).
slapos
(
'
instanceInfo
'
,
instid
,
{
success
:
function
(
response
)
{
if
(
response
.
status
===
'
start_requested
'
)
{
response
.
status
=
'
stopped
'
;
$
(
this
).
slapos
(
'
instanceRequest
'
,
{
data
:
response
,
success
:
function
(
response
)
{
$
.
url
.
redirect
(
'
/dashboard/instance/id
'
+
instid
);
},
statusCode
:
$
.
extend
(
false
,
$
.
vifib
.
statuscode
,
{})
})
}
},
statusCode
:
$
.
extend
(
false
,
$
.
vifib
.
statuscode
,
{})
});
},
instancedestroy
:
function
(
instid
)
{
$
(
this
).
slapos
(
'
instanceDelete
'
,
instid
,
{
success
:
function
(
response
)
{
$
.
url
.
redirect
(
'
/dashboard/instance/id
'
+
instid
);
},
statusCode
:
$
.
extend
(
false
,
$
.
vifib
.
statuscode
,
{})
})
},
computerlist
:
function
(
route
)
{
computerlist
:
function
(
route
)
{
var
page
=
$
.
vifib
.
onepanel
(
$
.
vifib
.
panel
.
allcomputer
);
var
page
=
$
.
vifib
.
onepanel
(
$
.
vifib
.
panel
.
allcomputer
);
page
.
prepend
(
Mustache
.
render
(
$
.
vifib
.
header
.
default
,
{
title
:
'
Computers
'
}));
page
.
prepend
(
Mustache
.
render
(
$
.
vifib
.
header
.
default
,
{
title
:
'
Computers
'
}));
...
...
vifib/js/panels.js
View file @
aad0686b
...
@@ -130,10 +130,30 @@ $.vifib.panel = {
...
@@ -130,10 +130,30 @@ $.vifib.panel = {
'
</article>
'
,
'
</article>
'
,
instance
:
instance
:
'
<article>
'
+
'
<article>
'
+
'
{{# image_url }}
'
+
'
<center><h3>{{ title }}</h3></center>
'
+
'
<img src="{{ image_url }}">
'
+
'
<ul data-role="listview">
'
+
'
{{/ image_url }}
'
+
'
<li class="ui-li-static">
'
+
'
<h2>{{ instance_id }}</h2>
'
+
'
<p class="ui-li-desc"><i>Software release</i></p>
'
+
'
<h3 class="ui-li-heading"><a href="{{ software_release }}">{{ software_release }}</a></h3>
'
+
'
</li>
'
+
'
<li class="ui-li-static">
'
+
'
<p class="ui-li-desc"><i>Software type</i></p>
'
+
'
<h3 class="ui-li-heading">{{ software_type }}</h3>
'
+
'
</li>
'
+
'
<li class="ui-li-static">
'
+
'
<p class="ui-li-desc"><i>Status</i></p>
'
+
'
<h3 class="ui-li-heading">{{ status }}</h3>
'
+
'
</li>
'
+
'
</ul>
'
+
'
{{# start_requested }}
'
+
'
<a data-role="button" href="{{ stop_url }}">Stop</a>
'
+
'
<a data-role="button" href="{{ destroy_url }}">Destroy</a>
'
+
'
{{/ start_requested }}
'
+
'
{{# stop_requested }}
'
+
'
<a data-role="button" href="{{ start_url }}">Start</a>
'
+
'
<a data-role="button" href="{{ destroy_url }}">Destroy</a>
'
+
'
{{/ stop_requested }}
'
+
''
+
'
</article>
'
,
'
</article>
'
,
instancelist
:
instancelist
:
'
<article>
'
+
'
<article>
'
+
...
@@ -142,7 +162,7 @@ $.vifib.panel = {
...
@@ -142,7 +162,7 @@ $.vifib.panel = {
'
</ul>
'
+
'
</ul>
'
+
'
</article>
'
,
'
</article>
'
,
rowinstance
:
rowinstance
:
'
<a href="{{ insturl }}">{{
title
}}</a>
'
,
'
<a href="{{ insturl }}">{{
instance_id
}}</a>
'
,
computer
:
computer
:
'
<article>
'
+
'
<article>
'
+
'
<h2>{{ computer_id }}</h2>
'
+
'
<h2>{{ computer_id }}</h2>
'
+
...
...
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