mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-04-06 04:45:30 +00:00
add status on main page and add showFiles
This commit is contained in:
parent
5f0b5770b6
commit
023203b809
@ -35,6 +35,9 @@ var App = Ember.Application.create({
|
|||||||
rootElement: $('#container'),
|
rootElement: $('#container'),
|
||||||
total: 0,
|
total: 0,
|
||||||
ready: function(){
|
ready: function(){
|
||||||
|
$.get("/txtapi/status", function(data){
|
||||||
|
$('#serverStatus').html("<pre>" + data + "</pre>");
|
||||||
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -95,6 +98,12 @@ App.ShowCodecsRoute = Ember.Route.extend({
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
App.ShowFilesRoute = Ember.Route.extend({
|
||||||
|
setupController: function(controller) {
|
||||||
|
App.showCodecsController.load();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
App.UsersRoute = Ember.Route.extend({
|
App.UsersRoute = Ember.Route.extend({
|
||||||
setupController: function(controller) {
|
setupController: function(controller) {
|
||||||
App.usersController.load();
|
App.usersController.load();
|
||||||
@ -109,6 +118,7 @@ App.Router.map(function(){
|
|||||||
this.route("showCodecs");
|
this.route("showCodecs");
|
||||||
this.route("showFiles");
|
this.route("showFiles");
|
||||||
this.route("showAPIs");
|
this.route("showAPIs");
|
||||||
|
this.route("showStatus");
|
||||||
this.route("show");
|
this.route("show");
|
||||||
this.route("users");
|
this.route("users");
|
||||||
this.route("about", { path: "/about" });
|
this.route("about", { path: "/about" });
|
||||||
@ -313,6 +323,24 @@ App.showCodecsController = Ember.ArrayController.create({
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
App.showFilesController = Ember.ArrayController.create({
|
||||||
|
content: [],
|
||||||
|
init: function(){
|
||||||
|
},
|
||||||
|
load: function() {
|
||||||
|
var me = this;
|
||||||
|
$.getJSON("/txtapi/show?files%20as%20json", function(data){
|
||||||
|
// var channels = JSON.parse(data);
|
||||||
|
me.set('total', data.row_count);
|
||||||
|
me.content.clear();
|
||||||
|
if (data.row_count == 0) return;
|
||||||
|
|
||||||
|
me.pushObjects(data.rows);
|
||||||
|
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
App.usersController = Ember.ArrayController.create({
|
App.usersController = Ember.ArrayController.create({
|
||||||
content: [],
|
content: [],
|
||||||
init: function(){
|
init: function(){
|
||||||
|
@ -108,8 +108,14 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script type="text/x-handlebars" data-template-name="index">
|
<script type="text/x-handlebars" data-template-name="index">
|
||||||
<h1>Welcome to FreeSWITCH Portal</h1>
|
<h1>Welcome to FreeSWITCH !</h1>
|
||||||
Welcome
|
---- The World's First Cross-Platform Scalable FREE Multi-Protocol Soft Switch
|
||||||
|
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
<div id="serverStatus"></div>
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<script type="text/x-handlebars" data-template-name="showApplications">
|
<script type="text/x-handlebars" data-template-name="showApplications">
|
||||||
@ -175,7 +181,23 @@
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<script type="text/x-handlebars" data-template-name="showFiles">
|
<script type="text/x-handlebars" data-template-name="showFiles">
|
||||||
Unimplemented
|
<h1>Files</h1>
|
||||||
|
<div>
|
||||||
|
<table class="table">
|
||||||
|
<tr>
|
||||||
|
<th>Type</th>
|
||||||
|
<th>Name</th>
|
||||||
|
<th>iKey</th>
|
||||||
|
</tr>
|
||||||
|
{{#each App.showCodecsController.content}}
|
||||||
|
<tr>
|
||||||
|
<td>{{ type }}</td>
|
||||||
|
<td>{{ name }}</td>
|
||||||
|
<td>{{ ikey }}</td>
|
||||||
|
</tr>
|
||||||
|
{{/each}}
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<script type="text/x-handlebars" data-template-name="showAPIs">
|
<script type="text/x-handlebars" data-template-name="showAPIs">
|
||||||
@ -189,6 +211,11 @@
|
|||||||
{{#linkTo "showCodecs"}} Codecs {{/linkTo}} |
|
{{#linkTo "showCodecs"}} Codecs {{/linkTo}} |
|
||||||
{{#linkTo "showFiles"}} Files {{/linkTo}} |
|
{{#linkTo "showFiles"}} Files {{/linkTo}} |
|
||||||
{{#linkTo "showAPIs"}} APIs {{/linkTo}}
|
{{#linkTo "showAPIs"}} APIs {{/linkTo}}
|
||||||
|
|
||||||
|
<br>
|
||||||
|
|
||||||
|
{{#linkTo "showStatus"}} Status {{/linkTo}}
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<script type="text/x-handlebars" data-template-name="about">
|
<script type="text/x-handlebars" data-template-name="about">
|
||||||
|
Loading…
x
Reference in New Issue
Block a user