Projects/Usability/HIG/SearchPattern

    From KDE TechBase
    < Projects‎ | Usability‎ | HIG
    Revision as of 12:53, 8 April 2014 by Htietze (talk | contribs) (→‎Input)
     
    Under Construction
    This is a new page, currently under construction!

    Ref's:

    Purpose

    A search function allows to generate a subset out of a big number of items on ground of a user defined pattern. The function is essential to find matching items in case of a extended list or if the position of target(s) is unknown, as well as when bulk operations should be executed to a subset. A search operation interrupts the 'predefined workflow' and bypass core functions to a user-defined data set.

    Supplemental to search is the filter function which rather reduces a given number of items than generating an output. Filtering should be always instantaneous.

    Guidelines

    Input

    • Consider to allow iterative search on result lists.
    • Do not inherit artificial intelligence from users. Search operations have always be clear and comprehensible to users.
    • Prefer instant over explicit search.
      • If the search can be performed quickly and with low resource usage, start searching as the user types.
      • If the search requires more resources (such as computationally intensive search, reading lots of data from disk or transferring lots of data over the network), start searching only when the user presses enter or clicks the search button.
      • Do not mix search types.
    • Show hints on how to use the search effectively.
    • Do case insensitive search, unless its important.
    • Do fuzzy search by default, if applicable. That means extend the results by adding a wildcard to the item.
    • Make the search box large enough to show at least 20 characters (at the moment: KRunner & Kicker = 24, Konqueror = 54, KCM = 33, cf. ).
    • Run a combined AND search when two words have been entered unless the term is quoted (e.g. Hello World vs "Hello World")

    + Wildcards

    Output

    • Make the search result persistent. Users must not need to research after selecting or referencing an item.
    • Follow the guidelines on delayed operations if the search takes longer.
    • Provide paging/scrolling of results.
    • Provide auto complete feature to the input based on previous operations.
    • Show the search pattern at the header of the result list (e.g. "Search results for: <Hello World>")

    Appearance

    Input

    • Discriminate instant search from search that needs to be started explicitly by
      • a special decorator of a common icon. Use version a) for the first option, and b) for second one.
      • adding ellipsis to the inline text: 'Search...' instead of 'Search'
    • Search input consists of an icon, a line input to enter the search pattern, and a button to start the search. (VDG made a proposal how it looks nice; Actually, icon is not standard currently but makes sense; Make sure search icon is not mixed-up with zoom!; Omit icon because of lightweight appearance)
    • Placement (Presuming the app contains of a navigation area (or category selection) left hand with ~1/3 of screen real estate, and a content area for the remaining space.)
      • Start search at the upper right area of your dialog (KCM and input for web browser's search engine).
      • Start above the content area (Search in Dolphin, KMail - search within current mail, KSystemLog)
      • Start below the content area (Filter in Dolphin, Konqueror / Rekonq / Browser search within current page in general, KWrite, Konsole, Okular). (Most might be understood in terms of a filter since it don't generate something but jump to the right position!)
      • Start above or below depending on the layout (Kicker, if started from a top- or bottom-aligned band).
      • Make search floating (KRunner style).
      • Use an extra (modal) dialog (KMail search for mails, Krusader).
      • Start above the navigation area/category selection to clean the content on-the-fly (Bangarang).

    <cite="Thomas Pfeiffer">Above the content appears to be the common position for search bars that are always visible (like KMail or System Settings) while bottom seems to be the common position for search bars that only appear when a search is initiated (via the menu or Ctrl-F).

    • To show or not to show:
      • Always show search input. Do not hide the availability from users.
      • Show input control only when users start the search.
      • Hide the control in case the search is not the primary function of the app, but show a small button which indicates clearly the availability of the function.
      • Active the control and focus it on Ctrl+F or when user clicks the icon.
      • Do not use search icon anywhere else.

    Output

    • How to present results (Depends on use case?)
      • Highlight search results (KCM mode).
      • Hide non-matching results (Kicker mode).
      • Generate a new list that matches the search pattern (KRunner mode).

    Best Practice