Skip to main content

Auto attach files

Automatically attach a log file to each ticket, or user's profile photo, or whatever will help you resolve the ticket faster when you receive it. Files you attach automatically are not visible to your users.

Auto-attached files vs. Files uploaded by users

When submitting a ticket from the New ticket screen, your users can also upload their files (images, documents) to tickets. That has nothing to do with these auto-attached files.

Methods

You can programmatically attach files by using any of the methods described below. To define which files will be uploaded, call the Shake.setShakeReportData method and pass the list of ShakeFile objects, as shown in the examples below.

note

You can call the Shake.setShakeReportData method anywhere in your app, just be careful to only call it once since any subsequent calls will override the former ones.

Set a custom filename and then attach a file

ShakeFile can be initialized with a desired filename (String) and an absolute file path (String) to your file:

App.js
import Shake, {ShakeFile} from '@shakebugs/react-native-shake';
const attachLogFiles = () => {
const shakeFile1 = ShakeFile.create(userFile.path, 'userLogs');
const shakeFile2 = ShakeFile.create(deviceFile.path, 'deviceLogs');
Shake.setShakeReportData([shakeFile1, shakeFile2]);
}

Attach a file without the custom filename

ShakeFile can be initialized without a filename, with just an absolute file path (String) to your file. If you initialize it this way, the filename shown on your Shake dashboard will be determined automatically from the passed file's name.

App.js
import Shake, {ShakeFile} from '@shakebugs/react-native-shake';
const attachLogFiles = () => {
const shakeFile1 = ShakeFile.create(userFile.path);
const shakeFile2 = ShakeFile.create(deviceFile.path);
Shake.setShakeReportData([shakeFile1, shakeFile2]);
}