Skip to content
This repository has been archived by the owner on Feb 12, 2024. It is now read-only.

Latest commit

 

History

History
74 lines (45 loc) · 4.73 KB

2016-02-01-enchancing-the-copy-experience-in-sn7.md

File metadata and controls

74 lines (45 loc) · 4.73 KB
title author image tags
Enchancing the copy experience in SN7
ildika
/img/posts/desk.jpg
copy
content picker
gui

As the result of the competitor analysis we prepared the redesign of the new, skinnable Picker for SN7. We understood a lot of conceptual expectations from users by looking at our competitors’ solutions. These were all taken into consideration when developing custom solutions for individual picker-types in SN7.


As the whole development cycle is quite complex, we decided to divide it into sections. In the first phase we implemented the most powerful functions:

  • root-selection
  • search under selected root
  • add and delete container elements
  • parameterized view
  • configurable layout and structure

We started the development of our solution with the picker for copy-action. We uniformly used KendoUI widgets to implement the tree-, grid-, and thumbnail views. We followed the „mobile first” approach, so we started with the implementation of the UI for CopyPicker for mobile devices.

Configuration of the Picker

A config file is placed in the solution, including a javascript configuration module to easily setup the necessary parameters, like:

  • views
  • searchability
  • allowed types to add
  • modal markup template
  • selection type
  • button configurations
  • selection root

Actions in picker

Delete

The currently active element in the breadcrumb is highlighted, so the content of this node is displayed in a grid, where downward navigation is possible by tapping on the selected title. Navigation upwards in the tree will be executed by tapping the previous elements in the breadcrumb. Deleting is also possible on the selected item in grid- or thumbnail, by tapping the delete icon. Delete action needs to be confirmed in order to avoid unintentional loss of data.

Delete from gridview on mobile Delete from thumbnailview on mobile

Create New Container

By tapping the „add-icon” in the end of the breadcrumb, an overlay modal opens to add a new container. From a dropdown, expendable items can be selected as allowed content-types from the configuration. In our prototype „Folder” or „Document Library” ContentTypes are allowed. In the text-input the name will be added to the item, which is „New ContentType name” by default.

Create new folder on mobile

Skinnable layout for mobile devices

We created a custom Picker setup to copy contents, to introduce the main functional elements. We designed our prototype to be able to build Bootstrap or Foundation based solutions. In the header of the modal-dialog a breadcrumb-bar helps navigation, and the add-icon provides the possibility to add new containers to the current item as copy-destinations. The search bar on top helps you to look up other containers as a targets under the selected node.

Copy-picker with grid-view displayed by Bootstrap and Foundation:

** Gridview with Bootstrap for mobile Gridview with Foundation for mobile**

Views can be chosen in the configuration. In our prototype grid or thumbnail views can be selected. Configuration also provides an opportunity to choose a tree-only view.

Layout for desktop and tablet

Depending on the screen-size and resolution, we used the Bootstrap and Foundation css classes to setup the view for the layout of the picker. Depending on the resolution and configuration, the picker will display each or both tree and grid/thumbnail splitter, unless of course we setup "TreeOnly" in the configuration.

Picker with thumbnail-view for tablet built with Bootstrap

Copypicker built from Bootstrap for desktop

Picker with grid-view for desktop built with Foundation

Copypicker view built with Foundation

Tree-only view on iPad with Bootstrap

Tree-only view for copy picker