nitweb: move entity state configuration to entity 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 .controller('DocdownCtrl', ['$sce', '$scope', '$location', 'DocDown', function($sce, $scope, $location, DocDown) {
22
23 this.updateSnippet = function() {
24 this.updateLink();
25 this.updateHtml();
26 }
27
28 this.updateLink = function() {
29 $scope.link = $location.protocol()+ '://' + $location.host() + ':' +
30 $location.port() + $location.path() + '?snippet=' +
31 encodeURIComponent(btoa($scope.markdown));
32 }
33
34 this.updateHtml = function() {
35 DocDown.postMarkdown($scope.markdown,
36 function(data) {
37 $scope.html = $sce.trustAsHtml(data);
38 }, function(err) {
39 $scope.error = err;
40 });
41 };
42
43 this.editMode = function(isEdit) {
44 $scope.edit = isEdit;
45 }
46
47 $scope.markdown = 'Type some markdown...';
48 if($location.search().snippet) {
49 $scope.markdown = atob($location.search().snippet);
50 }
51 $scope.edit = false;
52 if($location.search().edit) {
53 $scope.edit = Boolean($location.search().edit);
54 }
55
56 this.updateSnippet();
57 }])
58 })();