Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,7 @@ The text of each license is also included at licenses/LICENSE-[project]-[version
(The MIT License) Simple line icons v1.0.0 (http://thesabbir.github.io/simple-line-icons/) - https://github.com/thesabbir/simple-line-icons/tree/1.0.0
(The MIT License) jekyll-bootstrap 0.3.0 (https://github.com/plusjade/jekyll-bootstrap) - https://github.com/plusjade/jekyll-bootstrap
(The MIT License) jekyll 1.3.0 (http://jekyllrb.com/) - https://github.com/jekyll/jekyll/blob/v1.3.0/LICENSE
(The MIT License) ngInfiniteScroll 1.3.4 (https://github.com/sroze/ngInfiniteScroll) - https://github.com/sroze/ngInfiniteScroll/blob/master/LICENSE

========================================================================
MIT-style licenses
Expand Down
22 changes: 22 additions & 0 deletions licenses/LICENSE-ngInfiniteScroll-1.3.4
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
Copyright (c) 2012 Michelle Tilley

Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
3 changes: 2 additions & 1 deletion zeppelin-web/bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@
"select2": "^4.0.3",
"MathJax": "2.7.0",
"ngclipboard": "^1.1.1",
"jsdiff": "3.3.0"
"jsdiff": "3.3.0",
"ngInfiniteScroll": "^1.3.4"
},
"devDependencies": {
"angular-mocks": "1.5.7"
Expand Down
1 change: 1 addition & 0 deletions zeppelin-web/karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ module.exports = function(config) {
'bower_components/clipboard/dist/clipboard.js',
'bower_components/ngclipboard/dist/ngclipboard.js',
'bower_components/jsdiff/diff.js',
'bower_components/ngInfiniteScroll/build/ng-infinite-scroll.js',
'bower_components/angular-mocks/angular-mocks.js',
// endbower

Expand Down
1 change: 1 addition & 0 deletions zeppelin-web/src/app/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ const requiredModules = [
'ngResource',
'ngclipboard',
'angularViewportWatch',
'infinite-scroll',
'ui.grid',
'ui.grid.exporter',
'ui.grid.edit', 'ui.grid.rowEdit',
Expand Down
5 changes: 5 additions & 0 deletions zeppelin-web/src/app/home/home.controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ function HomeCtrl ($scope, noteListFactory, websocketMsgSrv, $rootScope, arrayOr
vm.websocketMsgSrv = websocketMsgSrv
vm.arrayOrderingSrv = arrayOrderingSrv
vm.noteActionService = noteActionService
vm.numberOfNotesDisplayed = window.innerHeight / 20

vm.notebookHome = false
vm.noteCustomHome = true
Expand Down Expand Up @@ -85,6 +86,10 @@ function HomeCtrl ($scope, noteListFactory, websocketMsgSrv, $rootScope, arrayOr
}
})

$scope.loadMoreNotes = function () {
vm.numberOfNotesDisplayed += 10
}

$scope.renameNote = function (nodeId, nodePath) {
vm.noteActionService.renameNote(nodeId, nodePath)
}
Expand Down
10 changes: 5 additions & 5 deletions zeppelin-web/src/app/home/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -40,16 +40,16 @@ <h5 ng-controller="NoteCreateCtrl as noteCreateCtrl"><a href="" data-toggle="mod
<i style="font-size: 15px;" class="icon-notebook"></i> Create new note</a></h5>
<ul id="notebook-names">
<li class="filter-names" ng-include="'components/note-name-filter/note-name-filter.html'"></li>
<li ng-repeat="note in home.notes.list | filter:query.q | orderBy:node:false:home.arrayOrderingSrv.noteComparator track by $index">
<li ng-repeat="note in home.notes.list | filter:query.q track by $index">
<i style="font-size: 10px;" class="icon-doc"></i>
<a style="text-decoration: none;" href="#/notebook/{{note.id}}">{{noteName(note)}}</a>
</li>
<div ng-if="!query.q || query.q === ''">
<li ng-repeat="node in home.notes.root.children | orderBy:node:false:home.arrayOrderingSrv.noteComparator track by $index"
<div ng-if="!query.q || query.q === ''" infinite-scroll="loadMoreNotes()">
<li ng-repeat="node in home.notes.root.children | limitTo:home.numberOfNotesDisplayed track by $index"
ng-include src="'app/home/notebook-template.html'" ng-class="note_folder_renderer"></li>
</div>
<div ng-if="query.q">
<li ng-repeat="node in home.notes.flatList| filter:query.q | orderBy:home.arrayOrderingSrv.noteFlatListOrdering track by $index"
<div ng-if="query.q" infinite-scroll="loadMoreNotes()">
<li ng-repeat="node in home.notes.flatList | filter:query.q | orderBy:home.arrayOrderingSrv.noteFlatListOrdering | limitTo:home.numberOfNotesDisplayed track by $index"
ng-include src="'app/home/notebook-template.html'" ng-class="note_folder_renderer"></li>
</div>
</ul>
Expand Down
8 changes: 4 additions & 4 deletions zeppelin-web/src/app/home/notebook.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ <h5 ng-controller="NoteCreateCtrl as noteCreateCtrl"><a href="" data-toggle="mod
<i style="font-size: 15px;" class="icon-notebook"></i> Create new note</a></h5>
<ul id="notebook-names">
<li class="filter-names" ng-include="'components/note-name-filter/note-name-filter.html'"></li>
<div ng-if="!query.q || query.q === ''">
<li ng-repeat="node in home.notes.root.children | orderBy:node:false:home.arrayOrderingSrv.noteComparator track by $index"
<div ng-if="!query.q || query.q === ''" infinite-scroll="loadMoreNotes()">
<li ng-repeat="node in home.notes.root.children | limitTo:home.numberOfNotesDisplayed track by $index"
ng-include src="'app/home/notebook-template.html'" ng-class="note_folder_renderer"></li>
</div>
<div ng-if="query.q">
<li ng-repeat="node in home.notes.flatList | filter:query.q | orderBy:home.arrayOrderingSrv.noteFlatListOrdering track by $index"
<div ng-if="query.q" infinite-scroll="loadMoreNotes()">
<li ng-repeat="node in home.notes.flatList | filter:query.q | orderBy:home.arrayOrderingSrv.noteFlatListOrdering | limitTo:home.numberOfNotesDisplayed track by $index"
ng-include src="'app/home/notebook-template.html'" ng-class="note_folder_renderer"></li>
</div>
</ul>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ function ArrayOrderingService(TRASH_FOLDER_ID) {
}

this.noteComparator = function (v1, v2) {
let note1 = v1.value
let note2 = v2.value
let note1 = v1.value || v1
let note2 = v2.value || v2

if (note1.id === TRASH_FOLDER_ID) {
return 1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ function expandCollapseDirective() {
restrict: 'EA',
link: function (scope, element, attrs) {
angular.element(element).click(function (event) {
if (angular.element(element).find('.expandable:visible').length > 1) {
angular.element(element).find('.expandable:visible').slideUp('slow')
if (angular.element(element).next('.expandable:visible').length > 1) {
angular.element(element).next('.expandable:visible').slideUp('slow')
angular.element(element).find('i.fa-folder-open').toggleClass('fa-folder fa-folder-open')
} else {
angular.element(element).find('.expandable').first().slideToggle('200', function () {
angular.element(element).next('.expandable').first().slideToggle('200', function () {
// do not toggle trash folder
if (angular.element(element).find('.fa-trash-o').length === 0) {
angular.element(element).find('i').first().toggleClass('fa-folder fa-folder-open')
Expand Down
16 changes: 8 additions & 8 deletions zeppelin-web/src/components/navbar/navbar-note-list-elem.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,13 @@
</div>
</a>
</div>
<div class="expandable" style="color: black;">
<ul>
<li ng-repeat="node in node.children | orderBy:node:false:navbar.arrayOrderingSrv.noteComparator track by $index"
ng-class="{'active' : navbar.isActive(node.id)}"
ng-include="'components/navbar/navbar-note-list-elem.html'">
</li>
</ul>
</div>
</expand-collapse>
<div class="expandable" style="color: black;">
<ul>
<li ng-repeat="node in node.children | orderBy:node:false:navbar.arrayOrderingSrv.noteComparator track by $index"
ng-class="{'active' : navbar.isActive(node.id)}"
ng-include="'components/navbar/navbar-note-list-elem.html'">
</li>
</ul>
</div>
</li>
5 changes: 5 additions & 0 deletions zeppelin-web/src/components/navbar/navbar.controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ function NavCtrl ($scope, $rootScope, $http, $routeParams, $location,
vm.showLoginWindow = showLoginWindow
vm.TRASH_FOLDER_ID = TRASH_FOLDER_ID
vm.isFilterNote = isFilterNote
vm.numberOfNotesDisplayed = 10

$scope.query = {q: ''}

Expand Down Expand Up @@ -153,6 +154,10 @@ function NavCtrl ($scope, $rootScope, $http, $routeParams, $location,
})
}

$scope.loadMoreNotes = function () {
vm.numberOfNotesDisplayed += 10
}

$scope.calculateTooltipPlacement = function (note) {
if (note !== undefined && note.name !== undefined) {
let length = note.name.length
Expand Down
8 changes: 4 additions & 4 deletions zeppelin-web/src/components/navbar/navbar.html
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,13 @@
<li class="divider hidden-xs"></li>
<div id="notebook-list" class="scrollbar-container" ng-if="isDrawNavbarNoteList">
<li class="filter-names" ng-include="'components/note-name-filter/note-name-filter.html'"></li>
<div ng-if="!query.q || query.q === ''">
<li ng-repeat="node in navbar.notes.root.children | orderBy:node:false:navbar.arrayOrderingSrv.noteComparator track by node.id"
<div ng-if="!query.q || query.q === ''" infinite-scroll="loadMoreNotes()">
<li ng-repeat="node in navbar.notes.root.children | limitTo:navbar.numberOfNotesDisplayed track by node.id"
ng-class="{'active' : navbar.isActive(node.id)}" ng-include="'components/navbar/navbar-note-list-elem.html'">
</li>
</div>
<div ng-if="query.q">
<li ng-repeat="node in navbar.notes.flatList | filter : query.q | orderBy:navbar.arrayOrderingSrv.noteFlatListOrdering track by node.id"
<div ng-if="query.q" infinite-scroll="myPagingFunction()">
<li ng-repeat="node in navbar.notes.flatList | filter : query.q | orderBy:navbar.arrayOrderingSrv.noteFlatListOrdering | limitTo:navbar.numberOfNotesDisplayed track by node.id"
ng-class="{'active' : navbar.isActive(node.id)}" ng-include="'components/navbar/navbar-note-list-elem.html'">
</li>
</div>
Expand Down
3 changes: 2 additions & 1 deletion zeppelin-web/src/components/note-list/note-list.factory.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

angular.module('zeppelinWebApp').factory('noteListFactory', NoteListFactory)

function NoteListFactory(TRASH_FOLDER_ID) {
function NoteListFactory(arrayOrderingSrv, TRASH_FOLDER_ID) {
'ngInject'

const notes = {
Expand Down Expand Up @@ -42,6 +42,7 @@ function NoteListFactory(TRASH_FOLDER_ID) {

return root
}, notes.root)
notes.root.children.sort(arrayOrderingSrv.noteComparator)
}
}

Expand Down
64 changes: 32 additions & 32 deletions zeppelin-web/src/components/note-list/note-list.factory.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,38 +38,38 @@ describe('Factory: NoteList', function () {

let folderList = noteList.root.children
expect(folderList.length).toBe(5)
expect(folderList[0].name).toBe('A')
expect(folderList[0].id).toBe('000001')
expect(folderList[1].name).toBe('B')
expect(folderList[3].name).toBe('A')
expect(folderList[3].id).toBe('000001')
expect(folderList[4].name).toBe('B')
expect(folderList[2].name).toBe('000003')
expect(folderList[3].name).toBe('C')
expect(folderList[3].id).toBe('C')
expect(folderList[3].children.length).toBe(3)
expect(folderList[3].children[0].name).toBe('CA')
expect(folderList[3].children[0].id).toBe('000004')
expect(folderList[3].children[0].children).toBeUndefined()
expect(folderList[3].children[1].name).toBe('CB')
expect(folderList[3].children[1].id).toBe('000005')
expect(folderList[3].children[1].children).toBeUndefined()
expect(folderList[3].children[2].name).toBe('CB')
expect(folderList[3].children[2].id).toBe('C/CB')
expect(folderList[3].children[2].children.length).toBe(3)
expect(folderList[3].children[2].children[0].name).toBe('CBA')
expect(folderList[3].children[2].children[0].id).toBe('000006')
expect(folderList[3].children[2].children[0].children).toBeUndefined()
expect(folderList[3].children[2].children[1].name).toBe('CBA')
expect(folderList[3].children[2].children[1].id).toBe('000007')
expect(folderList[3].children[2].children[1].children).toBeUndefined()
expect(folderList[3].children[2].children[2].name).toBe('CBB')
expect(folderList[3].children[2].children[2].id).toBe('000008')
expect(folderList[3].children[2].children[2].children).toBeUndefined()
expect(folderList[4].name).toBe('D')
expect(folderList[4].id).toBe('D')
expect(folderList[4].children.length).toBe(1)
expect(folderList[4].children[0].name).toBe('D[A')
expect(folderList[4].children[0].id).toBe('D/D[A')
expect(folderList[4].children[0].children[0].name).toBe('DA]B')
expect(folderList[4].children[0].children[0].id).toBe('000009')
expect(folderList[4].children[0].children[0].children).toBeUndefined()
expect(folderList[0].name).toBe('C')
expect(folderList[0].id).toBe('C')
expect(folderList[0].children.length).toBe(3)
expect(folderList[0].children[0].name).toBe('CA')
expect(folderList[0].children[0].id).toBe('000004')
expect(folderList[0].children[0].children).toBeUndefined()
expect(folderList[0].children[1].name).toBe('CB')
expect(folderList[0].children[1].id).toBe('000005')
expect(folderList[0].children[1].children).toBeUndefined()
expect(folderList[0].children[2].name).toBe('CB')
expect(folderList[0].children[2].id).toBe('C/CB')
expect(folderList[0].children[2].children.length).toBe(3)
expect(folderList[0].children[2].children[0].name).toBe('CBA')
expect(folderList[0].children[2].children[0].id).toBe('000006')
expect(folderList[0].children[2].children[0].children).toBeUndefined()
expect(folderList[0].children[2].children[1].name).toBe('CBA')
expect(folderList[0].children[2].children[1].id).toBe('000007')
expect(folderList[0].children[2].children[1].children).toBeUndefined()
expect(folderList[0].children[2].children[2].name).toBe('CBB')
expect(folderList[0].children[2].children[2].id).toBe('000008')
expect(folderList[0].children[2].children[2].children).toBeUndefined()
expect(folderList[1].name).toBe('D')
expect(folderList[1].id).toBe('D')
expect(folderList[1].children.length).toBe(1)
expect(folderList[1].children[0].name).toBe('D[A')
expect(folderList[1].children[0].id).toBe('D/D[A')
expect(folderList[1].children[0].children[0].name).toBe('DA]B')
expect(folderList[1].children[0].children[0].id).toBe('000009')
expect(folderList[1].children[0].children[0].children).toBeUndefined()
})
})
1 change: 1 addition & 0 deletions zeppelin-web/src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,7 @@
<script src="bower_components/clipboard/dist/clipboard.js"></script>
<script src="bower_components/ngclipboard/dist/ngclipboard.js"></script>
<script src="bower_components/jsdiff/diff.js"></script>
<script src="bower_components/ngInfiniteScroll/build/ng-infinite-scroll.js"></script>
<!-- endbower -->
<!-- endbuild -->
</body>
Expand Down