Merge pull request #212 from getmaxun/better-notifs
feat: better notifications
This commit is contained in:
@@ -105,9 +105,9 @@ export const InterpretationButtons = ({ enableStepping }: InterpretationButtonsP
|
||||
const finished = await interpretCurrentRecording();
|
||||
setInfo({ ...info, running: false });
|
||||
if (finished) {
|
||||
notify('info', 'Interpretation finished');
|
||||
notify('info', 'Run finished');
|
||||
} else {
|
||||
notify('error', 'Interpretation failed to start');
|
||||
notify('error', 'Run failed to start');
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
@@ -253,14 +253,14 @@ export const RecordingsTable = ({ handleEditRecording, handleRunRecording, handl
|
||||
|
||||
checkRunsForRecording(row.id).then((result: boolean) => {
|
||||
if (result) {
|
||||
notify('warning', 'Cannot delete recording as it has active runs');
|
||||
notify('warning', 'Cannot delete robot as it has associated runs');
|
||||
}
|
||||
})
|
||||
|
||||
deleteRecordingFromStorage(row.id).then((result: boolean) => {
|
||||
if (result) {
|
||||
setRows([]);
|
||||
notify('success', 'Recording deleted successfully');
|
||||
notify('success', 'Robot deleted successfully');
|
||||
fetchRecordings();
|
||||
}
|
||||
})
|
||||
|
||||
@@ -46,7 +46,7 @@ export const SaveRecording = ({ fileName }: SaveRecordingProps) => {
|
||||
};
|
||||
|
||||
const exitRecording = useCallback(async () => {
|
||||
notify('success', 'Recording saved successfully');
|
||||
notify('success', 'Robot saved successfully');
|
||||
if (browserId) {
|
||||
await stopRecording(browserId);
|
||||
}
|
||||
|
||||
@@ -88,7 +88,7 @@ const ApiKeyManager = () => {
|
||||
navigator.clipboard.writeText(apiKey);
|
||||
setCopySuccess(true);
|
||||
setTimeout(() => setCopySuccess(false), 2000);
|
||||
notify('info', 'Copied to clipboard');
|
||||
notify('info', 'Copied API Key successfully');
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user