@ai12z/react 3.0.16 → 3.1.0-rc.10
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 +0 -2
- package/dist/global.css +1 -0
- package/dist/types/components/stencil-generated/index.d.ts +0 -1
- package/dist/types/components/stencil-generated/react-component-lib/utils/attachProps.d.ts +1 -1
- package/package.json +8 -10
- package/lib/components/stencil-generated/index.ts +0 -30
- package/lib/components/stencil-generated/react-component-lib/createComponent.tsx +0 -106
- package/lib/components/stencil-generated/react-component-lib/createOverlayComponent.tsx +0 -142
- package/lib/components/stencil-generated/react-component-lib/index.ts +0 -2
- package/lib/components/stencil-generated/react-component-lib/interfaces.ts +0 -34
- package/lib/components/stencil-generated/react-component-lib/utils/attachProps.ts +0 -125
- package/lib/components/stencil-generated/react-component-lib/utils/case.ts +0 -7
- package/lib/components/stencil-generated/react-component-lib/utils/dev.ts +0 -14
- package/lib/components/stencil-generated/react-component-lib/utils/index.tsx +0 -50
- package/lib/index.ts +0 -10
package/README.md
CHANGED
package/dist/global.css
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import type { JSX } from 'ai12z';
|
|
3
2
|
export declare const Ai12zBot: import("react").ForwardRefExoticComponent<JSX.Ai12zBot & Omit<import("react").HTMLAttributes<HTMLAi12zBotElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLAi12zBotElement>>;
|
|
4
3
|
export declare const Ai12zCarousel: import("react").ForwardRefExoticComponent<JSX.Ai12zCarousel & Omit<import("react").HTMLAttributes<HTMLAi12zCarouselElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLAi12zCarouselElement>>;
|
|
@@ -4,6 +4,6 @@ export declare const transformReactEventName: (eventNameSuffix: string) => strin
|
|
|
4
4
|
export declare const isCoveredByReact: (eventNameSuffix: string) => boolean;
|
|
5
5
|
export declare const syncEvent: (node: Element & {
|
|
6
6
|
__events?: {
|
|
7
|
-
[key: string]: (e: Event) => any;
|
|
7
|
+
[key: string]: ((e: Event) => any) | undefined;
|
|
8
8
|
};
|
|
9
9
|
}, eventName: string, newEventHandler?: (e: Event) => any) => void;
|
package/package.json
CHANGED
|
@@ -1,19 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ai12z/react",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.1.0-rc.10",
|
|
4
4
|
"description": "ai12z React Library",
|
|
5
5
|
"author": "Alpesh Patel <alpesh@ai12z.com>",
|
|
6
6
|
"homepage": "",
|
|
7
7
|
"license": "ISC",
|
|
8
|
-
"main": "dist/
|
|
9
|
-
"module": "dist/
|
|
10
|
-
"types": "dist/types/
|
|
8
|
+
"main": "dist/index.js",
|
|
9
|
+
"module": "dist/index.js",
|
|
10
|
+
"types": "dist/types/index.d.ts",
|
|
11
11
|
"directories": {
|
|
12
|
-
"lib": "
|
|
13
|
-
"test": "__tests__"
|
|
12
|
+
"lib": "dist"
|
|
14
13
|
},
|
|
15
14
|
"files": [
|
|
16
|
-
"lib",
|
|
17
15
|
"dist"
|
|
18
16
|
],
|
|
19
17
|
"scripts": {
|
|
@@ -22,16 +20,16 @@
|
|
|
22
20
|
"tsc": "tsc -p . --outDir ./dist"
|
|
23
21
|
},
|
|
24
22
|
"dependencies": {
|
|
25
|
-
"ai12z": "^3.0.
|
|
23
|
+
"ai12z": "^3.1.0-rc.10"
|
|
26
24
|
},
|
|
27
25
|
"devDependencies": {
|
|
28
26
|
"@types/react": "^18.2.55",
|
|
29
27
|
"react": "^18.2.0",
|
|
30
28
|
"react-dom": "^18.2.0",
|
|
31
|
-
"typescript": "^5.
|
|
29
|
+
"typescript": "^5.8.3"
|
|
32
30
|
},
|
|
33
31
|
"publishConfig": {
|
|
34
32
|
"access": "public"
|
|
35
33
|
},
|
|
36
|
-
"gitHead": "
|
|
34
|
+
"gitHead": "3f77b18b4188094e1c4152d2062e3a6fc71f35b1"
|
|
37
35
|
}
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
/* eslint-disable */
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* auto-generated react proxies */
|
|
4
|
-
import { createReactComponent } from './react-component-lib';
|
|
5
|
-
|
|
6
|
-
import type { JSX } from 'ai12z';
|
|
7
|
-
|
|
8
|
-
import { defineCustomElements } from 'ai12z/loader';
|
|
9
|
-
|
|
10
|
-
defineCustomElements();
|
|
11
|
-
export const Ai12zBot = /*@__PURE__*/createReactComponent<JSX.Ai12zBot, HTMLAi12zBotElement>('ai12z-bot');
|
|
12
|
-
export const Ai12zCarousel = /*@__PURE__*/createReactComponent<JSX.Ai12zCarousel, HTMLAi12zCarouselElement>('ai12z-carousel');
|
|
13
|
-
export const Ai12zCategory = /*@__PURE__*/createReactComponent<JSX.Ai12zCategory, HTMLAi12zCategoryElement>('ai12z-category');
|
|
14
|
-
export const Ai12zChat = /*@__PURE__*/createReactComponent<JSX.Ai12zChat, HTMLAi12zChatElement>('ai12z-chat');
|
|
15
|
-
export const Ai12zCta = /*@__PURE__*/createReactComponent<JSX.Ai12zCta, HTMLAi12zCtaElement>('ai12z-cta');
|
|
16
|
-
export const Ai12zInlineSearch = /*@__PURE__*/createReactComponent<JSX.Ai12zInlineSearch, HTMLAi12zInlineSearchElement>('ai12z-inline-search');
|
|
17
|
-
export const Ai12zInputForm = /*@__PURE__*/createReactComponent<JSX.Ai12zInputForm, HTMLAi12zInputFormElement>('ai12z-input-form');
|
|
18
|
-
export const Ai12zKnowledgeBox = /*@__PURE__*/createReactComponent<JSX.Ai12zKnowledgeBox, HTMLAi12zKnowledgeBoxElement>('ai12z-knowledge-box');
|
|
19
|
-
export const Ai12zMic = /*@__PURE__*/createReactComponent<JSX.Ai12zMic, HTMLAi12zMicElement>('ai12z-mic');
|
|
20
|
-
export const Ai12zSearchPanel = /*@__PURE__*/createReactComponent<JSX.Ai12zSearchPanel, HTMLAi12zSearchPanelElement>('ai12z-search-panel');
|
|
21
|
-
export const Ai12zSpinner = /*@__PURE__*/createReactComponent<JSX.Ai12zSpinner, HTMLAi12zSpinnerElement>('ai12z-spinner');
|
|
22
|
-
export const AudioRecorder = /*@__PURE__*/createReactComponent<JSX.AudioRecorder, HTMLAudioRecorderElement>('audio-recorder');
|
|
23
|
-
export const BotPopover = /*@__PURE__*/createReactComponent<JSX.BotPopover, HTMLBotPopoverElement>('bot-popover');
|
|
24
|
-
export const ChatbotHistory = /*@__PURE__*/createReactComponent<JSX.ChatbotHistory, HTMLChatbotHistoryElement>('chatbot-history');
|
|
25
|
-
export const ChatbotWelcome = /*@__PURE__*/createReactComponent<JSX.ChatbotWelcome, HTMLChatbotWelcomeElement>('chatbot-welcome');
|
|
26
|
-
export const DynamicForm = /*@__PURE__*/createReactComponent<JSX.DynamicForm, HTMLDynamicFormElement>('dynamic-form');
|
|
27
|
-
export const ItemList = /*@__PURE__*/createReactComponent<JSX.ItemList, HTMLItemListElement>('item-list');
|
|
28
|
-
export const ListData = /*@__PURE__*/createReactComponent<JSX.ListData, HTMLListDataElement>('list-data');
|
|
29
|
-
export const PrivacyModal = /*@__PURE__*/createReactComponent<JSX.PrivacyModal, HTMLPrivacyModalElement>('privacy-modal');
|
|
30
|
-
export const SearchResultsPage = /*@__PURE__*/createReactComponent<JSX.SearchResultsPage, HTMLSearchResultsPageElement>('search-results-page');
|
|
@@ -1,106 +0,0 @@
|
|
|
1
|
-
import React, { createElement } from 'react';
|
|
2
|
-
|
|
3
|
-
import { attachProps, camelToDashCase, createForwardRef, dashToPascalCase, isCoveredByReact, mergeRefs } from './utils';
|
|
4
|
-
|
|
5
|
-
export interface HTMLStencilElement extends HTMLElement {
|
|
6
|
-
componentOnReady(): Promise<this>;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
interface StencilReactInternalProps<ElementType> extends React.HTMLAttributes<ElementType> {
|
|
10
|
-
forwardedRef: React.RefObject<ElementType>;
|
|
11
|
-
ref?: React.Ref<any>;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
export const createReactComponent = <
|
|
15
|
-
PropType,
|
|
16
|
-
ElementType extends HTMLStencilElement,
|
|
17
|
-
ContextStateType = {},
|
|
18
|
-
ExpandedPropsTypes = {}
|
|
19
|
-
>(
|
|
20
|
-
tagName: string,
|
|
21
|
-
ReactComponentContext?: React.Context<ContextStateType>,
|
|
22
|
-
manipulatePropsFunction?: (
|
|
23
|
-
originalProps: StencilReactInternalProps<ElementType>,
|
|
24
|
-
propsToPass: any
|
|
25
|
-
) => ExpandedPropsTypes,
|
|
26
|
-
defineCustomElement?: () => void
|
|
27
|
-
) => {
|
|
28
|
-
if (defineCustomElement !== undefined) {
|
|
29
|
-
defineCustomElement();
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
const displayName = dashToPascalCase(tagName);
|
|
33
|
-
const ReactComponent = class extends React.Component<StencilReactInternalProps<ElementType>> {
|
|
34
|
-
componentEl!: ElementType;
|
|
35
|
-
|
|
36
|
-
setComponentElRef = (element: ElementType) => {
|
|
37
|
-
this.componentEl = element;
|
|
38
|
-
};
|
|
39
|
-
|
|
40
|
-
constructor(props: StencilReactInternalProps<ElementType>) {
|
|
41
|
-
super(props);
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
componentDidMount() {
|
|
45
|
-
this.componentDidUpdate(this.props);
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
componentDidUpdate(prevProps: StencilReactInternalProps<ElementType>) {
|
|
49
|
-
attachProps(this.componentEl, this.props, prevProps);
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
render() {
|
|
53
|
-
const { children, forwardedRef, style, className, ref, ...cProps } = this.props;
|
|
54
|
-
|
|
55
|
-
let propsToPass = Object.keys(cProps).reduce((acc: any, name) => {
|
|
56
|
-
const value = (cProps as any)[name];
|
|
57
|
-
|
|
58
|
-
if (name.indexOf('on') === 0 && name[2] === name[2].toUpperCase()) {
|
|
59
|
-
const eventName = name.substring(2).toLowerCase();
|
|
60
|
-
if (typeof document !== 'undefined' && isCoveredByReact(eventName)) {
|
|
61
|
-
acc[name] = value;
|
|
62
|
-
}
|
|
63
|
-
} else {
|
|
64
|
-
// we should only render strings, booleans, and numbers as attrs in html.
|
|
65
|
-
// objects, functions, arrays etc get synced via properties on mount.
|
|
66
|
-
const type = typeof value;
|
|
67
|
-
|
|
68
|
-
if (type === 'string' || type === 'boolean' || type === 'number') {
|
|
69
|
-
acc[camelToDashCase(name)] = value;
|
|
70
|
-
}
|
|
71
|
-
}
|
|
72
|
-
return acc;
|
|
73
|
-
}, {} as ExpandedPropsTypes);
|
|
74
|
-
|
|
75
|
-
if (manipulatePropsFunction) {
|
|
76
|
-
propsToPass = manipulatePropsFunction(this.props, propsToPass);
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
const newProps: Omit<StencilReactInternalProps<ElementType>, 'forwardedRef'> = {
|
|
80
|
-
...propsToPass,
|
|
81
|
-
ref: mergeRefs(forwardedRef, this.setComponentElRef),
|
|
82
|
-
style,
|
|
83
|
-
};
|
|
84
|
-
|
|
85
|
-
/**
|
|
86
|
-
* We use createElement here instead of
|
|
87
|
-
* React.createElement to work around a
|
|
88
|
-
* bug in Vite (https://github.com/vitejs/vite/issues/6104).
|
|
89
|
-
* React.createElement causes all elements to be rendered
|
|
90
|
-
* as <tagname> instead of the actual Web Component.
|
|
91
|
-
*/
|
|
92
|
-
return createElement(tagName, newProps, children);
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
static get displayName() {
|
|
96
|
-
return displayName;
|
|
97
|
-
}
|
|
98
|
-
};
|
|
99
|
-
|
|
100
|
-
// If context was passed to createReactComponent then conditionally add it to the Component Class
|
|
101
|
-
if (ReactComponentContext) {
|
|
102
|
-
ReactComponent.contextType = ReactComponentContext;
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
return createForwardRef<PropType, ElementType>(ReactComponent, displayName);
|
|
106
|
-
};
|
|
@@ -1,142 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import ReactDOM from 'react-dom';
|
|
3
|
-
|
|
4
|
-
import { OverlayEventDetail } from './interfaces';
|
|
5
|
-
import { StencilReactForwardedRef, attachProps, dashToPascalCase, defineCustomElement, setRef } from './utils';
|
|
6
|
-
|
|
7
|
-
interface OverlayElement extends HTMLElement {
|
|
8
|
-
present: () => Promise<void>;
|
|
9
|
-
dismiss: (data?: any, role?: string | undefined) => Promise<boolean>;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
export interface ReactOverlayProps {
|
|
13
|
-
children?: React.ReactNode;
|
|
14
|
-
isOpen: boolean;
|
|
15
|
-
onDidDismiss?: (event: CustomEvent<OverlayEventDetail>) => void;
|
|
16
|
-
onDidPresent?: (event: CustomEvent<OverlayEventDetail>) => void;
|
|
17
|
-
onWillDismiss?: (event: CustomEvent<OverlayEventDetail>) => void;
|
|
18
|
-
onWillPresent?: (event: CustomEvent<OverlayEventDetail>) => void;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
export const createOverlayComponent = <OverlayComponent extends object, OverlayType extends OverlayElement>(
|
|
22
|
-
tagName: string,
|
|
23
|
-
controller: { create: (options: any) => Promise<OverlayType> },
|
|
24
|
-
customElement?: any
|
|
25
|
-
) => {
|
|
26
|
-
defineCustomElement(tagName, customElement);
|
|
27
|
-
|
|
28
|
-
const displayName = dashToPascalCase(tagName);
|
|
29
|
-
const didDismissEventName = `on${displayName}DidDismiss`;
|
|
30
|
-
const didPresentEventName = `on${displayName}DidPresent`;
|
|
31
|
-
const willDismissEventName = `on${displayName}WillDismiss`;
|
|
32
|
-
const willPresentEventName = `on${displayName}WillPresent`;
|
|
33
|
-
|
|
34
|
-
type Props = OverlayComponent &
|
|
35
|
-
ReactOverlayProps & {
|
|
36
|
-
forwardedRef?: StencilReactForwardedRef<OverlayType>;
|
|
37
|
-
};
|
|
38
|
-
|
|
39
|
-
let isDismissing = false;
|
|
40
|
-
|
|
41
|
-
class Overlay extends React.Component<Props> {
|
|
42
|
-
overlay?: OverlayType;
|
|
43
|
-
el!: HTMLDivElement;
|
|
44
|
-
|
|
45
|
-
constructor(props: Props) {
|
|
46
|
-
super(props);
|
|
47
|
-
if (typeof document !== 'undefined') {
|
|
48
|
-
this.el = document.createElement('div');
|
|
49
|
-
}
|
|
50
|
-
this.handleDismiss = this.handleDismiss.bind(this);
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
static get displayName() {
|
|
54
|
-
return displayName;
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
componentDidMount() {
|
|
58
|
-
if (this.props.isOpen) {
|
|
59
|
-
this.present();
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
componentWillUnmount() {
|
|
64
|
-
if (this.overlay) {
|
|
65
|
-
this.overlay.dismiss();
|
|
66
|
-
}
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
handleDismiss(event: CustomEvent<OverlayEventDetail<any>>) {
|
|
70
|
-
if (this.props.onDidDismiss) {
|
|
71
|
-
this.props.onDidDismiss(event);
|
|
72
|
-
}
|
|
73
|
-
setRef(this.props.forwardedRef, null);
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
shouldComponentUpdate(nextProps: Props) {
|
|
77
|
-
// Check if the overlay component is about to dismiss
|
|
78
|
-
if (this.overlay && nextProps.isOpen !== this.props.isOpen && nextProps.isOpen === false) {
|
|
79
|
-
isDismissing = true;
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
return true;
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
async componentDidUpdate(prevProps: Props) {
|
|
86
|
-
if (this.overlay) {
|
|
87
|
-
attachProps(this.overlay, this.props, prevProps);
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
if (prevProps.isOpen !== this.props.isOpen && this.props.isOpen === true) {
|
|
91
|
-
this.present(prevProps);
|
|
92
|
-
}
|
|
93
|
-
if (this.overlay && prevProps.isOpen !== this.props.isOpen && this.props.isOpen === false) {
|
|
94
|
-
await this.overlay.dismiss();
|
|
95
|
-
isDismissing = false;
|
|
96
|
-
|
|
97
|
-
/**
|
|
98
|
-
* Now that the overlay is dismissed
|
|
99
|
-
* we need to render again so that any
|
|
100
|
-
* inner components will be unmounted
|
|
101
|
-
*/
|
|
102
|
-
this.forceUpdate();
|
|
103
|
-
}
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
async present(prevProps?: Props) {
|
|
107
|
-
const { children, isOpen, onDidDismiss, onDidPresent, onWillDismiss, onWillPresent, ...cProps } = this.props;
|
|
108
|
-
const elementProps = {
|
|
109
|
-
...cProps,
|
|
110
|
-
ref: this.props.forwardedRef,
|
|
111
|
-
[didDismissEventName]: this.handleDismiss,
|
|
112
|
-
[didPresentEventName]: (e: CustomEvent) => this.props.onDidPresent && this.props.onDidPresent(e),
|
|
113
|
-
[willDismissEventName]: (e: CustomEvent) => this.props.onWillDismiss && this.props.onWillDismiss(e),
|
|
114
|
-
[willPresentEventName]: (e: CustomEvent) => this.props.onWillPresent && this.props.onWillPresent(e),
|
|
115
|
-
};
|
|
116
|
-
|
|
117
|
-
this.overlay = await controller.create({
|
|
118
|
-
...elementProps,
|
|
119
|
-
component: this.el,
|
|
120
|
-
componentProps: {},
|
|
121
|
-
});
|
|
122
|
-
|
|
123
|
-
setRef(this.props.forwardedRef, this.overlay);
|
|
124
|
-
attachProps(this.overlay, elementProps, prevProps);
|
|
125
|
-
|
|
126
|
-
await this.overlay.present();
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
render() {
|
|
130
|
-
/**
|
|
131
|
-
* Continue to render the component even when
|
|
132
|
-
* overlay is dismissing otherwise component
|
|
133
|
-
* will be hidden before animation is done.
|
|
134
|
-
*/
|
|
135
|
-
return ReactDOM.createPortal(this.props.isOpen || isDismissing ? this.props.children : null, this.el);
|
|
136
|
-
}
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
return React.forwardRef<OverlayType, Props>((props, ref) => {
|
|
140
|
-
return <Overlay {...props} forwardedRef={ref} />;
|
|
141
|
-
});
|
|
142
|
-
};
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
// General types important to applications using stencil built components
|
|
2
|
-
export interface EventEmitter<T = any> {
|
|
3
|
-
emit: (data?: T) => CustomEvent<T>;
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
export interface StyleReactProps {
|
|
7
|
-
class?: string;
|
|
8
|
-
className?: string;
|
|
9
|
-
style?: { [key: string]: any };
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
export interface OverlayEventDetail<T = any> {
|
|
13
|
-
data?: T;
|
|
14
|
-
role?: string;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
export interface OverlayInterface {
|
|
18
|
-
el: HTMLElement;
|
|
19
|
-
animated: boolean;
|
|
20
|
-
keyboardClose: boolean;
|
|
21
|
-
overlayIndex: number;
|
|
22
|
-
presented: boolean;
|
|
23
|
-
|
|
24
|
-
enterAnimation?: any;
|
|
25
|
-
leaveAnimation?: any;
|
|
26
|
-
|
|
27
|
-
didPresent: EventEmitter<void>;
|
|
28
|
-
willPresent: EventEmitter<void>;
|
|
29
|
-
willDismiss: EventEmitter<OverlayEventDetail>;
|
|
30
|
-
didDismiss: EventEmitter<OverlayEventDetail>;
|
|
31
|
-
|
|
32
|
-
present(): Promise<void>;
|
|
33
|
-
dismiss(data?: any, role?: string): Promise<boolean>;
|
|
34
|
-
}
|
|
@@ -1,125 +0,0 @@
|
|
|
1
|
-
import { camelToDashCase } from './case';
|
|
2
|
-
|
|
3
|
-
export const attachProps = (node: HTMLElement, newProps: any, oldProps: any = {}) => {
|
|
4
|
-
// some test frameworks don't render DOM elements, so we test here to make sure we are dealing with DOM first
|
|
5
|
-
if (node instanceof Element) {
|
|
6
|
-
// add any classes in className to the class list
|
|
7
|
-
const className = getClassName(node.classList, newProps, oldProps);
|
|
8
|
-
if (className !== '') {
|
|
9
|
-
node.className = className;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
Object.keys(newProps).forEach((name) => {
|
|
13
|
-
if (
|
|
14
|
-
name === 'children' ||
|
|
15
|
-
name === 'style' ||
|
|
16
|
-
name === 'ref' ||
|
|
17
|
-
name === 'class' ||
|
|
18
|
-
name === 'className' ||
|
|
19
|
-
name === 'forwardedRef'
|
|
20
|
-
) {
|
|
21
|
-
return;
|
|
22
|
-
}
|
|
23
|
-
if (name.indexOf('on') === 0 && name[2] === name[2].toUpperCase()) {
|
|
24
|
-
const eventName = name.substring(2);
|
|
25
|
-
const eventNameLc = eventName[0].toLowerCase() + eventName.substring(1);
|
|
26
|
-
|
|
27
|
-
if (!isCoveredByReact(eventNameLc)) {
|
|
28
|
-
syncEvent(node, eventNameLc, newProps[name]);
|
|
29
|
-
}
|
|
30
|
-
} else {
|
|
31
|
-
(node as any)[name] = newProps[name];
|
|
32
|
-
const propType = typeof newProps[name];
|
|
33
|
-
if (propType === 'string') {
|
|
34
|
-
node.setAttribute(camelToDashCase(name), newProps[name]);
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
|
-
});
|
|
38
|
-
}
|
|
39
|
-
};
|
|
40
|
-
|
|
41
|
-
export const getClassName = (classList: DOMTokenList, newProps: any, oldProps: any) => {
|
|
42
|
-
const newClassProp: string = newProps.className || newProps.class;
|
|
43
|
-
const oldClassProp: string = oldProps.className || oldProps.class;
|
|
44
|
-
// map the classes to Maps for performance
|
|
45
|
-
const currentClasses = arrayToMap(classList);
|
|
46
|
-
const incomingPropClasses = arrayToMap(newClassProp ? newClassProp.split(' ') : []);
|
|
47
|
-
const oldPropClasses = arrayToMap(oldClassProp ? oldClassProp.split(' ') : []);
|
|
48
|
-
const finalClassNames: string[] = [];
|
|
49
|
-
// loop through each of the current classes on the component
|
|
50
|
-
// to see if it should be a part of the classNames added
|
|
51
|
-
currentClasses.forEach((currentClass) => {
|
|
52
|
-
if (incomingPropClasses.has(currentClass)) {
|
|
53
|
-
// add it as its already included in classnames coming in from newProps
|
|
54
|
-
finalClassNames.push(currentClass);
|
|
55
|
-
incomingPropClasses.delete(currentClass);
|
|
56
|
-
} else if (!oldPropClasses.has(currentClass)) {
|
|
57
|
-
// add it as it has NOT been removed by user
|
|
58
|
-
finalClassNames.push(currentClass);
|
|
59
|
-
}
|
|
60
|
-
});
|
|
61
|
-
incomingPropClasses.forEach((s) => finalClassNames.push(s));
|
|
62
|
-
return finalClassNames.join(' ');
|
|
63
|
-
};
|
|
64
|
-
|
|
65
|
-
/**
|
|
66
|
-
* Transforms a React event name to a browser event name.
|
|
67
|
-
*/
|
|
68
|
-
export const transformReactEventName = (eventNameSuffix: string) => {
|
|
69
|
-
switch (eventNameSuffix) {
|
|
70
|
-
case 'doubleclick':
|
|
71
|
-
return 'dblclick';
|
|
72
|
-
}
|
|
73
|
-
return eventNameSuffix;
|
|
74
|
-
};
|
|
75
|
-
|
|
76
|
-
/**
|
|
77
|
-
* Checks if an event is supported in the current execution environment.
|
|
78
|
-
* @license Modernizr 3.0.0pre (Custom Build) | MIT
|
|
79
|
-
*/
|
|
80
|
-
export const isCoveredByReact = (eventNameSuffix: string) => {
|
|
81
|
-
if (typeof document === 'undefined') {
|
|
82
|
-
return true;
|
|
83
|
-
} else {
|
|
84
|
-
const eventName = 'on' + transformReactEventName(eventNameSuffix);
|
|
85
|
-
let isSupported = eventName in document;
|
|
86
|
-
|
|
87
|
-
if (!isSupported) {
|
|
88
|
-
const element = document.createElement('div');
|
|
89
|
-
element.setAttribute(eventName, 'return;');
|
|
90
|
-
isSupported = typeof (element as any)[eventName] === 'function';
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
return isSupported;
|
|
94
|
-
}
|
|
95
|
-
};
|
|
96
|
-
|
|
97
|
-
export const syncEvent = (
|
|
98
|
-
node: Element & { __events?: { [key: string]: ((e: Event) => any) | undefined } },
|
|
99
|
-
eventName: string,
|
|
100
|
-
newEventHandler?: (e: Event) => any
|
|
101
|
-
) => {
|
|
102
|
-
const eventStore = node.__events || (node.__events = {});
|
|
103
|
-
const oldEventHandler = eventStore[eventName];
|
|
104
|
-
|
|
105
|
-
// Remove old listener so they don't double up.
|
|
106
|
-
if (oldEventHandler) {
|
|
107
|
-
node.removeEventListener(eventName, oldEventHandler);
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
// Bind new listener.
|
|
111
|
-
node.addEventListener(
|
|
112
|
-
eventName,
|
|
113
|
-
(eventStore[eventName] = function handler(e: Event) {
|
|
114
|
-
if (newEventHandler) {
|
|
115
|
-
newEventHandler.call(this, e);
|
|
116
|
-
}
|
|
117
|
-
})
|
|
118
|
-
);
|
|
119
|
-
};
|
|
120
|
-
|
|
121
|
-
const arrayToMap = (arr: string[] | DOMTokenList) => {
|
|
122
|
-
const map = new Map<string, string>();
|
|
123
|
-
(arr as string[]).forEach((s: string) => map.set(s, s));
|
|
124
|
-
return map;
|
|
125
|
-
};
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
export const dashToPascalCase = (str: string) =>
|
|
2
|
-
str
|
|
3
|
-
.toLowerCase()
|
|
4
|
-
.split('-')
|
|
5
|
-
.map((segment) => segment.charAt(0).toUpperCase() + segment.slice(1))
|
|
6
|
-
.join('');
|
|
7
|
-
export const camelToDashCase = (str: string) => str.replace(/([A-Z])/g, (m: string) => `-${m[0].toLowerCase()}`);
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
export const isDevMode = () => {
|
|
2
|
-
return process && process.env && process.env.NODE_ENV === 'development';
|
|
3
|
-
};
|
|
4
|
-
|
|
5
|
-
const warnings: { [key: string]: boolean } = {};
|
|
6
|
-
|
|
7
|
-
export const deprecationWarning = (key: string, message: string) => {
|
|
8
|
-
if (isDevMode()) {
|
|
9
|
-
if (!warnings[key]) {
|
|
10
|
-
console.warn(message);
|
|
11
|
-
warnings[key] = true;
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
};
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
|
|
3
|
-
import type { StyleReactProps } from '../interfaces';
|
|
4
|
-
|
|
5
|
-
export type StencilReactExternalProps<PropType, ElementType> = PropType &
|
|
6
|
-
Omit<React.HTMLAttributes<ElementType>, 'style'> &
|
|
7
|
-
StyleReactProps;
|
|
8
|
-
|
|
9
|
-
// This will be replaced with React.ForwardedRef when react-output-target is upgraded to React v17
|
|
10
|
-
export type StencilReactForwardedRef<T> = ((instance: T | null) => void) | React.MutableRefObject<T | null> | null;
|
|
11
|
-
|
|
12
|
-
export const setRef = (ref: StencilReactForwardedRef<any> | React.Ref<any> | undefined, value: any) => {
|
|
13
|
-
if (typeof ref === 'function') {
|
|
14
|
-
ref(value);
|
|
15
|
-
} else if (ref != null) {
|
|
16
|
-
// Cast as a MutableRef so we can assign current
|
|
17
|
-
(ref as React.MutableRefObject<any>).current = value;
|
|
18
|
-
}
|
|
19
|
-
};
|
|
20
|
-
|
|
21
|
-
export const mergeRefs = (
|
|
22
|
-
...refs: (StencilReactForwardedRef<any> | React.Ref<any> | undefined)[]
|
|
23
|
-
): React.RefCallback<any> => {
|
|
24
|
-
return (value: any) => {
|
|
25
|
-
refs.forEach((ref) => {
|
|
26
|
-
setRef(ref, value);
|
|
27
|
-
});
|
|
28
|
-
};
|
|
29
|
-
};
|
|
30
|
-
|
|
31
|
-
export const createForwardRef = <PropType, ElementType>(ReactComponent: any, displayName: string) => {
|
|
32
|
-
const forwardRef = (
|
|
33
|
-
props: StencilReactExternalProps<PropType, ElementType>,
|
|
34
|
-
ref: StencilReactForwardedRef<ElementType>
|
|
35
|
-
) => {
|
|
36
|
-
return <ReactComponent {...props} forwardedRef={ref} />;
|
|
37
|
-
};
|
|
38
|
-
forwardRef.displayName = displayName;
|
|
39
|
-
|
|
40
|
-
return React.forwardRef(forwardRef);
|
|
41
|
-
};
|
|
42
|
-
|
|
43
|
-
export const defineCustomElement = (tagName: string, customElement: any) => {
|
|
44
|
-
if (customElement !== undefined && typeof customElements !== 'undefined' && !customElements.get(tagName)) {
|
|
45
|
-
customElements.define(tagName, customElement);
|
|
46
|
-
}
|
|
47
|
-
};
|
|
48
|
-
|
|
49
|
-
export * from './attachProps';
|
|
50
|
-
export * from './case';
|
package/lib/index.ts
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
// export * from "./components/stencil-generated"
|
|
2
|
-
export { defineCustomElements } from "ai12z/loader"
|
|
3
|
-
import { Ai12zBot, Ai12zCta, Ai12zKnowledgeBox, Ai12zInlineSearch, Ai12zSearchPanel, SearchResultsPage } from "./components/stencil-generated"
|
|
4
|
-
// import packageJson from "../package.json" // Adjust path as needed
|
|
5
|
-
|
|
6
|
-
// Ai12zBot.defaultProps = { assetPath: `https://unpkg.com/@ai12z/react@${packageJson.version}/dist/build/assets` }
|
|
7
|
-
// Ai12zCta.defaultProps = { assetPath: `https://unpkg.com/@ai12z/react@${packageJson.version}/dist/build/assets` }
|
|
8
|
-
// Ai12zKnowledgeBox.defaultProps = { assetPath: `https://unpkg.com/@ai12z/react@${packageJson.version}/dist/build/assets` }
|
|
9
|
-
|
|
10
|
-
export { Ai12zBot, Ai12zCta, Ai12zKnowledgeBox, Ai12zInlineSearch, Ai12zSearchPanel, SearchResultsPage }
|