nitweb: move doc-down model 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', ['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 .factory('DocDown', [ '$http', function($http) {
32 return {
33 postMarkdown: function(md, cb, cbErr) {
34 $http.post('/api/docdown', md)
35 .success(cb)
36 .error(cbErr);
37 }
38 }
39 }])
40
41 .controller('DocdownCtrl', ['$sce', '$scope', '$location', 'DocDown', function($sce, $scope, $location, DocDown) {
42
43 this.updateSnippet = function() {
44 this.updateLink();
45 this.updateHtml();
46 }
47
48 this.updateLink = function() {
49 $scope.link = $location.protocol()+ '://' + $location.host() + ':' +
50 $location.port() + $location.path() + '?snippet=' +
51 encodeURIComponent(btoa($scope.markdown));
52 }
53
54 this.updateHtml = function() {
55 DocDown.postMarkdown($scope.markdown,
56 function(data) {
57 $scope.html = $sce.trustAsHtml(data);
58 }, function(err) {
59 $scope.error = err;
60 });
61 };
62
63 this.editMode = function(isEdit) {
64 $scope.edit = isEdit;
65 }
66
67 $scope.markdown = 'Type some markdown...';
68 if($location.search().snippet) {
69 $scope.markdown = atob($location.search().snippet);
70 }
71 $scope.edit = false;
72 if($location.search().edit) {
73 $scope.edit = Boolean($location.search().edit);
74 }
75
76 this.updateSnippet();
77 }])
78 })();