Skip to content
This repository has been archived by the owner on May 3, 2021. It is now read-only.

Latest commit

 

History

History

task-search

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Task Search

This component is responsible for displaying the filter and sorting options when searching for tasks.

Task Search Example Picture

TaskFilterOptions Properties

Property Description Type Default
workbasket-id A workbasket id, that specifies the workbasket string[] [undefined]
por.type The type of the parent object reference string[] [undefined]
por.value The value of the parent object reference string[] [undefined]
name-like A string, to specify the name of the task string[] [undefined]
owner-like A string, to specify the owner of the task string[] [undefined]
priority The specified priority, that the task should have number[] [undefined]
sort-by A string, which specifies the attribute, which should be used for sorting string PRIORITY
order A string, which specifies the sorting direction string ASCENDING

Properties

Property Attribute Description Type Default
workbaskets -- A list of existing Workbaskets, which the user is allowed to access. this list gets used to display a dropdown for easier filtering by Workbasket Workbasket[] undefined

Events

Event Description Type
addTask This event gets emitted, when the "Add" button has been pressed. CustomEvent<void>
searchTasks This event gets emitted, when a user has pressed the "Search" button. It emits a TaskFilterOptions object, which contains all the parameters for the specified search. CustomEvent<TaskFilterOptions>

Built with StencilJS