TaskSuite class

Note

The task interface configuration guide describes the features of the HTML/JS/CSS editor. You can also try creating a task interface in Template Builder.

“Wrapper class” for task suites creates instances of task classes. You can redefine this class (for example, if you need to display a shared element on the page with tasks or get more control over tasks, like custom keyboard shortcuts).

The main purpose of the TaskSuite class is to render tasks on the page (render()). It is also used for collecting responses (getSolutions()), validating them (validate(solutions)), and managing hotkeys (focusNextTask(), onKey(key)).

The base class for TaskSuite is available in the window.TolokaTaskSuite global variable.

Methods:

constructor(options)

Basic task suite class constructor.

Parameters:

  • options.task — Array of Task models.

  • options.specs — Parameters for input and output data and the task interface.

  • options.assignmentId — IDs of tasks on the page.

  • options.workspaceOptions — Toloker's workspace initialization parameters.

  • options.TaskClass — Array of classes for the task you create.

  • options.solutions — Array of responses Solution. Can be empty.

destroy()

Destroys all tasks on the page. Releases resources, services, and event handlers used in the global space. Calls onDestroy().

focusNextTask()

Sets the focus on the next task.

focusPreviousTask()

Sets the focus on the previous task.

focusTask(index)

Sets the focus on the task by the index. Parameter:

  • index — Task index on the page.

getAssignment()

Returns a link to an Assignment instance. After that, you can use all the properties and methods of that class instance.

Example

getDOMElement()

Returns the DOM element of the page (it is empty before rendering, and after rendering it is initialized and contains the interface).

getFocusedTask()

Returns a link to the active task. Gets the index of the active task from a private property _focusedTaskIndex and returns a link to that task using getTasks().

Example

getOptions()

Returns an object with a set of parameters passed to the constructor() method during initialization.

Example

getProxyUrl(path)

Returns a complete URL to access the data on the proxy server. Parameter:

  • path — the relative path to the file.

getSolutions()

Returns an array of Solution responses.

getStyleDOMElement()

Returns the DOM element of the page styles.

getTasks()

Returns an array of Task initialized task models.

getTasksDOMElement()

Returns the DOM element of the task suite (div.task-suite). If the DOM element is missing, the method creates it.

getTasksIndexed()

Returns tasks indexed by their IDs: <taskId>: Task, …

getWorkspaceOptions()

Returns an object with the Toloker's workspace settings.

The most important settings:

  • agent — The value is FRONTEND for full task versions, ANDROID for the Android app, and so forth.

  • isReadOnly — "Read-only" mode flag (for example, for viewing the history of completed tasks).

  • isReviewMode — Review mode flag (for example, manual review). This setting and isReadOnly are useful if you want to do something like change the template layout in history view mode.

  • language — A two-letter code of the language selected by the Toloker in Toloka settings. It's useful when you want to create multilingual templates.

  • origin — Parent page FQDN.

initHotkeys()

Hotkey handler initializer:

  • Sets the focus to the previous task when the left arrow or up arrow is pressed.

  • Sets the focus to the next task when the right arrow or down arrow is pressed.

  • Passes the pressed keys to the active task.

  • Sets the focus on the first task.

onDestroy()

A method you can redefine to execute your code when a task suite is deleted. Called after the page is destroyed (destroy()). The best method for releasing memory, deleting global event handlers and DOM elements, and so on.

onKey(key)

Passes the pressed key to the active task.

onPause()

A method you can redefine to execute your code when a task suite stops working.

onRender()

A method you can redefine to execute your code when rendering a task suite. Called after page rendering (render()). All manipulations with the DOM element of a task should be performed here.

onResume()

A method you can redefine to execute your code when a task suite resumes working.

onValidationFail(errors)

Called if the validation failed. Contains error descriptions in the parameter. Parameter:

pause()

Calls the pause() method for each task in the suite. It also calls the onPause() method.

proxy(path, options)

Makes a GET or POST request through a proxy. Returns the response as an object.

Parameters:

  • path — the path for the request (string).

  • options — the request parameters (object). More information in the Jquery Ajax parameter description.

Returns the promise object.

Alert

Some features are not supported (for example, timeouts and custom headers).

Example

render()

Creates a DOM representation of the task suite: renders all tasks in the task suite. Calls render() in the Task class for each task. Calls onRender(). Returns this.

validate(solutions)

Validates responses according to output data parameters. Returns a promise object with an array of SolutionValidationError errors if the responses are incorrect, or null. Parameter:

  • solutions — Array of the Toloker's task responses. If omitted, the current values are used (getSolutions()).
Contact support

Last updated: February 15, 2023

Introduction
Getting started
Important tips
Useful recommendations
Working with Toloka
Projects
Pools
Tasks
Results
Project analysis
Toloka settings
Task interface
Template Builder
HTML/CSS/JS editor
Help and support
FAQTroubleshootingSupportGlossary