diff options
author | Stefan Wintermeyer <stefan.wintermeyer@amooma.de> | 2013-06-27 20:58:33 +0200 |
---|---|---|
committer | Stefan Wintermeyer <stefan.wintermeyer@amooma.de> | 2013-06-27 20:58:33 +0200 |
commit | aad51572a6c75a4cbd2d44804b82f634a4ddd732 (patch) | |
tree | eb1e50afb7f8667fc6d5ac4a856c5f1fd396efd7 /public/js/app.js | |
parent | 29213546a4468aa4a853dee8091bbd556f7d0f51 (diff) |
Add the possiblity to search the phone_books in the Switchboard#view
Diffstat (limited to 'public/js/app.js')
-rw-r--r-- | public/js/app.js | 36 |
1 files changed, 28 insertions, 8 deletions
diff --git a/public/js/app.js b/public/js/app.js index 733989a..5560ae7 100644 --- a/public/js/app.js +++ b/public/js/app.js @@ -34,14 +34,23 @@ App.SwitchboardController = Ember.ObjectController.extend({ transfer_attended: function(call_id, destination) { request_url = '/api/v1/calls/' + call_id + '.json'; jQuery.get(request_url, { transfer_attended: destination }); - } + }, + + searchText: null, + + searchResults: function() { + var searchText = this.get('searchText'); + if (!searchText) { return; } + return App.PhoneBookEntry.find({ query: searchText }); + }.property('searchText') }); // Models App.Store = DS.Store.extend(); DS.RESTAdapter.configure("plurals", { - switchboard_entry: "switchboard_entries" + switchboard_entry: "switchboard_entries", + phone_book_entry: "phone_book_entries" }); DS.RESTAdapter.reopen({ @@ -55,6 +64,7 @@ App.Switchboard = DS.Model.extend({ name: DS.attr('string'), show_avatars: DS.attr('boolean'), blind_transfer_activated: DS.attr('boolean'), + search_activated: DS.attr('boolean'), attended_transfer_activated: DS.attr('boolean') }); @@ -139,12 +149,6 @@ App.SipAccount = DS.Model.extend({ }); -App.PhoneNumber = DS.Model.extend({ - name: DS.attr('string'), - number: DS.attr('string'), - destination: DS.attr('string') -}); - App.Call = DS.Model.extend({ start_stamp: DS.attr('number'), callstate: DS.attr('string'), @@ -169,8 +173,24 @@ App.Call = DS.Model.extend({ }.property('b_callstate') }); +App.PhoneBookEntry = DS.Model.extend({ + first_name: DS.attr('string'), + last_name: DS.attr('string'), + organization: DS.attr('string'), + search_result_display: DS.attr('string'), + phoneNumbers: DS.hasMany('App.PhoneNumber') +}); + +App.PhoneNumber = DS.Model.extend({ + name: DS.attr('string'), + number: DS.attr('string'), + destination: DS.attr('string') +}); + App.store.adapter.serializer.configure(App.PhoneNumber, { sideloadAs: 'phone_numbers' }); +// Handlebar Helpers +// Ember.Handlebars.registerBoundHelper('avatar_img', function(value) { return new Handlebars.SafeString('<img alt="Avatar image" class="img-rounded" src="' + value + '" style="width: 100px;">'); }); |