21
21
*
22
22
* <live-example embedded plnkr="minimal"></live-example>
23
23
* // ~/resources/live-examples/{chapter}/ts/minimal.eplnkr.html
24
+ *
25
+ * <live-example api="core/animation/ts/dsl"></live-example>
26
+ * // ~/resources/api-live-examples/core/animation/ts/dsl/plnkr.html
27
+ *
28
+ * <live-example api="core/animation/ts/dsl" embedded></live-example>
29
+ * // ~/resources/api-live-examples/core/animation/ts/dsl/eplnkr.html
30
+ *
31
+ * <live-example api="core/animation/ts/dsl" noimg></live-example>
32
+ * // ~/resources/api-live-examples/core/animation/ts/dsl/plnkr.html
24
33
*/
25
34
angularIO . directive ( 'liveExample' , [ '$location' , function ( $location ) {
26
35
@@ -30,7 +39,18 @@ angularIO.directive('liveExample', ['$location', function ($location) {
30
39
return '<a' + attr + '>' + text + '</a>' ;
31
40
}
32
41
33
- function span ( text ) { return '<span>' + text + '</span>' ; }
42
+ function embeddedNoImgTemplate ( src ) {
43
+ return '<div ng-if="embeddedShow">' +
44
+ '<div class="api-live-example" ng-click="toggleEmbedded()" ng-if="embeddedShow">' +
45
+ '<img src="/resources/images/icons/ic_keyboard_arrow_down_black_24px.svg"><span>Live example</span>' +
46
+ '</div>' +
47
+ '<iframe frameborder="0" width="100%" height="100%" src="' + src + '"></iframe>' +
48
+ '</div>' +
49
+ '<div class="api-live-example" ng-click="toggleEmbedded()" ng-if="!embeddedShow">' +
50
+ '<img src="/resources/images/icons/ic_keyboard_arrow_right_black_24px.svg"><span>Live example</span>' +
51
+ '</div>'
52
+
53
+ }
34
54
35
55
function embeddedTemplate ( src , img ) {
36
56
return '<div ng-if="embeddedShow">' +
@@ -39,6 +59,24 @@ angularIO.directive('liveExample', ['$location', function ($location) {
39
59
'<img ng-click="toggleEmbedded()" ng-if="!embeddedShow" src="' + img + '" alt="plunker">' ;
40
60
}
41
61
62
+ function getHref ( langOrApi , example , plnkr ) {
63
+ var href ;
64
+ switch ( langOrApi ) {
65
+ case 'ts' :
66
+ case 'js' :
67
+ href = '/resources/live-examples/' + example + '/' + langOrApi + '/' + plnkr + '.html' ;
68
+ break ;
69
+ case 'dart' :
70
+ href = 'http://angular-examples.github.io/' + example ;
71
+ break ;
72
+ case 'api' :
73
+ href = '/resources/api-live-examples/' + example + '/' + plnkr + '.html' ;
74
+ }
75
+ return href ;
76
+ }
77
+
78
+ function span ( text ) { return '<span>' + text + '</span>' ; }
79
+
42
80
return {
43
81
restrict : 'E' ,
44
82
scope : true ,
@@ -47,35 +85,41 @@ angularIO.directive('liveExample', ['$location', function ($location) {
47
85
var ex = attrs . name || NgIoUtil . getExampleName ( $location ) ;
48
86
var embedded = attrs . hasOwnProperty ( 'embedded' ) ;
49
87
var plnkr = embedded ? 'eplnkr' : 'plnkr' ;
50
- var href , template ;
88
+ var href , template , exLang ;
51
89
var imageBase = '/resources/images/' ;
52
90
var defaultImg = 'plunker/placeholder.png' ;
53
-
91
+ var noImg = angular . isDefined ( attrs . noimg ) ;
92
+ var isApi = ! ! attrs . api ;
93
+ console . log ( noImg ) ;
54
94
if ( attrs . plnkr ) {
55
95
plnkr = attrs . plnkr + '.' + plnkr ;
56
96
}
57
97
98
+ if ( isApi ) {
99
+ ex = attrs . api ;
100
+ exLang = 'api' ;
101
+ } else {
102
+ exLang = isForDart ? 'dart' : isForJs ? 'js' : 'ts' ;
103
+ }
104
+
58
105
var isForDart = attrs . lang === 'dart' || NgIoUtil . isDoc ( $location , 'dart' ) ;
59
106
var isForJs = attrs . lang === 'js' || NgIoUtil . isDoc ( $location , 'js' ) ;
60
- var exLang = isForDart ? 'dart' : isForJs ? 'js' : 'ts' ;
61
107
62
108
if ( embedded && ! isForDart ) {
63
- href = '/resources/live-examples/' + ex + '/' + exLang + '/' + plnkr + '.html' ;
109
+ href = getHref ( exLang , ex , plnkr ) ;
64
110
img = imageBase + ( attrs . img || defaultImg ) ;
65
- template = embeddedTemplate ( href , img ) ;
111
+ template = noImg ? embeddedNoImgTemplate ( href ) : embeddedTemplate ( href , img ) ;
66
112
} else {
67
- var href = isForDart
68
- ? 'http://angular-examples.github.io/' + ex
69
- : '/resources/live-examples/' + ex + '/' + exLang + '/' + plnkr + '.html'
113
+ href = getHref ( exLang , ex , plnkr ) ;
70
114
71
115
// Link to live example.
72
- var template = a ( text , { href : href , target : '_blank' } ) ;
116
+ template = a ( text , { href : href , target : '_blank' } ) ;
73
117
74
118
// The hosted example and sources are in different locations for Dart.
75
119
// Also show link to sources for Dart, unless noSource is specified.
76
120
if ( isForDart && ! attrs . hasOwnProperty ( 'nosource' ) ) {
77
121
var srcText = attrs . srcText || 'view source' ;
78
- var srcHref = 'http://github.com/angular-examples/' + ex ;
122
+ href = getHref ( 'dart' , ex ) ;
79
123
template = span ( template + ' (' + a ( srcText , { href : srcHref , target : '_blank' } ) + ')' ) ;
80
124
}
81
125
}
0 commit comments