@sikka/hawa 0.0.2 → 0.0.5
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/.github/workflows/hawa-publish-push.yml +45 -0
- package/.github/workflows/hawa-publish.yml +45 -0
- package/.prettierrc +28 -28
- package/README.md +149 -148
- package/es/index.es.js +1 -0
- package/lib/index.js +1 -0
- package/package.json +62 -47
- package/rollup.config.js +30 -30
- package/src/Assets/images/card-background/1.jpeg +0 -0
- package/src/Assets/images/card-background/10.jpeg +0 -0
- package/src/Assets/images/card-background/11.jpeg +0 -0
- package/src/Assets/images/card-background/12.jpeg +0 -0
- package/src/Assets/images/card-background/13.jpeg +0 -0
- package/src/Assets/images/card-background/14.jpeg +0 -0
- package/src/Assets/images/card-background/15.jpeg +0 -0
- package/src/Assets/images/card-background/16.jpeg +0 -0
- package/src/Assets/images/card-background/17.jpeg +0 -0
- package/src/Assets/images/card-background/18.jpeg +0 -0
- package/src/Assets/images/card-background/19.jpeg +0 -0
- package/src/Assets/images/card-background/2.jpeg +0 -0
- package/src/Assets/images/card-background/20.jpeg +0 -0
- package/src/Assets/images/card-background/21.jpeg +0 -0
- package/src/Assets/images/card-background/22.jpeg +0 -0
- package/src/Assets/images/card-background/23.jpeg +0 -0
- package/src/Assets/images/card-background/24.jpeg +0 -0
- package/src/Assets/images/card-background/25.jpeg +0 -0
- package/src/Assets/images/card-background/3.jpeg +0 -0
- package/src/Assets/images/card-background/4.jpeg +0 -0
- package/src/Assets/images/card-background/5.jpeg +0 -0
- package/src/Assets/images/card-background/6.jpeg +0 -0
- package/src/Assets/images/card-background/7.jpeg +0 -0
- package/src/Assets/images/card-background/8.jpeg +0 -0
- package/src/Assets/images/card-background/9.jpeg +0 -0
- package/src/Assets/images/card-type/amex.png +0 -0
- package/src/Assets/images/card-type/diners.png +0 -0
- package/src/Assets/images/card-type/discover.png +0 -0
- package/src/Assets/images/card-type/mastercard.png +0 -0
- package/src/Assets/images/card-type/troy.png +0 -0
- package/src/Assets/images/card-type/unionpay.png +0 -0
- package/src/Assets/images/card-type/visa.png +0 -0
- package/src/blocks/Account/UserProfile.js +15 -0
- package/src/blocks/Account/UserSettings.js +15 -0
- package/src/blocks/Account/index.js +2 -0
- package/src/blocks/AuthForms/NewPasswordForm.js +24 -0
- package/src/blocks/AuthForms/ResetPasswordForm.js +13 -0
- package/src/blocks/AuthForms/SignInForm.js +55 -0
- package/src/blocks/AuthForms/SignUpForm.js +68 -0
- package/src/{components/Hawa → blocks}/AuthForms/index.js +4 -4
- package/src/blocks/Payment/CreditCardForm.js +31 -0
- package/src/blocks/Payment/Form/CForm.js +328 -0
- package/src/blocks/Payment/Form/Card.js +242 -0
- package/src/blocks/Payment/Gateway/GooglePay.js +251 -0
- package/src/blocks/Payment/Gateway/Payfort.js +90 -0
- package/src/blocks/Payment/Gateway/Paypal.js +138 -0
- package/src/blocks/Payment/Gateway/Wallet.js +149 -0
- package/src/blocks/Payment/PaymentMethod.js +132 -0
- package/src/blocks/Payment/SelectPayment.js +95 -0
- package/src/blocks/Payment/index.js +16 -0
- package/src/index.js +4 -1
- package/src/layout/Box.js +39 -0
- package/src/layout/index.js +1 -0
- package/src/stories/ActionButton.stories.js +53 -0
- package/src/stories/AdaptiveButton.stories.js +80 -80
- package/src/stories/Alert.stories.js +41 -48
- package/src/stories/BlocksStories/AuthForm.stories.js +99 -0
- package/src/stories/BlocksStories/PaymentForm.stories.js +111 -0
- package/src/stories/BlocksStories/UserAccount.stories.js +46 -0
- package/src/stories/CheckBox.stories.js +35 -34
- package/src/stories/GlobalVariables.stories.js +44 -108
- package/src/stories/HawaProvider.stories.js +22 -23
- package/src/stories/InputLabel.stories.js +92 -100
- package/src/stories/Introduction.stories.js +211 -0
- package/src/stories/LayoutStories/Box.stories.js +56 -0
- package/src/stories/RadioSelector.stories.js +69 -69
- package/src/stories/TextField.stories.js +50 -50
- package/src/styles.css +400 -400
- package/src/styles.scss +679 -0
- package/src/themes/HawaProvider.js +87 -0
- package/src/ui/ActionButton.js +40 -0
- package/src/{components/Hawa/AdaptiveButton → ui}/AdaptiveButton.js +252 -254
- package/src/ui/ApplePayButton.js +94 -0
- package/src/{components/Hawa/AutoCompleteField/AutoCompleteField.jsx → ui/AutoCompleteField.js} +32 -33
- package/src/{components/Hawa/Checkbox/Checkbox.jsx → ui/Checkbox.js} +21 -20
- package/src/{components/Hawa/DragDropImages/DragDropImages.jsx → ui/DragDropImages.js} +180 -180
- package/src/ui/GithubButton.js +91 -0
- package/src/ui/GoogleButton.js +83 -0
- package/src/ui/GooglePayButton.js +94 -0
- package/src/{components/Hawa/Hawa.jsx → ui/Hawa.js} +3 -3
- package/src/ui/HawaInputLabel.js +33 -0
- package/src/{components/Hawa/TextArea/TextArea.jsx → ui/HawaTextArea.js} +38 -38
- package/src/ui/HawaTextField.js +118 -0
- package/src/ui/MadaButton.js +94 -0
- package/src/ui/PayPalButton.js +94 -0
- package/src/{components/Hawa/RadioBox/RadioBox.jsx → ui/RadioBox.js} +29 -29
- package/src/{components/Hawa/RadioSelector/RadioSelector.jsx → ui/RadioSelector.js} +51 -51
- package/src/{components/Hawa/Row/Row.jsx → ui/Row.js} +21 -21
- package/src/ui/STCPayButton.js +94 -0
- package/src/{components/Hawa/SelectedField/SelectedField.jsx → ui/SelectedField.js} +46 -46
- package/src/ui/StyledAlert.js +30 -0
- package/src/{components/Hawa/StyledTooltip → ui}/StyledTooltip.js +46 -46
- package/src/{components/Hawa/TabPanel/TabPanel.jsx → ui/TabPanel.js} +37 -37
- package/src/ui/TwitterButton.js +84 -0
- package/src/ui/VisaMasterButton.js +94 -0
- package/src/ui/WalletButton.js +91 -0
- package/src/ui/index.js +22 -0
- package/src/util.js +20 -20
- package/storybook-static/0.54f7e52e.iframe.bundle.js +1 -0
- package/storybook-static/0.f47eb24a4893a96ec307.manager.bundle.js +1 -0
- package/storybook-static/1.95be85dd.iframe.bundle.js +3 -0
- package/storybook-static/{1.7c0dc86d.iframe.bundle.js.LICENSE.txt → 1.95be85dd.iframe.bundle.js.LICENSE.txt} +0 -0
- package/storybook-static/1.95be85dd.iframe.bundle.js.map +1 -0
- package/storybook-static/2.eb601582.iframe.bundle.js +1 -0
- package/storybook-static/{3.592ce28f.iframe.bundle.js → 3.d72f7fac.iframe.bundle.js} +0 -0
- package/storybook-static/4.0fcda1281dc1961dbe94.manager.bundle.js +2 -0
- package/storybook-static/{5.f459d151315e6780c20f.manager.bundle.js.LICENSE.txt → 4.0fcda1281dc1961dbe94.manager.bundle.js.LICENSE.txt} +0 -0
- package/storybook-static/5.63ab4f94d50a3acf080d.manager.bundle.js +1 -0
- package/storybook-static/6.a6d45262f7e98f3f18d3.manager.bundle.js +2 -0
- package/storybook-static/{11.f4e922583ae35da460f3.manager.bundle.js.LICENSE.txt → 6.a6d45262f7e98f3f18d3.manager.bundle.js.LICENSE.txt} +0 -0
- package/storybook-static/{7.3d04765dbf3f1dcd706c.manager.bundle.js → 7.097710753af9a1c41b80.manager.bundle.js} +1 -1
- package/storybook-static/7.ffb0d84b.iframe.bundle.js +1 -0
- package/storybook-static/{8.8e2132ec.iframe.bundle.js → 8.68cd1217.iframe.bundle.js} +2 -2
- package/storybook-static/{8.8e2132ec.iframe.bundle.js.LICENSE.txt → 8.68cd1217.iframe.bundle.js.LICENSE.txt} +0 -0
- package/storybook-static/8.68cd1217.iframe.bundle.js.map +1 -0
- package/storybook-static/8.76c3cbf398692028e834.manager.bundle.js +1 -0
- package/storybook-static/{9.109ea555.iframe.bundle.js → 9.488e3969.iframe.bundle.js} +0 -0
- package/storybook-static/iframe.html +2 -2
- package/storybook-static/index.html +9 -1
- package/storybook-static/main.044648aa.iframe.bundle.js +1 -0
- package/storybook-static/main.ac6e4b72b033097dad76.manager.bundle.js +1 -0
- package/storybook-static/{runtime~main.ffc8677e.iframe.bundle.js → runtime~main.3e280e98.iframe.bundle.js} +1 -1
- package/storybook-static/runtime~main.c8dac23bc753439736f0.manager.bundle.js +1 -0
- package/storybook-static/vendors~main.a697e07137d366f95f76.manager.bundle.js +2 -0
- package/storybook-static/{vendors~main.a935f15a2179a6eff5fd.manager.bundle.js.LICENSE.txt → vendors~main.a697e07137d366f95f76.manager.bundle.js.LICENSE.txt} +6 -12
- package/storybook-static/vendors~main.d75dc38b.iframe.bundle.js +76 -0
- package/storybook-static/{vendors~main.4aa936b1.iframe.bundle.js.LICENSE.txt → vendors~main.d75dc38b.iframe.bundle.js.LICENSE.txt} +3 -45
- package/storybook-static/vendors~main.d75dc38b.iframe.bundle.js.map +1 -0
- package/tools/build-styles.js +17 -0
- package/dist/index.es.js +0 -37
- package/dist/index.js +0 -37
- package/src/components/Hawa/AdaptiveButton/index.js +0 -1
- package/src/components/Hawa/AuthForms/NewPasswordForm.js +0 -23
- package/src/components/Hawa/AuthForms/ResetPasswordForm.js +0 -21
- package/src/components/Hawa/AuthForms/SignInForm.js +0 -25
- package/src/components/Hawa/AuthForms/SignUpForm.js +0 -26
- package/src/components/Hawa/AuthForms/viaFacebook.js +0 -0
- package/src/components/Hawa/AuthForms/viaGithub.js +0 -0
- package/src/components/Hawa/AuthForms/viaGoogle.js +0 -0
- package/src/components/Hawa/AuthForms/viaTwitter.js +0 -0
- package/src/components/Hawa/AutoCompleteField/index.js +0 -1
- package/src/components/Hawa/Box/Box.js +0 -18
- package/src/components/Hawa/Box/index.js +0 -1
- package/src/components/Hawa/Checkbox/index.js +0 -1
- package/src/components/Hawa/DragDropImages/index.js +0 -1
- package/src/components/Hawa/HawaProvider/HawaProvider.js +0 -19
- package/src/components/Hawa/HawaProvider/index.js +0 -1
- package/src/components/Hawa/InputLabel/StyledInputLabel.js +0 -15
- package/src/components/Hawa/InputLabel/index.js +0 -1
- package/src/components/Hawa/RadioBox/index.js +0 -1
- package/src/components/Hawa/RadioSelector/index.js +0 -1
- package/src/components/Hawa/Row/index.js +0 -1
- package/src/components/Hawa/SelectedField/index.js +0 -1
- package/src/components/Hawa/StyledAlert/StyledAlert.js +0 -15
- package/src/components/Hawa/StyledAlert/index.js +0 -1
- package/src/components/Hawa/StyledTooltip/index.js +0 -1
- package/src/components/Hawa/TabPanel/index.js +0 -1
- package/src/components/Hawa/TextArea/index.js +0 -1
- package/src/components/Hawa/TextField/TextField.js +0 -54
- package/src/components/Hawa/TextField/index.js +0 -1
- package/src/components/Hawa/index.js +0 -10
- package/src/stories/AuthForm.stories.js +0 -76
- package/src/stories/Box.stories.js +0 -45
- package/storybook-static/0.12392f0b.iframe.bundle.js +0 -1
- package/storybook-static/0.55b012452099ace2dca6.manager.bundle.js +0 -1
- package/storybook-static/1.0f38715c61c7c3cd11db.manager.bundle.js +0 -1
- package/storybook-static/1.7c0dc86d.iframe.bundle.js +0 -3
- package/storybook-static/1.7c0dc86d.iframe.bundle.js.map +0 -1
- package/storybook-static/10.9f2923a7561bc20fffdb.manager.bundle.js +0 -1
- package/storybook-static/11.f4e922583ae35da460f3.manager.bundle.js +0 -2
- package/storybook-static/12.1415460941f0bdcb8fa8.manager.bundle.js +0 -1
- package/storybook-static/2.ee357266.iframe.bundle.js +0 -1
- package/storybook-static/5.f459d151315e6780c20f.manager.bundle.js +0 -2
- package/storybook-static/6.3bd64d820f3745f262ff.manager.bundle.js +0 -1
- package/storybook-static/7.af56919f.iframe.bundle.js +0 -1
- package/storybook-static/8.8e2132ec.iframe.bundle.js.map +0 -1
- package/storybook-static/8.b541eadfcb9164835dfc.manager.bundle.js +0 -1
- package/storybook-static/9.411ac8e451bbb10926c7.manager.bundle.js +0 -1
- package/storybook-static/main.78b7d418.iframe.bundle.js +0 -1
- package/storybook-static/main.9bb085ebb152f5b19a2a.manager.bundle.js +0 -1
- package/storybook-static/runtime~main.9468098d21070636985f.manager.bundle.js +0 -1
- package/storybook-static/vendors~main.4aa936b1.iframe.bundle.js +0 -3
- package/storybook-static/vendors~main.4aa936b1.iframe.bundle.js.map +0 -1
- package/storybook-static/vendors~main.a935f15a2179a6eff5fd.manager.bundle.js +0 -2
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import {
|
|
3
|
+
NewPasswordForm,
|
|
4
|
+
ResetPasswordForm,
|
|
5
|
+
SignInForm,
|
|
6
|
+
SignUpForm
|
|
7
|
+
} from "../../blocks/AuthForms";
|
|
8
|
+
import { defaultTheme, HawaProvider } from "../../themes/HawaProvider";
|
|
9
|
+
|
|
10
|
+
export default {
|
|
11
|
+
title: "Blocks/AuthBlocks",
|
|
12
|
+
component: [SignInForm, SignUpForm, NewPasswordForm, NewPasswordForm],
|
|
13
|
+
argTypes: {
|
|
14
|
+
theme: {
|
|
15
|
+
options: ["primary", "secondary", "default"],
|
|
16
|
+
control: { type: "select" }
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
const SignInTemplate = (args) => {
|
|
22
|
+
return (
|
|
23
|
+
<HawaProvider theme={{ ...defaultTheme }}>
|
|
24
|
+
<SignInForm
|
|
25
|
+
{...args}
|
|
26
|
+
theme={args.theme}
|
|
27
|
+
handleSignIn={() => console.log("singing in via email")}
|
|
28
|
+
viaGoogle={args.viaGoogle}
|
|
29
|
+
googleButtonLabel={"Sign in with Google"}
|
|
30
|
+
handleGoogleSignIn={() => console.log("signing in via google")}
|
|
31
|
+
viaGithub={args.viaGithub}
|
|
32
|
+
githubButtonLabel={"Sign in with Github"}
|
|
33
|
+
handleGithubSignIn={() => console.log("signing in via github")}
|
|
34
|
+
viaTwitter={args.viaTwitter}
|
|
35
|
+
twitterButtonLabel={"Sign in with Twitter"}
|
|
36
|
+
handleTwitterSignIn={() => console.log("signing in via Twitter")}
|
|
37
|
+
/>
|
|
38
|
+
</HawaProvider>
|
|
39
|
+
);
|
|
40
|
+
};
|
|
41
|
+
|
|
42
|
+
export const SignIn = SignInTemplate.bind({});
|
|
43
|
+
SignIn.args = {
|
|
44
|
+
viaGoogle: true,
|
|
45
|
+
viaGithub: true,
|
|
46
|
+
viaTwitter: true,
|
|
47
|
+
theme: "primary"
|
|
48
|
+
};
|
|
49
|
+
|
|
50
|
+
const SignUpTemplate = (args) => {
|
|
51
|
+
return (
|
|
52
|
+
<HawaProvider theme={{ ...defaultTheme }}>
|
|
53
|
+
<SignUpForm
|
|
54
|
+
{...args}
|
|
55
|
+
theme={args.theme}
|
|
56
|
+
handleSignUp={() => console.log("singing up via email")}
|
|
57
|
+
viaGoogle={args.viaGoogle}
|
|
58
|
+
googleButtonLabel={"Sign up with Google"}
|
|
59
|
+
handleGoogleSignUp={() => console.log("signing up via google")}
|
|
60
|
+
viaGithub={args.viaGithub}
|
|
61
|
+
githubButtonLabel={"Sign up with Github"}
|
|
62
|
+
handleGithubSignUp={() => console.log("signing up via github")}
|
|
63
|
+
viaTwitter={args.viaTwitter}
|
|
64
|
+
twitterButtonLabel={"Sign up with Twitter"}
|
|
65
|
+
handleTwitterSignUp={() => console.log("signing up via Twitter")}
|
|
66
|
+
/>
|
|
67
|
+
</HawaProvider>
|
|
68
|
+
);
|
|
69
|
+
};
|
|
70
|
+
export const SignUp = SignUpTemplate.bind({});
|
|
71
|
+
SignUp.args = {
|
|
72
|
+
viaGoogle: true,
|
|
73
|
+
viaGithub: true,
|
|
74
|
+
viaTwitter: true,
|
|
75
|
+
theme: "primary"
|
|
76
|
+
};
|
|
77
|
+
|
|
78
|
+
const ResetPasswordTemplate = (args) => {
|
|
79
|
+
return (
|
|
80
|
+
<HawaProvider theme={{ ...defaultTheme }}>
|
|
81
|
+
<ResetPasswordForm theme={args.theme} {...args} />
|
|
82
|
+
</HawaProvider>
|
|
83
|
+
);
|
|
84
|
+
};
|
|
85
|
+
export const ResetPassword = ResetPasswordTemplate.bind({});
|
|
86
|
+
ResetPassword.args = {
|
|
87
|
+
theme: "primary"
|
|
88
|
+
};
|
|
89
|
+
const NewPasswordTemplate = (args) => {
|
|
90
|
+
return (
|
|
91
|
+
<HawaProvider theme={{ ...defaultTheme }}>
|
|
92
|
+
<NewPasswordForm theme={args.theme} {...args} />
|
|
93
|
+
</HawaProvider>
|
|
94
|
+
);
|
|
95
|
+
};
|
|
96
|
+
export const NewPassword = NewPasswordTemplate.bind({});
|
|
97
|
+
NewPassword.args = {
|
|
98
|
+
theme: "primary"
|
|
99
|
+
};
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { SelectPayment, CreditCardForm } from "../../blocks/Payment";
|
|
3
|
+
import { defaultTheme, HawaProvider } from "../../themes/HawaProvider";
|
|
4
|
+
|
|
5
|
+
export default {
|
|
6
|
+
title: "Blocks/PaymentBlocks",
|
|
7
|
+
component: [SelectPayment, CreditCardForm],
|
|
8
|
+
argTypes: {
|
|
9
|
+
theme: {
|
|
10
|
+
options: ["primary", "secondary", "default"],
|
|
11
|
+
control: { type: "select" }
|
|
12
|
+
},
|
|
13
|
+
viaWallet: { control: "boolean" },
|
|
14
|
+
viaApplePay: { control: "boolean" },
|
|
15
|
+
viaGooglePay: { control: "boolean" },
|
|
16
|
+
viaSTCPay: { control: "boolean" },
|
|
17
|
+
viaCreditCard: { control: "boolean" },
|
|
18
|
+
viaPayPal: { control: "boolean" }
|
|
19
|
+
},
|
|
20
|
+
args: {
|
|
21
|
+
theme: "primary",
|
|
22
|
+
viaWallet: true,
|
|
23
|
+
viaApplePay: true,
|
|
24
|
+
viaGooglePay: true,
|
|
25
|
+
viaSTCPay: true,
|
|
26
|
+
viaCreditCard: true,
|
|
27
|
+
viaPayPal: true
|
|
28
|
+
}
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
export const PaymentSelection = (args) => {
|
|
32
|
+
return (
|
|
33
|
+
<HawaProvider theme={{ ...defaultTheme }}>
|
|
34
|
+
<SelectPayment
|
|
35
|
+
{...args}
|
|
36
|
+
theme={args.theme}
|
|
37
|
+
walletLabel="Wallet Balance"
|
|
38
|
+
handleWallet={() => console.log("paying via wallet")}
|
|
39
|
+
visaMasterLabel="Credit Card"
|
|
40
|
+
handleCreditCard={() => console.log("paying via Credit Card")}
|
|
41
|
+
madaLabel="Mada"
|
|
42
|
+
handleMada={() => console.log("paying via Mada")}
|
|
43
|
+
paypalLabel="PayPal"
|
|
44
|
+
handlePayPal={() => console.log("paying via PayPal")}
|
|
45
|
+
applePayLabel="Apple Pay"
|
|
46
|
+
handleApplePay={() => console.log("paying via Apple Pay")}
|
|
47
|
+
googlePayLabel="Google Pay"
|
|
48
|
+
handleGooglePay={() => console.log("paying via Google Pay")}
|
|
49
|
+
stcPayLabel="STC Pay"
|
|
50
|
+
handleSTCPay={() => console.log("paying via STC Pay")}
|
|
51
|
+
/>
|
|
52
|
+
</HawaProvider>
|
|
53
|
+
);
|
|
54
|
+
};
|
|
55
|
+
|
|
56
|
+
export const PayViaWallet = (args) => {
|
|
57
|
+
return (
|
|
58
|
+
<HawaProvider theme={{ ...defaultTheme }}>
|
|
59
|
+
<SelectPayment
|
|
60
|
+
{...args}
|
|
61
|
+
theme={args.theme}
|
|
62
|
+
walletLabel="Wallet Balance"
|
|
63
|
+
handleWallet={() => console.log("paying via wallet")}
|
|
64
|
+
visaMasterLabel="Credit Card"
|
|
65
|
+
handleCreditCard={() => console.log("paying via Credit Card")}
|
|
66
|
+
madaLabel="Mada"
|
|
67
|
+
handleMada={() => console.log("paying via Mada")}
|
|
68
|
+
paypalLabel="PayPal"
|
|
69
|
+
handlePayPal={() => console.log("paying via PayPal")}
|
|
70
|
+
applePayLabel="Apple Pay"
|
|
71
|
+
handleApplePay={() => console.log("paying via Apple Pay")}
|
|
72
|
+
googlePayLabel="Google Pay"
|
|
73
|
+
handleGooglePay={() => console.log("paying via Google Pay")}
|
|
74
|
+
stcPayLabel="STC Pay"
|
|
75
|
+
handleSTCPay={() => console.log("paying via STC Pay")}
|
|
76
|
+
/>
|
|
77
|
+
</HawaProvider>
|
|
78
|
+
);
|
|
79
|
+
};
|
|
80
|
+
export const PayViaCreditCard = (args) => {
|
|
81
|
+
return (
|
|
82
|
+
<HawaProvider theme={{ ...defaultTheme }}>
|
|
83
|
+
<CreditCardForm />
|
|
84
|
+
</HawaProvider>
|
|
85
|
+
);
|
|
86
|
+
};
|
|
87
|
+
|
|
88
|
+
export const ChargeWallet = (args) => {
|
|
89
|
+
return (
|
|
90
|
+
<HawaProvider theme={{ ...defaultTheme }}>
|
|
91
|
+
<SelectPayment
|
|
92
|
+
{...args}
|
|
93
|
+
theme={args.theme}
|
|
94
|
+
walletLabel="Wallet Balance"
|
|
95
|
+
handleWallet={() => console.log("paying via wallet")}
|
|
96
|
+
visaMasterLabel="Credit Card"
|
|
97
|
+
handleCreditCard={() => console.log("paying via Credit Card")}
|
|
98
|
+
madaLabel="Mada"
|
|
99
|
+
handleMada={() => console.log("paying via Mada")}
|
|
100
|
+
paypalLabel="PayPal"
|
|
101
|
+
handlePayPal={() => console.log("paying via PayPal")}
|
|
102
|
+
applePayLabel="Apple Pay"
|
|
103
|
+
handleApplePay={() => console.log("paying via Apple Pay")}
|
|
104
|
+
googlePayLabel="Google Pay"
|
|
105
|
+
handleGooglePay={() => console.log("paying via Google Pay")}
|
|
106
|
+
stcPayLabel="STC Pay"
|
|
107
|
+
handleSTCPay={() => console.log("paying via STC Pay")}
|
|
108
|
+
/>
|
|
109
|
+
</HawaProvider>
|
|
110
|
+
);
|
|
111
|
+
};
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import {
|
|
3
|
+
UserProfile
|
|
4
|
+
} from "../../blocks/Account";
|
|
5
|
+
import { defaultTheme, HawaProvider } from "../../themes/HawaProvider";
|
|
6
|
+
|
|
7
|
+
export default {
|
|
8
|
+
title: "Blocks/UserProfile",
|
|
9
|
+
component: UserProfile,
|
|
10
|
+
argsTypes: {
|
|
11
|
+
viaGoogle: { control: "boolean" },
|
|
12
|
+
viaGithub: { control: "boolean" },
|
|
13
|
+
viaTwitter: { control: "boolean" },
|
|
14
|
+
viaFacebook: { control: "boolean" }
|
|
15
|
+
},
|
|
16
|
+
args: {}
|
|
17
|
+
};
|
|
18
|
+
|
|
19
|
+
const theme = {
|
|
20
|
+
...defaultTheme,
|
|
21
|
+
paddings: 20
|
|
22
|
+
};
|
|
23
|
+
|
|
24
|
+
const UserProfileTemplate = (args) => {
|
|
25
|
+
return (
|
|
26
|
+
<HawaProvider theme={{ ...defaultTheme, ...theme }}>
|
|
27
|
+
<UserProfile {...args} />
|
|
28
|
+
</HawaProvider>
|
|
29
|
+
);
|
|
30
|
+
};
|
|
31
|
+
|
|
32
|
+
export const Success = UserProfileTemplate.bind({});
|
|
33
|
+
Success.args = {
|
|
34
|
+
viaGoogle: true,
|
|
35
|
+
viaGithub: true,
|
|
36
|
+
viaTwitter: true,
|
|
37
|
+
viaFacebook: true
|
|
38
|
+
};
|
|
39
|
+
export const Failed = UserProfileTemplate.bind({});
|
|
40
|
+
Failed.args = {
|
|
41
|
+
viaGoogle: true,
|
|
42
|
+
viaGithub: true,
|
|
43
|
+
viaTwitter: true,
|
|
44
|
+
viaFacebook: true
|
|
45
|
+
};
|
|
46
|
+
|
|
@@ -1,34 +1,35 @@
|
|
|
1
|
-
import React from "react";
|
|
2
|
-
import { StyledCheckbox } from "../
|
|
3
|
-
import "../styles.css";
|
|
4
|
-
|
|
5
|
-
const Template = (args) => {
|
|
6
|
-
return <StyledCheckbox {...args} />;
|
|
7
|
-
};
|
|
8
|
-
|
|
9
|
-
export default {
|
|
10
|
-
title: "
|
|
11
|
-
component: Light,
|
|
12
|
-
argsTypes: {
|
|
13
|
-
defaultValue: {
|
|
14
|
-
options: [true, false],
|
|
15
|
-
control: { type: "radio" }
|
|
16
|
-
}
|
|
17
|
-
},
|
|
18
|
-
args: {
|
|
19
|
-
defaultValue: true,
|
|
20
|
-
disabled: true
|
|
21
|
-
}
|
|
22
|
-
};
|
|
23
|
-
|
|
24
|
-
export const Light = Template.bind({});
|
|
25
|
-
export const Dark = Template.bind({});
|
|
26
|
-
|
|
27
|
-
Light.args = {
|
|
28
|
-
color: "
|
|
29
|
-
defaultValue: false
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { StyledCheckbox } from "../ui";
|
|
3
|
+
import "../styles.css";
|
|
4
|
+
|
|
5
|
+
const Template = (args) => {
|
|
6
|
+
return <StyledCheckbox {...args} />;
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
export default {
|
|
10
|
+
title: "UI/Checkbox",
|
|
11
|
+
component: Light,
|
|
12
|
+
argsTypes: {
|
|
13
|
+
defaultValue: {
|
|
14
|
+
options: [true, false],
|
|
15
|
+
control: { type: "radio" }
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
args: {
|
|
19
|
+
defaultValue: true,
|
|
20
|
+
disabled: true
|
|
21
|
+
}
|
|
22
|
+
};
|
|
23
|
+
|
|
24
|
+
export const Light = Template.bind({});
|
|
25
|
+
export const Dark = Template.bind({});
|
|
26
|
+
|
|
27
|
+
Light.args = {
|
|
28
|
+
color: "red",
|
|
29
|
+
defaultValue: false,
|
|
30
|
+
label: "test"
|
|
31
|
+
};
|
|
32
|
+
Dark.args = {
|
|
33
|
+
color: "gray",
|
|
34
|
+
defaultValue: false
|
|
35
|
+
};
|
|
@@ -1,108 +1,44 @@
|
|
|
1
|
-
import React
|
|
2
|
-
import
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
// <StyledCheckbox {...args} />
|
|
46
|
-
// </FormProvider>
|
|
47
|
-
// );
|
|
48
|
-
// };
|
|
49
|
-
// export const StyledCheckBox = StyledCheckBoxTemplate.bind({});
|
|
50
|
-
// StyledCheckBox.args = {
|
|
51
|
-
// name: "checkbox",
|
|
52
|
-
// label: "CheckBox",
|
|
53
|
-
// color: "blue",
|
|
54
|
-
// rules: { required: true },
|
|
55
|
-
// defaultValue: true
|
|
56
|
-
// };
|
|
57
|
-
/****************************/
|
|
58
|
-
|
|
59
|
-
/****************************/
|
|
60
|
-
// STYLED TextField TEMPLATE
|
|
61
|
-
// const StyledTextFieldTemplate = (args) => {
|
|
62
|
-
// const methods = useForm();
|
|
63
|
-
// return (
|
|
64
|
-
// <FormProvider {...methods}>
|
|
65
|
-
// <StyledTextField {...args} />
|
|
66
|
-
// </FormProvider>
|
|
67
|
-
// );
|
|
68
|
-
// };
|
|
69
|
-
|
|
70
|
-
// export const StyledTextFieldT = StyledTextFieldTemplate.bind({});
|
|
71
|
-
// StyledTextFieldT.args = {
|
|
72
|
-
// name: "styledtextfield",
|
|
73
|
-
// inputLabel: "Label",
|
|
74
|
-
// bdRadius: 12,
|
|
75
|
-
// bgColor: "lightgray",
|
|
76
|
-
// helperText: "This is HelperText",
|
|
77
|
-
// type: "text",
|
|
78
|
-
// placeholder: "exemple ..."
|
|
79
|
-
// };
|
|
80
|
-
|
|
81
|
-
/****************************/
|
|
82
|
-
// Radio Selector Template
|
|
83
|
-
// const styledRadioSelectorTempalte = (args) => {
|
|
84
|
-
// const methods = useForm();
|
|
85
|
-
|
|
86
|
-
// return (
|
|
87
|
-
// <FormProvider {...methods}>
|
|
88
|
-
// <StyledRadioSelector {...args} />
|
|
89
|
-
// </FormProvider>
|
|
90
|
-
// );
|
|
91
|
-
// };
|
|
92
|
-
|
|
93
|
-
// export const StyledRadioSeletorT = styledRadioSelectorTempalte.bind({});
|
|
94
|
-
// StyledRadioSeletorT.args = {
|
|
95
|
-
// name: "Radio Selector",
|
|
96
|
-
// shouldUnregister: true,
|
|
97
|
-
// options: [
|
|
98
|
-
// { text: "Option 1", label: "option1" },
|
|
99
|
-
// { text: "Option 2", label: "option2" },
|
|
100
|
-
// { text: "Option 3", label: "option3" }
|
|
101
|
-
// ],
|
|
102
|
-
// selectedColor: "blue",
|
|
103
|
-
// bdRadius: 12,
|
|
104
|
-
// defaultValue: "option2",
|
|
105
|
-
// bgSelectedColor: "red",
|
|
106
|
-
// textSelectedColor: "black"
|
|
107
|
-
// };
|
|
108
|
-
/****************************/
|
|
1
|
+
import React from "react";
|
|
2
|
+
import PropTypes from "prop-types";
|
|
3
|
+
|
|
4
|
+
export const GlobalVariables = (args) => {
|
|
5
|
+
// const methods = useForm();
|
|
6
|
+
return <div>TESTING COMPONENT</div>;
|
|
7
|
+
};
|
|
8
|
+
export const AnotherComponent = (args) => {
|
|
9
|
+
// const methods = useForm();
|
|
10
|
+
return <div>TESTING COMPONENT</div>;
|
|
11
|
+
};
|
|
12
|
+
AnotherComponent.propTypes = {
|
|
13
|
+
textLabel: PropTypes.string
|
|
14
|
+
};
|
|
15
|
+
export default {
|
|
16
|
+
title: "TestTitle",
|
|
17
|
+
component: [GlobalVariables, AnotherComponent],
|
|
18
|
+
argTypes: {
|
|
19
|
+
resize: {
|
|
20
|
+
description: "overwritten description",
|
|
21
|
+
table: {
|
|
22
|
+
type: {
|
|
23
|
+
summary: "something short"
|
|
24
|
+
},
|
|
25
|
+
defaultValue: { summary: "Hello" }
|
|
26
|
+
},
|
|
27
|
+
options: ["vertical", "horizontal", "both"],
|
|
28
|
+
control: { type: "select" }
|
|
29
|
+
},
|
|
30
|
+
label: {
|
|
31
|
+
description: "overwritten description",
|
|
32
|
+
table: {
|
|
33
|
+
type: {
|
|
34
|
+
summary: "something short",
|
|
35
|
+
detail: "something really really long"
|
|
36
|
+
},
|
|
37
|
+
defaultValue: { summary: "Hello" }
|
|
38
|
+
},
|
|
39
|
+
control: {
|
|
40
|
+
type: null
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
};
|
|
@@ -1,23 +1,22 @@
|
|
|
1
|
-
import React from "react";
|
|
2
|
-
import
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
const
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
};
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { HawaProvider } from "../themes/HawaProvider";
|
|
3
|
+
|
|
4
|
+
const Template = (args) => {
|
|
5
|
+
const theme = {
|
|
6
|
+
borderRadius: 20,
|
|
7
|
+
primaryColor: "green",
|
|
8
|
+
secondaryColor: "red",
|
|
9
|
+
// margins: "10px",
|
|
10
|
+
paddings: 10
|
|
11
|
+
};
|
|
12
|
+
return (
|
|
13
|
+
<HawaProvider theme={theme}>
|
|
14
|
+
<div>test</div>
|
|
15
|
+
</HawaProvider>
|
|
16
|
+
);
|
|
17
|
+
};
|
|
18
|
+
|
|
19
|
+
export default {
|
|
20
|
+
title: "Globals/HawaProvider",
|
|
21
|
+
component: HawaProvider
|
|
22
|
+
};
|