taskwarrior-0.1.2.0: Types and aeson instances for taskwarrior tasks

Safe HaskellNone
LanguageHaskell2010

Taskwarrior.Task

Description

This Module exports the main datatype of this library: Task. It is provided with FromJSON and ToJSON instances.

Synopsis

Documentation

data Task Source #

A Task represents a task from taskwarrior. See https://taskwarrior.org/docs/design/task.html for the specification of the fields. The specification demands, that the existence of some fields is dependent on the status of the task. Those fields are therefore bundled in status as a sum-type.

All fields in an imported task which are not part of the specification will be put in the UDA (user defined attributes) HashMap.

Since the json can have multiple semantically equivalent representations of a task first serializing and then deserializing is not identity. But deserializing and then serializing should be. (Thus making serializing and deserializing idempotent.)

Instances
Eq Task Source # 
Instance details

Defined in Taskwarrior.Task

Methods

(==) :: Task -> Task -> Bool #

(/=) :: Task -> Task -> Bool #

Read Task Source # 
Instance details

Defined in Taskwarrior.Task

Show Task Source # 
Instance details

Defined in Taskwarrior.Task

Methods

showsPrec :: Int -> Task -> ShowS #

show :: Task -> String #

showList :: [Task] -> ShowS #

ToJSON Task Source # 
Instance details

Defined in Taskwarrior.Task

FromJSON Task Source # 
Instance details

Defined in Taskwarrior.Task

type Tag = Text Source #

A Tag can be basically any string. But beware: Special symbols work but might clash with task cli syntax.

makeTask :: UUID -> UTCTime -> Text -> Task Source #

Makes a Task with the given mandatory fields uuid, entry time and description. See createTask for a non-pure version which needs less parameters.