Sync with latest development (#139)

* Update index.html

* Update features.md

* Update header.md

* Update header.md

* Update header.md

* Add files via upload

* Update header.md

* Update header.md

* Add files via upload

* Update header.md

* Add files via upload

* Add files via upload

* Update header.md

* Add files via upload

* Delete sid-nav.png

* Add files via upload

* Update side-nav.md

* Add files via upload

* Update side-nav.md

* Update side-nav.md

* Update doc-list.md

* Add files via upload

* Update doc-list.md

* Update doc-list.md

* Delete doclist.png

* Add files via upload

* small changes to docs

* [ACA-1038] 'Load more' doesn't work correctly on destination picker (#135)

made sure that a search is performed only if there is a search string to search for

* [ACA-951] Color theme and logo (#138)

- documented customization of the logo and header background color
This commit is contained in:
Denys Vuika
2017-12-13 17:39:14 +00:00
committed by GitHub
parent ae84e67ee3
commit ebc3111824
19 changed files with 105 additions and 51 deletions

View File

@@ -1,17 +1,19 @@
### (3) Document List Layout
### Document List Layout
The main area of the application is composed from a number of individual ADF components:
The main area of the application is composed of several individual ADF components:
- [Breadcrumb](https://alfresco.github.io/adf-component-catalog/components/BreadcrumbComponent.html)
- [Toolbar](https://alfresco.github.io/adf-component-catalog/components/ToolbarComponent.html)
- [Document List](https://alfresco.github.io/adf-component-catalog/components/DocumentListComponent.html)
- [Pagination](https://alfresco.github.io/adf-component-catalog/components/PaginationComponent.html)
- (1) [Breadcrumb](https://alfresco.github.io/adf-component-catalog/components/BreadcrumbComponent.html)
- (2) [Toolbar](https://alfresco.github.io/adf-component-catalog/components/ToolbarComponent.html)
- (3) [Document List](https://alfresco.github.io/adf-component-catalog/components/DocumentListComponent.html)
- (4) [Pagination](https://alfresco.github.io/adf-component-catalog/components/PaginationComponent.html)
The application has six different Document List views which share commonalities between each view and also subtle differences depending on the content being loaded which are explained below.
![](images/doclist.png)
The application has six different Document List views which share commonalities between each view and subtle differences depending on the content being loaded which are explained below.
#### Personal Files
Personal Files retrieves all content from the logged in users home area (`/User Homes/<username>/` in the repository);
Personal Files retrieves all content from the logged in user's home area (`/User Homes/<username>/` in the repository);
if the user is admin who does not have a home folder then the repository root folder is shown.
Personal Files is the [Files component](https://github.com/Alfresco/alfresco-content-app/tree/master/src/app/components/files),
@@ -19,11 +21,11 @@ using the [Nodes API](https://api-explorer.alfresco.com/api-explorer/#/nodes).
#### File Libraries
File Libraries retrieves all the sites that the user is a member including what type of site it is; public, moderated or private.
File Libraries retrieves all the sites that the user is a member of including what type of site it is: public, moderated or private.
File Libraries is the [Libraries component](https://github.com/Alfresco/alfresco-content-app/tree/master/src/app/components/libraries),
using the [Sites API](https://api-explorer.alfresco.com/api-explorer/#/sites).
When a user opens one of their sites then the content for that sites document library is shown.
When a user opens one of their sites then the content for the site's document library is shown.
To display the files and folders from a site (`/Sites/<siteid>/Document Library/`) the [Files component](https://github.com/Alfresco/alfresco-content-app/tree/master/src/app/components/files),
using the [Nodes API](https://api-explorer.alfresco.com/api-explorer/#/nodes) is used.
@@ -40,7 +42,7 @@ A feature for creating and removing Shared Links will be added in the future.
#### Recent Files
The Recent Files view shows all the files that have been modified within the last 30 days by the current user.
The Recent Files view shows all the files that have been created or modified within the last 30 days by the current user.
The [Recent Files](https://github.com/Alfresco/alfresco-content-app/tree/master/src/app/components/current-user)
component uses the Search API to query SOLR for changes made by the user and includes an extra column to display where the file is
[located](https://github.com/Alfresco/alfresco-content-app/tree/master/src/app/components/location-link)
@@ -61,9 +63,9 @@ The Trash view shows all the items that a user has deleted, admin will see items
The actions available in this view are Restore and Permanently Delete.
The [Trashcan](https://github.com/Alfresco/alfresco-content-app/tree/master/src/app/components/trashcan) component uses the
[trashcan](https://api-explorer.alfresco.com/api-explorer/#/trashcan) API to retrieve the deleted items
and perform the actions requested by the user and includes an extra column to display where the file is
and perform the actions requested by the user and includes an extra column to display where the item was
[located](https://github.com/Alfresco/alfresco-content-app/tree/master/src/app/components/location-link)
in the content repository.
in the content repository before it was deleted.
#### Actions and the Actions Toolbar
@@ -89,8 +91,8 @@ actions are automatically hidden when the user does not have permission.
</tr>
<tr>
<td>Download</td>
<td>Downloads single files to the users computer, when multiple files are selected they are compressed into a ZIP and then downloaded.</td>
<td>Folders are automatically compressed into a ZIP and then downloaded to the users computer.</td>
<td>Downloads single files to the user's computer, when multiple files are selected they are compressed into a ZIP and then downloaded.</td>
<td>Folders are automatically compressed into a ZIP and then downloaded to the user's computer.</td>
</tr>
<tr>
<td>Edit</td>
@@ -107,15 +109,15 @@ actions are automatically hidden when the user does not have permission.
<tr>
<td>Copy</td>
<td colspan="2">
Files and folders can be copied into other locations in the content repository using the
Files and folders can be copied to another location in the content repository using the
[content-node-selector](https://alfresco.github.io/adf-component-catalog/components/ContentNodeSelectorComponent.html) component;
once the copy action has completed the user is notified and can undo the action (which permanently deletes the copies created).
once the copy action has completed the user is notified and can undo the action (which permanently deletes the created copies).
</td>
</tr>
<tr>
<td>Move</td>
<td colspan="2">
Files and folders can be moved into other locations in the content repository using the
Files and folders can be moved to another location in the content repository using the
[content-node-selector](https://alfresco.github.io/adf-component-catalog/components/ContentNodeSelectorComponent.html) component;
once the move action has completed the user is notified and can undo the action (which moves the items back to the original location).
</td>
@@ -124,11 +126,11 @@ actions are automatically hidden when the user does not have permission.
<td>Delete</td>
<td colspan="2">
Files and folders can be deleted from their location in the content repository;
once the delete action has completed the user is notified and undo the action (which restores the items from the trash).
once the delete action has completed the user is notified and can undo the action (which restores the items from the trash).
</td>
</tr>
</tbody>
</table>
As well as the actions available in the toolbar users can single click an item to select it,
Besides the actions available in the toolbar users can single click an item to select it,
or double click on a file to view it, and a folder to open it.