mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
* implement import
* set name, remove console log
* add validation and such
* remove monday.com package for testing
* clean up code
* await new name
* refactor api requests
* remove unnessary import
* build
* add zoom button
* update positions on loading template
* update error handling
* build
* update zoom to center
* set state to dirty upon leaving
* clean up pr
* refactor func
* refactor redir
* fix lint issue
* refactor func out
* use new endpoint
* revert error changes
* revert error changes
* update logic to find top left node
* zoom to fit when opening workflow
* revert testing change
* update case
* address comments
* reset zoom when opening new workflow
* update endpoint to plural form
* update endpoint
* ⚡ Minor improvements
Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
61 lines
1.4 KiB
TypeScript
61 lines
1.4 KiB
TypeScript
import { Notification } from 'element-ui';
|
|
import { ElNotificationOptions } from 'element-ui/types/notification';
|
|
import mixins from 'vue-typed-mixins';
|
|
|
|
import { externalHooks } from '@/components/mixins/externalHooks';
|
|
|
|
export const showMessage = mixins(externalHooks).extend({
|
|
methods: {
|
|
$showMessage(messageData: ElNotificationOptions) {
|
|
messageData.dangerouslyUseHTMLString = true;
|
|
if (messageData.position === undefined) {
|
|
messageData.position = 'bottom-right';
|
|
}
|
|
|
|
return Notification(messageData);
|
|
},
|
|
|
|
$showError(error: Error, title: string, message?: string) {
|
|
const messageLine = message ? `${message}<br/>` : '';
|
|
this.$showMessage({
|
|
title,
|
|
message: `
|
|
${messageLine}
|
|
<i>${error.message}</i>
|
|
${this.collapsableDetails(error)}`,
|
|
type: 'error',
|
|
duration: 0,
|
|
});
|
|
|
|
this.$externalHooks().run('showMessage.showError', {
|
|
title,
|
|
message,
|
|
errorMessage: error.message,
|
|
});
|
|
},
|
|
|
|
// @ts-ignore
|
|
collapsableDetails({ description, node }: Error) {
|
|
if (!description) return '';
|
|
|
|
const errorDescription =
|
|
description.length > 500
|
|
? `${description.slice(0, 500)}...`
|
|
: description;
|
|
|
|
return `
|
|
<br>
|
|
<br>
|
|
<details>
|
|
<summary
|
|
style="color: #ff6d5a; font-weight: bold; cursor: pointer;"
|
|
>
|
|
Show Details
|
|
</summary>
|
|
<p>${node.name}: ${errorDescription}</p>
|
|
</details>
|
|
`;
|
|
},
|
|
},
|
|
});
|