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

Ticket description field

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 - represents element label
  • initialValue string - initial input value
  • required bool - if true, user can't submit the ticket while the input is empty

Example:

index.js
const title = new ShakeTitle('Title', 'Title', '', true);
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

Email field

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 - represents element label
  • initialValue string - initial input value
  • required bool - if true, user can't submit the ticket while the input is empty

Example:

index.js
const description = new ShakeTextInput('Steps to reproduce', 'Steps to reproduce', '', false);

Email input

Email field

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 - represents element label
  • initialValue string - initial input value
  • required bool - if true, user can't submit the ticket while the input is empty

Example:

index.js
const email = new ShakeEmail('Email to contact you on', 'Email to contact you on', '', true);

Picker

Email field

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 - represents element text
  • icon string | null - base64 string item icon
  • tag string | null - if item is selected, tag will be automatically added to the ticket

Example:

index.js
const item = new ShakePickerItem('Playbox Mini', 'Playbox Mini', base64Icon, 'playbox-mini');

Picker

Properties:

  • key string - represents element on the Shake dashboard
  • label string - represents element label
  • items List - list of items in the picker

Example:

index.js
const picker = new ShakePicker('Choose your console', 'Choose your console', items);

Inspect button

Inspect button

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

Example:

index.js
const inspectButton = new ShakeInspectButton();

Attachments

Inspect button

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

Example:

index.js
const attachments = new ShakeAttachments();

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.

index.js
const title = new ShakeTitle('Title', 'Title', '', true);
const desc = new ShakeTextInput('Description', 'Description', '', true);
const email = new ShakeEmail('Email', 'Email', 'john.doe@gmail.com', false);
const pickerItems = [
new ShakePickerItem('Bug', 'Bug', bugIcon, 'bug'),
new ShakePickerItem('Suggestion', 'Suggestion', suggestionIcon, 'suggestion'),
new ShakePickerItem('Question', 'Question', questionIcon, 'question'),
];
const picker = new ShakePicker('Feedback type', 'Feedback type', pickerItems);
const inspect = new ShakeInspectButton();
const attachments = new ShakeAttachments();
const components = [title, desc, email, picker, inspect, attachments];
const form = new ShakeForm(components);
Shake.setShakeForm(form);
note

Picker item icons should be in the base64 format without prefix eg. data:image/png;base64,...

Creating a form translated to different languages

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

To achieve this, you should listen for language changes in you app and set a new form with proper labels when language is changed. Note that component key is used for presenting values on the Shake dashboard, and it shouldn't be translated.

Here's an example how to translate your form:

index.js
const strings = {
'en': {
'title': 'Title',
'repro': 'Steps to reproduce'
},
'de': {
'title': 'Titel',
'repro': 'Schritte zum Reproduzieren'
},
'fr': {
'title': 'Titre',
'repro': 'Étapes à reproduire'
}
}
// This function should be called when language change is detected
const onLanguageChanged = (languageCode) => {
const title = new ShakeTitle('Title', strings[languageCode].title, '', true);
const repro = new ShakeTextInput('Steps to reproduce', strings[languageCode].repro, '', true);
const components = [title, repro];
const form = new ShakeForm(components);
Shake.setShakeForm(form);
}

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.

index.js
const setCustomForm = async () => {
const shakeForm = await Shake.getShakeForm();
if (shakeForm) {
shakeForm.components = shakeForm.components.filter(c => c.type !== 'inspect');
Shake.setShakeForm(shakeForm);
}
}