@kong-ui-public/error-boundary 0.0.2-pr.821.e7da777c.0 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +20 -18
- package/dist/error-boundary.es.js +41 -27
- package/dist/error-boundary.umd.js +1 -1
- package/dist/types/components/ErrorBoundary.vue.d.ts +22 -6
- package/dist/types/components/ErrorBoundary.vue.d.ts.map +1 -1
- package/dist/types/constants.d.ts.map +1 -1
- package/dist/types/types/error-boundary.d.ts +8 -6
- package/dist/types/types/error-boundary.d.ts.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -15,15 +15,15 @@ A Vue error boundary component to capture unhandled errors that allows for provi
|
|
|
15
15
|
- Renderless (by default) Vue component that **captures** uncaught errors from child components and **prevents the error from propagating further**
|
|
16
16
|
- Allows passing in a list of [tags](#tags) to forward along to the [`onError` callback function](#onerror).
|
|
17
17
|
- Allows providing an error callback function (defined inline or during global Vue plugin initialization)
|
|
18
|
-
- Provides a [`fallback` slot](#fallback) to allow a host app to provide an error UI
|
|
19
|
-
- Allows for **nested** `ErrorBoundary` components in the DOM. Any nested `ErrorBoundary` components will inherit the tags of
|
|
18
|
+
- Provides a [`fallback` slot](#fallback) to allow a host app to provide an error UI that also provides access to the error and context (tags, etc.)
|
|
19
|
+
- Allows for **nested** `ErrorBoundary` components in the DOM. Any nested `ErrorBoundary` components will inherit the tags of any parent `ErrorBoundary` component
|
|
20
20
|
- See the package `sandbox` for more examples
|
|
21
21
|
|
|
22
22
|
The `ErrorBoundary` component will **always** capture any unhandled errors and prevent them from further propagating. This is essentially saying "this error has been handled and should be ignored." It will prevent any additional `ErrorBoundary` components from receiving the error and prevent additional `errorCaptured` hooks or `app.config.errorHandler` from being invoked for this error.
|
|
23
23
|
|
|
24
|
-
The `ErrorBoundary` component can be used to wrap a single component or an entire tree of children, tagging any errors that are captured in the DOM tree.
|
|
24
|
+
The `ErrorBoundary` component can be used to wrap a single component or an entire tree of children, tagging any errors that are captured in the DOM tree. The closest `ErrorBoundary` to the buggy component will capture the error; therefore the closest `ErrorBoundary` **must** also provide the fallback UI, if desired.
|
|
25
25
|
|
|
26
|
-
When nesting `ErrorBoundary` components, the [`tags`](#tags) from any parent `ErrorBoundary` component will be passed down to its
|
|
26
|
+
When nesting `ErrorBoundary` components, the [`tags`](#tags) from any parent `ErrorBoundary` component will be passed down to its child `ErrorBoundary` components and included in their `ErrorBoundaryCallbackParams`.
|
|
27
27
|
|
|
28
28
|
```html
|
|
29
29
|
<template>
|
|
@@ -39,10 +39,10 @@ When nesting `ErrorBoundary` components, the [`tags`](#tags) from any parent `Er
|
|
|
39
39
|
<ErrorBoundary :tags="['team-core-ui']">
|
|
40
40
|
<CreditCardComponent />
|
|
41
41
|
<!-- The fallback slot has access to all params -->
|
|
42
|
-
<template #fallback="{ error,
|
|
42
|
+
<template #fallback="{ error, context }">
|
|
43
43
|
<div class="fallback-content">
|
|
44
44
|
<p>This component has custom fallback UI; most likely just an icon, etc.</p>
|
|
45
|
-
<p class="error-message">{{ componentName }}: {{ error.message }}</p>
|
|
45
|
+
<p class="error-message">{{ context.componentName }}: {{ error.message }}</p>
|
|
46
46
|
</div>
|
|
47
47
|
</template>
|
|
48
48
|
</ErrorBoundary>
|
|
@@ -66,6 +66,8 @@ Looking at the numbered examples above:
|
|
|
66
66
|
|
|
67
67
|
## Usage
|
|
68
68
|
|
|
69
|
+
> **Note**: if your application utilizes the private `KonnectAppShell` component, this `ErrorBoundary` component is already registered globally within the app along with the preferred `onError` callback function.
|
|
70
|
+
|
|
69
71
|
### Install
|
|
70
72
|
|
|
71
73
|
Install the package in your host application
|
|
@@ -93,18 +95,14 @@ import ErrorBoundary from '@kong-ui-public/error-boundary' // No style imports n
|
|
|
93
95
|
// Datadog package example
|
|
94
96
|
import { datadogRum } from '@datadog/browser-rum'
|
|
95
97
|
|
|
96
|
-
|
|
97
98
|
const app = createApp(App)
|
|
98
99
|
|
|
99
100
|
app.use(ErrorBoundary, {
|
|
100
101
|
// Provide a global, default `onError` callback for all ErrorBoundary instances
|
|
101
|
-
onError
|
|
102
|
+
onError({ error, context }) {
|
|
102
103
|
// Example of sending errors to Datadog
|
|
103
104
|
datadogRum.addError(error, {
|
|
104
|
-
|
|
105
|
-
component: componentName,
|
|
106
|
-
tags,
|
|
107
|
-
info,
|
|
105
|
+
ui: context,
|
|
108
106
|
})
|
|
109
107
|
},
|
|
110
108
|
})
|
|
@@ -129,7 +127,7 @@ When registering the component locally, you can provide the `onError` callback a
|
|
|
129
127
|
import { ErrorBoundary } from '@kong-ui-public/error-boundary' // No style imports needed
|
|
130
128
|
|
|
131
129
|
const myTags = ['first-tag', 'another-tag']
|
|
132
|
-
const customErrorCallback = ({ error,
|
|
130
|
+
const customErrorCallback = ({ error, context }) => {
|
|
133
131
|
// Do something fancy
|
|
134
132
|
}
|
|
135
133
|
</script>
|
|
@@ -145,17 +143,19 @@ The `default` slot should be utilized for your "potentially buggy" Vue component
|
|
|
145
143
|
|
|
146
144
|
The `fallback` slot can optionally be used to provide a fallback UI should any child component (not already wrapped with another `ErrorBoundary` component) thrown an unhandled error. **The default fallback behavior is to render nothing in the UI.**
|
|
147
145
|
|
|
148
|
-
The `fallback` slot has access to all of the `
|
|
146
|
+
The `fallback` slot has access to all of the `ErrorBoundaryCallbackParams` as slot props:
|
|
149
147
|
|
|
150
148
|
```html
|
|
151
149
|
<ErrorBoundary :tags="myTags">
|
|
152
150
|
<BuggyComponent />
|
|
153
|
-
<template #fallback="{ error,
|
|
151
|
+
<template #fallback="{ error, context }">
|
|
154
152
|
<!-- Your fallback UI here -->
|
|
155
153
|
</template>
|
|
156
154
|
</ErrorBoundary>
|
|
157
155
|
```
|
|
158
156
|
|
|
157
|
+
The closest `ErrorBoundary` to the buggy component will capture the error; therefore, the closest `ErrorBoundary` **must** also provide the fallback UI, if desired.
|
|
158
|
+
|
|
159
159
|
### Props
|
|
160
160
|
|
|
161
161
|
#### `tags`
|
|
@@ -166,14 +166,16 @@ The `fallback` slot has access to all of the `ErrorCallbackParams` as slot props
|
|
|
166
166
|
|
|
167
167
|
A list of strings to "tag" the captured error with that are passed along to the `onError` callback.
|
|
168
168
|
|
|
169
|
-
|
|
169
|
+
You may then utilize these tags to send context along with any function called in the `onError` callback.
|
|
170
|
+
|
|
171
|
+
For example, if you want to provide custom attributes to error logs on Datadog, you can pass in an array of strings to add to the logged error's custom attributes.
|
|
170
172
|
|
|
171
173
|
#### `onError`
|
|
172
174
|
|
|
173
|
-
- type: `Function as PropType<(
|
|
175
|
+
- type: `Function as PropType<(params: ErrorBoundaryCallbackParams) => void>`
|
|
174
176
|
- required: `false`
|
|
175
177
|
- default: `[]`
|
|
176
178
|
|
|
177
|
-
A function to be called from the `ErrorBoundary` component when an error in a child component is captured. Receives
|
|
179
|
+
A function to be called from the `ErrorBoundary` component when an error in a child component is captured. Receives params of [ErrorBoundaryCallbackParams](src/types/error-boundary.ts).
|
|
178
180
|
|
|
179
181
|
> **Note**: Providing a callback function via the `onError` prop will take precedence over any callback function defined during global registration. You can also provide an empty function in order to prevent the global callback from being executed.
|
|
@@ -1,49 +1,63 @@
|
|
|
1
|
-
import { defineComponent as
|
|
2
|
-
const E = "kong-ui-error-boundary-on-error",
|
|
1
|
+
import { defineComponent as p, inject as c, ref as i, computed as y, unref as m, provide as v, onErrorCaptured as g, renderSlot as d } from "vue";
|
|
2
|
+
const E = "kong-ui-error-boundary-on-error", f = "kong-ui-error-boundary-tags", O = /* @__PURE__ */ p({
|
|
3
3
|
__name: "ErrorBoundary",
|
|
4
4
|
props: {
|
|
5
|
+
/**
|
|
6
|
+
* An optional array of strings to pass along to the context
|
|
7
|
+
*/
|
|
5
8
|
tags: {
|
|
6
9
|
type: Array,
|
|
7
10
|
required: !1,
|
|
8
|
-
default: () => []
|
|
11
|
+
default: () => [],
|
|
12
|
+
// Ensure the value is an object, not a string
|
|
13
|
+
validator: (e) => typeof e == "object"
|
|
9
14
|
},
|
|
15
|
+
/**
|
|
16
|
+
* An optional callback function to execute when an error is captured.
|
|
17
|
+
* This prop will take precedence over a plugin-provided onError callback.
|
|
18
|
+
*/
|
|
10
19
|
onError: {
|
|
11
20
|
type: Function,
|
|
12
21
|
required: !1,
|
|
13
22
|
default: void 0
|
|
14
23
|
}
|
|
15
24
|
},
|
|
16
|
-
setup(
|
|
17
|
-
const r =
|
|
25
|
+
setup(e) {
|
|
26
|
+
const r = e, u = c(E, r.onError), _ = c(f, []), n = i(), s = y(() => {
|
|
18
27
|
const o = /* @__PURE__ */ new Set();
|
|
19
|
-
for (const
|
|
20
|
-
o.add(
|
|
28
|
+
for (const t of [...m(_), ...r.tags])
|
|
29
|
+
o.add(t);
|
|
21
30
|
return Array.from(o);
|
|
22
31
|
});
|
|
23
|
-
return
|
|
32
|
+
return v(f, s), g((o, t, a) => {
|
|
24
33
|
var l;
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
34
|
+
return n.value = {
|
|
35
|
+
error: o,
|
|
36
|
+
context: {
|
|
37
|
+
componentName: ((l = t == null ? void 0 : t.$options) == null ? void 0 : l.__name) || "",
|
|
38
|
+
info: a,
|
|
39
|
+
// See here for codes returned in production: https://github.com/vuejs/core/blob/b8fc18c0b23be9a77b05dc41ed452a87a0becf82/packages/runtime-core/src/errorHandling.ts#L27
|
|
40
|
+
source: "ErrorBoundary",
|
|
41
|
+
// The name of this ErrorBoundary component
|
|
42
|
+
tags: s.value
|
|
43
|
+
}
|
|
44
|
+
}, typeof r.onError == "function" ? r.onError(n.value) : typeof u == "function" && u(n.value), !1;
|
|
45
|
+
}), (o, t) => {
|
|
46
|
+
var a;
|
|
47
|
+
return (a = n.value) != null && a.error ? d(o.$slots, "fallback", {
|
|
48
|
+
key: 1,
|
|
49
|
+
context: n.value.context,
|
|
50
|
+
error: n.value.error
|
|
51
|
+
}) : d(o.$slots, "default", { key: 0 });
|
|
52
|
+
};
|
|
39
53
|
}
|
|
40
|
-
}),
|
|
54
|
+
}), N = {
|
|
41
55
|
// Customize Vue plugin options as desired
|
|
42
|
-
install: (
|
|
43
|
-
|
|
56
|
+
install: (e, r = {}) => {
|
|
57
|
+
e.component(r.name || "ErrorBoundary", O), e.provide(E, r.onError);
|
|
44
58
|
}
|
|
45
59
|
};
|
|
46
60
|
export {
|
|
47
|
-
|
|
48
|
-
|
|
61
|
+
O as ErrorBoundary,
|
|
62
|
+
N as default
|
|
49
63
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
(function(e,r){typeof exports=="object"&&typeof module<"u"?r(exports,require("vue")):typeof define=="function"&&define.amd?define(["exports","vue"],r):(e=typeof globalThis<"u"?globalThis:e||self,r(e["kong-ui-public-error-boundary"]={},e.Vue))})(this,function(e,r){"use strict";const
|
|
1
|
+
(function(e,r){typeof exports=="object"&&typeof module<"u"?r(exports,require("vue")):typeof define=="function"&&define.amd?define(["exports","vue"],r):(e=typeof globalThis<"u"?globalThis:e||self,r(e["kong-ui-public-error-boundary"]={},e.Vue))})(this,function(e,r){"use strict";const s="kong-ui-error-boundary-on-error",l="kong-ui-error-boundary-tags",f=r.defineComponent({__name:"ErrorBoundary",props:{tags:{type:Array,required:!1,default:()=>[],validator:t=>typeof t=="object"},onError:{type:Function,required:!1,default:void 0}},setup(t){const o=t,i=r.inject(s,o.onError),y=r.inject(l,[]),u=r.ref(),c=r.computed(()=>{const n=new Set;for(const a of[...r.unref(y),...o.tags])n.add(a);return Array.from(n)});return r.provide(l,c),r.onErrorCaptured((n,a,d)=>{var p;return u.value={error:n,context:{componentName:((p=a==null?void 0:a.$options)==null?void 0:p.__name)||"",info:d,source:"ErrorBoundary",tags:c.value}},typeof o.onError=="function"?o.onError(u.value):typeof i=="function"&&i(u.value),!1}),(n,a)=>{var d;return(d=u.value)!=null&&d.error?r.renderSlot(n.$slots,"fallback",{key:1,context:u.value.context,error:u.value.error}):r.renderSlot(n.$slots,"default",{key:0})}}}),_={install:(t,o={})=>{t.component(o.name||"ErrorBoundary",f),t.provide(s,o.onError)}};e.ErrorBoundary=f,e.default=_,Object.defineProperties(e,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}})});
|
|
@@ -1,35 +1,51 @@
|
|
|
1
1
|
import type { PropType } from 'vue';
|
|
2
|
-
import type {
|
|
2
|
+
import type { ErrorBoundaryCallbackParams } from '../types';
|
|
3
3
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
4
|
+
/**
|
|
5
|
+
* An optional array of strings to pass along to the context
|
|
6
|
+
*/
|
|
4
7
|
tags: {
|
|
5
8
|
type: PropType<string[]>;
|
|
6
9
|
required: false;
|
|
7
10
|
default: () => never[];
|
|
11
|
+
validator: (value: any) => boolean;
|
|
8
12
|
};
|
|
13
|
+
/**
|
|
14
|
+
* An optional callback function to execute when an error is captured.
|
|
15
|
+
* This prop will take precedence over a plugin-provided onError callback.
|
|
16
|
+
*/
|
|
9
17
|
onError: {
|
|
10
|
-
type: PropType<(
|
|
18
|
+
type: PropType<(params: ErrorBoundaryCallbackParams) => void>;
|
|
11
19
|
required: false;
|
|
12
20
|
default: undefined;
|
|
13
21
|
};
|
|
14
22
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
23
|
+
/**
|
|
24
|
+
* An optional array of strings to pass along to the context
|
|
25
|
+
*/
|
|
15
26
|
tags: {
|
|
16
27
|
type: PropType<string[]>;
|
|
17
28
|
required: false;
|
|
18
29
|
default: () => never[];
|
|
30
|
+
validator: (value: any) => boolean;
|
|
19
31
|
};
|
|
32
|
+
/**
|
|
33
|
+
* An optional callback function to execute when an error is captured.
|
|
34
|
+
* This prop will take precedence over a plugin-provided onError callback.
|
|
35
|
+
*/
|
|
20
36
|
onError: {
|
|
21
|
-
type: PropType<(
|
|
37
|
+
type: PropType<(params: ErrorBoundaryCallbackParams) => void>;
|
|
22
38
|
required: false;
|
|
23
39
|
default: undefined;
|
|
24
40
|
};
|
|
25
41
|
}>>, {
|
|
26
42
|
tags: string[];
|
|
27
|
-
onError: (
|
|
43
|
+
onError: (params: ErrorBoundaryCallbackParams) => void;
|
|
28
44
|
}, {}>, {
|
|
29
45
|
default?(_: {}): any;
|
|
30
46
|
fallback?(_: {
|
|
31
|
-
|
|
32
|
-
|
|
47
|
+
context: import("../types").ErrorBoundaryContext;
|
|
48
|
+
error: {};
|
|
33
49
|
}): any;
|
|
34
50
|
}>;
|
|
35
51
|
export default _default;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ErrorBoundary.vue.d.ts","sourceRoot":"","sources":["../../../src/components/ErrorBoundary.vue.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAA2B,QAAQ,EAAE,MAAM,KAAK,CAAA;
|
|
1
|
+
{"version":3,"file":"ErrorBoundary.vue.d.ts","sourceRoot":"","sources":["../../../src/components/ErrorBoundary.vue.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAA2B,QAAQ,EAAE,MAAM,KAAK,CAAA;AAK5D,OAAO,KAAK,EAAE,2BAA2B,EAAE,MAAM,UAAU,CAAA;;IAkKzD;;OAEG;;;;;;;IAQH;;;OAGG;;;;;;;IAbH;;OAEG;;;;;;;IAQH;;;OAGG;;;;;;;;;;;;;;;;AAaL,wBAAwG;AAGxG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAAE,QAAO;QAClD,MAAM,EAAE,CAAC,CAAC;KACT,CAAA;CAAE,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../src/constants.ts"],"names":[],"mappings":"AAAA,yFAAyF;AACzF,eAAO,MAAM,6CAA6C,oCAAoC,CAAA;
|
|
1
|
+
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../src/constants.ts"],"names":[],"mappings":"AAAA,yFAAyF;AACzF,eAAO,MAAM,6CAA6C,oCAAoC,CAAA;AAE9F,oGAAoG;AACpG,eAAO,MAAM,yCAAyC,gCAAgC,CAAA"}
|
|
@@ -1,13 +1,15 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
error: unknown;
|
|
4
|
-
instance: ComponentPublicInstance | null;
|
|
5
|
-
componentName?: string;
|
|
1
|
+
export interface ErrorBoundaryContext {
|
|
2
|
+
componentName: string;
|
|
6
3
|
info: string;
|
|
4
|
+
source: string;
|
|
7
5
|
tags: string[];
|
|
8
6
|
}
|
|
7
|
+
export interface ErrorBoundaryCallbackParams {
|
|
8
|
+
error: unknown;
|
|
9
|
+
context: ErrorBoundaryContext;
|
|
10
|
+
}
|
|
9
11
|
export interface ErrorBoundaryPluginOptions {
|
|
10
12
|
name?: string;
|
|
11
|
-
onError?: ({ error,
|
|
13
|
+
onError?: ({ error, context: { componentName, info, source, tags } }: ErrorBoundaryCallbackParams) => void;
|
|
12
14
|
}
|
|
13
15
|
//# sourceMappingURL=error-boundary.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"error-boundary.d.ts","sourceRoot":"","sources":["../../../src/types/error-boundary.ts"],"names":[],"mappings":"AAAA,
|
|
1
|
+
{"version":3,"file":"error-boundary.d.ts","sourceRoot":"","sources":["../../../src/types/error-boundary.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,oBAAoB;IACnC,aAAa,EAAE,MAAM,CAAA;IACrB,IAAI,EAAE,MAAM,CAAA;IACZ,MAAM,EAAE,MAAM,CAAA;IACd,IAAI,EAAE,MAAM,EAAE,CAAA;CACf;AAED,MAAM,WAAW,2BAA2B;IAC1C,KAAK,EAAE,OAAO,CAAA;IACd,OAAO,EAAE,oBAAoB,CAAA;CAC9B;AAED,MAAM,WAAW,0BAA0B;IACzC,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,OAAO,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,OAAO,EAAE,EAAE,aAAa,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,EAAE,EAAE,2BAA2B,KAAK,IAAI,CAAA;CAC3G"}
|