This repository was archived by the owner on May 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlaxar-markdown-display-widget.js
217 lines (183 loc) · 7.27 KB
/
laxar-markdown-display-widget.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
/**
* Copyright 2017 aixigo AG
* Released under the MIT license.
* http://laxarjs.org/license
*/
import * as ng from 'angular';
import * as $ from 'jquery';
import { object } from 'laxar';
import { errors, i18n, resources } from 'laxar-patterns';
import * as marked from 'marked';
import * as URI from 'urijs';
const MARKDOWN_DISPLAY_SCROLL = 'markdownDisplayScroll';
//////////////////////////////////////////////////////////////////////////////////////////////////////////////
Controller.$inject = [ '$scope', '$http', '$sce', 'axFlowService', 'axLog' ];
function Controller( $scope, $http, $sce, flowService, log ) {
let lastNavigateData = {};
let lastResource;
const publishError = errors.errorPublisherForFeature( $scope, 'messages', {
localizer: i18n.handlerFor( $scope ).registerLocaleFromFeature( 'i18n' ).localizer()
} );
const defaultRenderer = new marked.Renderer();
const renderer = new marked.Renderer();
renderer.image = renderImage;
renderer.link = renderLink;
$scope.eventBus.subscribe( 'didNavigate', event => {
const { data = {} } = event;
const linksChanged = Object.keys( data )
.filter( key => key !== $scope.features.markdown.parameter )
.some( key => lastNavigateData[ key ] !== data[ key ] );
lastNavigateData = object.deepClone( data );
$scope.model.anchor = lastNavigateData[ $scope.features.markdown.parameter ];
if( linksChanged ) {
loadMarkdown();
}
$scope.$emit( MARKDOWN_DISPLAY_SCROLL );
} );
$scope.model = {
html: ''
};
$scope.resources = {};
loadMarkdown();
////////////////////////////////////////////////////////////////////////////////////////////////////////
if( $scope.features.markdown.resource ) {
resources.handlerFor( $scope )
.registerResourceFromFeature( 'markdown', {
onUpdateReplace: loadMarkdown
} );
}
////////////////////////////////////////////////////////////////////////////////////////////////////////
$scope.navigate = function( id ) {
if( id !== $scope.model.anchor ) {
$scope.eventBus.publish( 'navigateRequest._self', {
target: '_self',
data: {
anchor: id
}
} );
}
else {
$scope.$emit( MARKDOWN_DISPLAY_SCROLL );
}
};
////////////////////////////////////////////////////////////////////////////////////////////////////////
function loadMarkdown() {
$scope.model.html = '';
if( $scope.resources.markdown ) {
if( $scope.features.markdown.attribute ) {
const markdown = object.path( $scope.resources.markdown, $scope.features.markdown.attribute );
if( typeof ( markdown ) === 'string' ) {
$scope.model.html = markdownToHtml( markdown );
}
else {
log.warn( 'No markdown content available' );
}
}
else {
const location = object.path( $scope.resources.markdown, '_links.markdown.href', null );
if( location ) {
loadMarkdownFromUrl( location );
}
else {
log.warn( 'No content URL available' );
}
}
}
else if( $scope.features.markdown.url ) {
loadMarkdownFromUrl( $scope.features.markdown.url );
}
}
////////////////////////////////////////////////////////////////////////////////////////////////////////
function loadMarkdownFromUrl( location ) {
lastResource = location;
$http.get( location )
.then( response => {
if( lastResource !== location ) { return; }
const data = response.data;
$scope.model.html = markdownToHtml( data );
}, response => {
publishError( 'HTTP_GET', 'i18nFailedLoadingResource', {
url: location
}, {
data: response.data,
status: response.status,
headers: response.headers
} );
} );
}
////////////////////////////////////////////////////////////////////////////////////////////////////////
function markdownToHtml( mdText ) {
return $sce.trustAsHtml( marked( mdText, {
renderer,
sanitize: true,
headerPrefix: $scope.id( '' )
} ) );
}
////////////////////////////////////////////////////////////////////////////////////////////////////////
function renderImage( href, title, text ) {
const uri = new URI( href );
if( uri.is( 'absolute' ) || uri.scheme() !== '' ) {
return defaultRenderer.image( href, title, text );
}
const markdownSourceUrl = markdownUrl();
if( !markdownSourceUrl ) {
return defaultRenderer.image( uri.unicode(), title, text );
}
return defaultRenderer.image( uri.unicode().absoluteTo( markdownSourceUrl ), title, text );
}
////////////////////////////////////////////////////////////////////////////////////////////////////////
function renderLink( href, title, text ) {
const uri = new URI( href );
if( uri.is( 'absolute' ) || uri.scheme() !== '' ) {
return defaultRenderer.link( href, title, text );
}
if( href.charAt( 0 ) === '#' && uri.fragment() !== '' ) {
const placeParameters = object.deepClone( lastNavigateData );
placeParameters[ $scope.features.markdown.parameter ] = $scope.id( uri.fragment() );
const anchorHref = flowService.constructAbsoluteUrl( '_self', placeParameters );
return `<a href="${anchorHref}">${text}</a>`;
}
const markdownSourceUrl = markdownUrl();
if( !markdownSourceUrl ) {
return defaultRenderer.link( uri.unicode(), title, text );
}
return defaultRenderer.link( uri.unicode().absoluteTo( markdownSourceUrl ), title, text );
}
////////////////////////////////////////////////////////////////////////////////////////////////////////
function markdownUrl(){
return object.path(
$scope.resources.markdown,
'_links.markdown.href',
$scope.features.markdown.url
);
}
}
//////////////////////////////////////////////////////////////////////////////////////////////////////////////
export const name = ng.module( 'axMarkdownDisplayWidget', [] )
.controller( 'AxMarkdownDisplayWidgetController', Controller )
.directive( 'axMarkdownDisplayHtml', [ '$compile', '$sce', function( $compile, $sce ) {
return {
restrict: 'A',
replace: true,
link( scope, element, attrs ) {
scope.$watch( attrs.axMarkdownDisplayHtml, html => {
element.html( $sce.getTrustedHtml( html ) );
$compile( element.contents() )( scope );
scrollToAnchor( scope.model.anchor );
} );
scope.$on( MARKDOWN_DISPLAY_SCROLL, () => {
scrollToAnchor( scope.model.anchor );
} );
scope.$watch( 'model.anchor', id => {
scrollToAnchor( id );
} );
function scrollToAnchor( id ) {
if( !id ) { return; }
const offset = $( `#${id}` ).offset();
if( offset ) {
window.scrollTo( offset.left, offset.top );
}
}
}
};
} ] ).name;