mirror of
https://github.com/sismics/docs.git
synced 2024-11-21 21:47:57 +01:00
Search on shared status,display shared status on documents list (client)
This commit is contained in:
parent
c14797bd5a
commit
0aa9b44481
@ -1,2 +0,0 @@
|
||||
- Advanced search: shared documents (client)
|
||||
- Show shared status in documents list (client)
|
@ -5,7 +5,7 @@
|
||||
*/
|
||||
var App = angular.module('docs',
|
||||
// Dependencies
|
||||
['ui.state', 'ui.bootstrap', 'ui.keypress', 'ui.validate',
|
||||
['ui.state', 'ui.route', 'ui.bootstrap', 'ui.keypress', 'ui.validate',
|
||||
'ui.sortable', 'restangular', 'ngSanitize', 'ngMobile', 'colorpicker.module']
|
||||
)
|
||||
|
||||
|
@ -22,7 +22,8 @@ App.controller('Document', function($scope, $state, Restangular) {
|
||||
query: '',
|
||||
createDateMin: null,
|
||||
createDateMax: null,
|
||||
tags: []
|
||||
tags: [],
|
||||
shared: false
|
||||
};
|
||||
};
|
||||
$scope.initSearch();
|
||||
@ -40,7 +41,8 @@ App.controller('Document', function($scope, $state, Restangular) {
|
||||
search: $scope.search.query,
|
||||
create_date_min: $scope.isAdvancedSearchCollapsed || !$scope.search.createDateMin ? null : $scope.search.createDateMin.getTime(),
|
||||
create_date_max: $scope.isAdvancedSearchCollapsed || !$scope.search.createDateMax ? null : $scope.search.createDateMax.getTime(),
|
||||
'tags': $scope.isAdvancedSearchCollapsed ? null : _.pluck($scope.search.tags, 'id')
|
||||
'tags': $scope.isAdvancedSearchCollapsed ? null : _.pluck($scope.search.tags, 'id'),
|
||||
'shared': $scope.isAdvancedSearchCollapsed ? null : $scope.search.shared
|
||||
})
|
||||
.then(function(data) {
|
||||
$scope.documents = data.documents;
|
||||
@ -70,7 +72,7 @@ App.controller('Document', function($scope, $state, Restangular) {
|
||||
});
|
||||
|
||||
/**
|
||||
* Watch for search change.
|
||||
* Watch for search scope change.
|
||||
*/
|
||||
$scope.$watch('search', function(prev, next) {
|
||||
$scope.loadDocuments();
|
||||
|
@ -29,6 +29,12 @@
|
||||
<select-tag tags="search.tags" class="input-block-level" ref="inputTags" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="control-group">
|
||||
<label class="control-label" for="inputShared">Shared</label>
|
||||
<div class="controls">
|
||||
<input type="checkbox" ng-model="search.shared" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-actions">
|
||||
<button ng-click="initSearch()" class="btn btn-warning" type="submit">Reset search</button>
|
||||
</div>
|
||||
@ -46,7 +52,7 @@
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr ng-click="viewDocument(document.id)" ng-repeat="document in documents">
|
||||
<td>{{ document.title }}</td>
|
||||
<td>{{ document.title }} <span class="icon-share" ng-if="document.shared" tooltip="Shared"></span></td>
|
||||
<td>{{ document.create_date | date: 'yyyy-MM-dd' }}</td>
|
||||
<td class="hidden-phone cell-tags">
|
||||
<div class="tags">
|
||||
|
Loading…
Reference in New Issue
Block a user