nitweb: move ui-router configuration to doc-down module
[nit.git] / share / nitweb / javascripts / docdown.js
1 /*
2 * Copyright 2016 Alexandre Terrasa <alexandre@moz-code.org>.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17 (function() {
18 angular
19 .module('docdown', ['model', 'ngSanitize'])
20
21 .config(function($stateProvider, $locationProvider) {
22 $stateProvider
23 .state('docdown', {
24 url: '/docdown',
25 templateUrl: 'views/docdown.html',
26 controller: 'DocdownCtrl',
27 controllerAs: 'docdownCtrl'
28 })
29 })
30
31 .controller('DocdownCtrl', ['$sce', '$scope', '$location', 'DocDown', function($sce, $scope, $location, DocDown) {
32
33 this.updateSnippet = function() {
34 this.updateLink();
35 this.updateHtml();
36 }
37
38 this.updateLink = function() {
39 $scope.link = $location.protocol()+ '://' + $location.host() + ':' +
40 $location.port() + $location.path() + '?snippet=' +
41 encodeURIComponent(btoa($scope.markdown));
42 }
43
44 this.updateHtml = function() {
45 DocDown.postMarkdown($scope.markdown,
46 function(data) {
47 $scope.html = $sce.trustAsHtml(data);
48 }, function(err) {
49 $scope.error = err;
50 });
51 };
52
53 this.editMode = function(isEdit) {
54 $scope.edit = isEdit;
55 }
56
57 $scope.markdown = 'Type some markdown...';
58 if($location.search().snippet) {
59 $scope.markdown = atob($location.search().snippet);
60 }
61 $scope.edit = false;
62 if($location.search().edit) {
63 $scope.edit = Boolean($location.search().edit);
64 }
65
66 this.updateSnippet();
67 }])
68 })();