Skip to main content

Custom forms

Learn how to create or modify a form displayed on the New ticket screen.

Default form

Shake provides a default feedback and crash reporting form that enables users to submit valuable input to the reported tickets. This pre-designed form includes a variety of useful elements for collecting detailed information from the user.

  • Title The form requires the user to provide a title for their ticket, ensuring that the issue is shortly described. This field is mandatory, meaning that users cannot submit a ticket without providing a title.

  • Feedback type Users can also select the type of feedback they are submitting, choosing from a several categories: bug, question, or suggestion. This categorization helps dashboard users to quickly identify and prioritize tickets based on their type.

  • Inspect button In addition, users have the option to inspect the data collected by the Shake by clicking the Inspect button. This feature provides users with an overview of the information they have submitted and helps to ensure that all the necessary details have been provided.

  • Attachments The form includes the option to attach additional files, such as screenshots or video recordings, to the ticket. This allows users to provide more detailed information about the issue they are reporting and can help support devs to quickly identify and resolve the problem.

Custom form

Depending on your requirements, you may want to customize the form to collect additional or specific data from your users. Shake offers several customizable elements that can be added to the Shake form:

  • Title This element allows users to provide a short and descriptive title for their ticket, helping to quickly identify and understand the nature of the submission.

  • Text input This element captures additional information beyond the title, allowing users to provide more detailed information about their submission. This can include descriptions, comments, or other relevant details.

  • Email input This element accepts email input only, allowing users to provide their email address for follow-up communication or account verification. This can be particularly useful when addressing account-specific issues or when users want to be kept up-to-date on the status of their submission.

  • Picker This element allows you to define a set of options for the user to select from, helping to streamline the submission process and ensure that submissions are properly categorized for easier management and resolution.

  • Inspect button This element lets users easily review and verify the data they have provided for their submission, helping to reduce the need for follow-up questions and ensure that all necessary information has been included.

  • Attachments This element allows users to attach files or other relevant materials to their submission, providing additional context and information to help facilitate resolution. This can include images, videos, documents, or other relevant files.

note

Note that the Title, Inspect button, and Attachments elements can only be added to the form one-time. If multiple instances of these components are included, only the first instance will be displayed on the screen

Title

Title element

A component that lets users provide a short and descriptive title for their issue or request.

Properties:

  • key String - represents element on the Shake dashboard
  • label String - user facing label (use NSLocalizedString to show the localized version of your label)
  • initialValue String - initial input value
  • required Bool - if true, user can't submit the ticket while the input is empty

Example:

AppDelegate.swift
let title = SHKTitle(key: "title", label:"Title" required: true, initialValue: nil)
note

Here's a tip that quality assurance teams often find helpful. If #some #hashtags are added anywhere in the title, they will automatically become tags on your Shake dashboard.

Text input

Text element

This element allows your users to leave textual input with the ticket they're submitting.

Properties:

  • key String - represents element on the Shake dashboard
  • label String - user facing label (use NSLocalizedString to show the localized version of your label)
  • initialValue String - initial input value
  • required Bool - if true, user can't submit the ticket while the input is empty

Example:

AppDelegate.swift
let description = SHKTextInput(key: "steps_to_reproduce", label:"Steps to reproduce" required: false, initialValue: nil)

Email input

Email element

This element allows your users to leave email address with the ticket they're submitting.

Properties:

  • key String - represents element on the Shake dashboard
  • label String - user facing label (use NSLocalizedString to show the localized version of your label)
  • initialValue String - initial input value
  • required Bool - if true, user can't submit the ticket while the input is empty

Example:

AppDelegate.swift
let email = SHKEmail(key: "email", label: "Email to contact you on", required: true, initialValue: nil)

Picker

Picker element

This element enables your users to select an option from a pre-defined list of choices.

Picker item

Properties:

  • key String - represents element on the Shake dashboard
  • text String - user facing label (use NSLocalizedString to show the localized version of your label)
  • icon UIImage - represents picker item icon
  • tag String - if item is selected, tag will be automatically added to the ticket

Example:

AppDelegate.swift
let pickerItem = SHKPickerItem(key: "playbox_mini", text: "Playbox Mini", icon: UIImage(named:"playbox"), tag: "playbox-mini")

Picker

Properties:

  • key String - represents element on the Shake dashboard
  • label String - user facing label (use NSLocalizedString to show the localized version of your label)
  • items List - list of items in the picker

Example:

AppDelegate.swift
let picker = SHKPicker(key: "console_picker" label: "Choose your console", items: [pickerItem])

Inspect button

Inspect element

This element allows your users to inspect ticket data, tapping it takes them to the Inspect section.

Example:

AppDelegate.swift
let inspectButton = SHKInspectButton()

Attachments

Attachments element

This element allows your users to attach additional images, videos or files to the ticket.

Example:

AppDelegate.swift
let attachments = SHKAttachments()

Examples

Creating a custom form

The code snippet below provides an example of how to create a custom form with a range of useful elements

  • Title
  • Description (Text input)
  • Email (Email input)
  • Category (Picker)
  • Inspect button
  • Attachments

The Title and Description fields are required and cannot be left blank, while the Email field is optional and includes a predefined value that users can modify or delete as needed. The Category field allows users to select a category for their ticket, which creates a corresponding tag to help with organization and management. The Inspect button allows users to easily review and verify the data they have provided for their submission, while the Attachments enables users to upload additional files or other materials to provide context and support their submission.

AppDelegate.swift
Shake.configuration.form = SHKForm(items: [
SHKTitle(key: "title", label: "Title", required: true, initialValue:nil),
SHKTextInput(key: "description", label: "Description", required: true, initialValue:nil),
SHKEmail(key: "email", label: "Email", required: true, initialValue: "john.doe@email.com"),
SHKPicker(key: "feedback_type", label: "Feedback type", items: [
SHKPickerItem(key: "bug", text: "Bug", icon: nil, tag: nil),
SHKPickerItem(key: "suggestion", text: "Suggestion", icon: nil, tag: nil),
SHKPickerItem(key: "question", text: "Question", icon: nil, tag: nil)
]),
SHKInspectButton(),
SHKAttachments(),
])

Creating a form translated to different languages

The following code snippet is an example of how to create a custom form that includes elements with labels translated into different languages.

To achieve this, you can leverage resources strings, which are supported by the platform you are working on. For instance, you may want to have a text input for a required ticket title, as well as a text input for required reproduction steps where the user can describe how they encountered a bug.

shake_form_title and shake_form_repro are defined as strings in the resource files. Each language has its own resource file, and the system will automatically load the correct file depending on the language settings on the user's phone.

By utilizing resources strings, you can provide a seamless and localized experience for your users, regardless of their language preferences.

AppDelegate.swift
let title = SHKTitle(key: "title", label: NSLocalizedString("com.app.shakeTitle", ""), required: true, initialValue: nil)
let repro = SHKTextInput(key: "repro", label: NSLocalizedString("com.app.shakeRepro", ""), required: true, initialValue: nil)
Shake.configuration.form = SHKForm(items: [title, repro])

Removing Inspect button from the default form

If you like the default form but want to make some modifications, you can easily do so by editing the Shake default form. For example, you may wish to remove the Inspect button from the default form to prevent users from inspecting the ticket data, while keeping the other form elements intact.

AppDelegate.swift
let customForm = SHKForm(items: Shake.configuration.form.items.filter({ item in
return !(item is SHKInspectButton)
}))
Shake.configuration.form = customForm