angular-cn/public/_includes/_version-dropdown.jade

76 lines
2.8 KiB
Plaintext
Raw Normal View History

- var language = current.path[1]
- var title = "JavaScript "
- var filter = /(\.html$)/
- var replace = /(\.html$)|(^index\.html$)/
- var version = ''
- var page = ''
2015-03-03 09:34:45 -05:00
<!-- Replace _ underscores with . dots -->
2015-03-04 13:03:49 -05:00
if current.path[2]
- var version = current.path[2].replace(/\_+/gm, ".")
2015-03-03 09:34:45 -05:00
if current.path[6]
if public.docs[current.path[1]][current.path[2]][current.path[3]][current.path[4]][current.path[5]][current.path[6]]
- var page = current.path[3] + '/' + current.path[4] + '/' + current.path[5] + '/' + current.path[6] + '/'
else
- var page = current.path[3] + '/' + current.path[4] + '/' + current.path[5] + '/' + current.path[6] + '.html'
else if current.path[5]
if public.docs[current.path[1]][current.path[2]][current.path[3]][current.path[4]][current.path[5]]
- var page = current.path[3] + '/' + current.path[4] + '/' + current.path[5] + '/'
else
- var page = current.path[3] + '/' + current.path[4] + '/' + current.path[5] + '.html'
else if current.path[4]
if public.docs[current.path[1]][current.path[2]][current.path[3]][current.path[4]]
- var page = current.path[3] + '/' + current.path[4] + '/'
else
- var page = current.path[3] + '/' + current.path[4] + '.html'
else if current.path[3]
2015-04-22 12:51:13 -04:00
if public.docs[current.path[1]][current.path[2]][current.path[3]]
- var page = current.path[3] + '/'
2015-04-22 12:51:13 -04:00
else
- var page = current.path[3] + '.html'
2015-03-01 09:42:31 -05:00
2015-03-03 09:34:45 -05:00
<!-- VERSION TREE CREATOR MIXIN -->
2015-03-03 17:22:30 -05:00
mixin tree(directory, urlPrefix, name, latest)
2015-03-03 09:34:45 -05:00
ul
2015-03-03 17:22:30 -05:00
for val, semvar in directory
if semvar !== '.git' && semvar !== '_data'
- var libVersion = (semvar == "latest") ? latest : semvar.replace(/\_+/gm, ".")
li <a href="#{urlPrefix}/#{semvar}/#{page}" md-button>#{name} #{libVersion}</a>
2015-03-03 09:34:45 -05:00
<!-- BUTTON TITLE GENERATION -->
if language == 'ts'
if version == "latest"
- var title = 'Angular 2 for TypeScript'
else
- var title = 'Angular ' + version + ' for TypeScript'
2015-03-01 09:42:31 -05:00
if language == 'js'
if version == "latest"
- var title = 'Angular 2 for JavaScript'
2015-03-03 09:34:45 -05:00
else
- var title = 'Angular ' + version + ' for JavaScript'
2015-03-03 09:34:45 -05:00
2015-03-01 09:42:31 -05:00
if language == 'dart'
if version == "latest"
- var title = 'Angular 2 for Dart'
2015-03-03 09:34:45 -05:00
else
- var title = 'Angular ' + version + ' for Dart'
2015-03-01 09:42:31 -05:00
2015-03-02 22:07:47 -05:00
2015-03-03 09:34:45 -05:00
<!-- DROPDOWN BUTTON -->
nav.dropdown
button(aria-label="Select a version of Angular" md-button class="dropdown-button" ng-click="appCtrl.toggleVersionMenu($event)") #{title} <span class="icon icon-arrow-drop-down"></span>
div(class="overlay ng-hide" ng-click="appCtrl.toggleVersionMenu($event)" ng-show="appCtrl.showMenu")
2015-03-03 17:22:30 -05:00
<!-- DROPDOWN MENU -->
div(class="dropdown-menu" ng-class="appCtrl.showMenu ? 'is-visible' : ''")
mixin tree(public.docs.ts, "/docs/ts", "Angular 2 for TypeScript")
2015-03-04 14:24:00 -05:00
mixin tree(public.docs.js, "/docs/js", "Angular 2 for JavaScript")
mixin tree(public.docs.dart, "/docs/dart", "Angular 2 for Dart")