Implement SYWEB-121 : Display JSON when clicking messages.

JSON is displayed as a modal dialog via AngularJS' bootstrap module,
"ui.bootstrap".
This commit is contained in:
Kegan Dougal 2014-10-27 16:28:33 +00:00
parent cf1feee21d
commit da87990bd6
4 changed files with 24 additions and 12 deletions

View file

@ -15,8 +15,8 @@ limitations under the License.
*/
angular.module('RoomController', ['ngSanitize', 'matrixFilter', 'mFileInput'])
.controller('RoomController', ['$filter', '$scope', '$timeout', '$routeParams', '$location', '$rootScope', 'matrixService', 'mPresence', 'eventHandlerService', 'mFileUpload', 'matrixPhoneService', 'MatrixCall',
function($filter, $scope, $timeout, $routeParams, $location, $rootScope, matrixService, mPresence, eventHandlerService, mFileUpload, matrixPhoneService, MatrixCall) {
.controller('RoomController', ['$modal', '$filter', '$scope', '$timeout', '$routeParams', '$location', '$rootScope', 'matrixService', 'mPresence', 'eventHandlerService', 'mFileUpload', 'matrixPhoneService', 'MatrixCall',
function($modal, $filter, $scope, $timeout, $routeParams, $location, $rootScope, matrixService, mPresence, eventHandlerService, mFileUpload, matrixPhoneService, MatrixCall) {
'use strict';
var MESSAGES_PER_PAGINATION = 30;
var THUMBNAIL_SIZE = 320;
@ -982,4 +982,11 @@ angular.module('RoomController', ['ngSanitize', 'matrixFilter', 'mFileInput'])
}
};
$scope.openJson = function(content) {
console.log("Displaying modal dialog for " + JSON.stringify(content));
var modalInstance = $modal.open({
template: "<pre>" + angular.toJson(content, true) + "</pre>"
});
};
}]);