namirasoft-account-react 1.5.4 → 1.5.6

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.
Files changed (143) hide show
  1. package/.env.template +15 -15
  2. package/SKILLS.md +514 -514
  3. package/config-overrides.js +72 -72
  4. package/dist/App.css +31 -31
  5. package/dist/App.d.ts +1 -1
  6. package/dist/UseParams.d.ts +1 -1
  7. package/dist/UseParams.js +4 -1
  8. package/dist/UseParams.js.map +1 -1
  9. package/dist/components/NSAAccessListDialog.d.ts +2 -2
  10. package/dist/components/NSAAccessListDialog.module.css +71 -71
  11. package/dist/components/NSABoxSecret.d.ts +1 -1
  12. package/dist/components/NSABoxSecret.module.css +23 -23
  13. package/dist/components/NSAMasterMenu.d.ts +1 -1
  14. package/dist/components/NSAMasterMenu.module.css +248 -248
  15. package/dist/components/NSAMasterMenuItem.d.ts +1 -1
  16. package/dist/components/NSAMessageListDialog.d.ts +1 -1
  17. package/dist/components/NSAMessageListDialog.module.css +99 -99
  18. package/dist/components/NSANavigationGuard.d.ts +1 -1
  19. package/dist/components/NSAProductListDialog.d.ts +1 -1
  20. package/dist/components/NSAProductListDialog.module.css +44 -44
  21. package/dist/components/NSAReorderDialog.d.ts +1 -1
  22. package/dist/components/NSAReorderDialog.module.css +49 -49
  23. package/dist/components/NSASortDialog.d.ts +1 -1
  24. package/dist/components/NSATaskBar.d.ts +1 -1
  25. package/dist/components/NSATaskBar.module.css +57 -57
  26. package/dist/components/NSAUserDialog.d.ts +1 -1
  27. package/dist/components/NSAUserDialog.module.css +67 -67
  28. package/dist/components/NSAWorkspaceListDialog.d.ts +1 -1
  29. package/dist/components/NSAWorkspaceListDialog.module.css +41 -41
  30. package/dist/components/NSFBoxCategoryScope.d.ts +1 -1
  31. package/dist/components/NSFBoxField.d.ts +1 -1
  32. package/dist/components/NSFBoxSlot.d.ts +1 -1
  33. package/dist/components/NSFBoxWrapper.d.ts +1 -1
  34. package/dist/components/NSLabelSecret.d.ts +1 -1
  35. package/dist/components/quickfilter/NSAFilterBoxEnum.module.css +44 -44
  36. package/dist/components/quickfilter/NSAQuickFilterBar.d.ts +1 -1
  37. package/dist/components/quickfilter/NSAQuickFilterBar.module.css +19 -19
  38. package/dist/components/quickfilter/NSAQuickFilterDialog.d.ts +1 -1
  39. package/dist/components/quickfilter/NSAQuickFilterDialog.module.css +74 -74
  40. package/dist/layouts/NSALayout.d.ts +1 -1
  41. package/dist/layouts/NSASectionEdit.d.ts +1 -1
  42. package/dist/layouts/NSASectionEditTabPage.d.ts +1 -1
  43. package/dist/layouts/NSASectionEditTabPage.module.css +4 -4
  44. package/dist/layouts/NSASectionList.d.ts +1 -1
  45. package/dist/layouts/NSASectionList.module.css +31 -31
  46. package/dist/layouts/NSASectionView.d.ts +1 -1
  47. package/dist/layouts/NSASectionViewTabMore.d.ts +1 -1
  48. package/dist/layouts/NSASectionViewTabPage.d.ts +1 -1
  49. package/dist/layouts/NSASectionViewTabPage.module.css +47 -47
  50. package/dist/pages/NSAConsentPage.d.ts +3 -3
  51. package/dist/pages/NSAConsentPage.js +3 -3
  52. package/dist/pages/NSAConsentPage.js.map +1 -1
  53. package/dist/pages/NSAConsentPage.module.css +26 -26
  54. package/dist/pages/NSAEmailVerificationPage.d.ts +1 -1
  55. package/dist/pages/NSAHomePage.d.ts +1 -1
  56. package/dist/pages/NSAHomePage.module.css +41 -41
  57. package/dist/pages/NSALoginPage.d.ts +1 -1
  58. package/dist/pages/NSALoginPage.module.css +26 -26
  59. package/dist/pages/NSAPhoneVerificationPage.d.ts +1 -1
  60. package/dist/pages/NSAVerificationPage.d.ts +1 -1
  61. package/dist/pages/NSAVerificationPage.module.css +31 -31
  62. package/package.json +95 -95
  63. package/public/index.html +21 -21
  64. package/src/App.css +31 -31
  65. package/src/App.tsx +19 -19
  66. package/src/CTFRow.ts +7 -7
  67. package/src/FieldCacheService.ts +38 -38
  68. package/src/IEntityInfo.ts +33 -33
  69. package/src/NSACacheService.ts +120 -120
  70. package/src/NSAFilterOperators.ts +92 -92
  71. package/src/NSARouterMaker.tsx +142 -142
  72. package/src/NSARouterMakerConfig.ts +15 -15
  73. package/src/NSARouterMakerProps.ts +24 -24
  74. package/src/Router.tsx +45 -45
  75. package/src/UseParams.tsx +20 -18
  76. package/src/components/NSAAccessListDialog.module.css +71 -71
  77. package/src/components/NSAAccessListDialog.tsx +178 -178
  78. package/src/components/NSABoxSecret.module.css +23 -23
  79. package/src/components/NSABoxSecret.tsx +264 -264
  80. package/src/components/NSAMasterMenu.module.css +248 -248
  81. package/src/components/NSAMasterMenu.tsx +169 -169
  82. package/src/components/NSAMasterMenuItem.tsx +250 -250
  83. package/src/components/NSAMessageListDialog.module.css +99 -99
  84. package/src/components/NSAMessageListDialog.tsx +142 -142
  85. package/src/components/NSANavigationGuard.tsx +79 -79
  86. package/src/components/NSAProductListDialog.module.css +44 -44
  87. package/src/components/NSAProductListDialog.tsx +88 -88
  88. package/src/components/NSAReorderDialog.module.css +49 -49
  89. package/src/components/NSAReorderDialog.tsx +149 -149
  90. package/src/components/NSASortDialog.tsx +117 -117
  91. package/src/components/NSATable.tsx +545 -545
  92. package/src/components/NSATaskBar.module.css +57 -57
  93. package/src/components/NSATaskBar.tsx +193 -193
  94. package/src/components/NSAUserDialog.module.css +67 -67
  95. package/src/components/NSAUserDialog.tsx +122 -122
  96. package/src/components/NSAWorkspaceListDialog.module.css +41 -41
  97. package/src/components/NSAWorkspaceListDialog.tsx +147 -147
  98. package/src/components/NSFBoxCategoryScope.tsx +52 -52
  99. package/src/components/NSFBoxField.tsx +37 -37
  100. package/src/components/NSFBoxSlot.tsx +71 -71
  101. package/src/components/NSFBoxWrapper.tsx +69 -69
  102. package/src/components/NSLabelSecret.tsx +37 -37
  103. package/src/components/quickfilter/NSAFilterBoxBase.tsx +89 -89
  104. package/src/components/quickfilter/NSAFilterBoxBoolean.tsx +66 -66
  105. package/src/components/quickfilter/NSAFilterBoxDate.tsx +110 -110
  106. package/src/components/quickfilter/NSAFilterBoxDateTime.tsx +110 -110
  107. package/src/components/quickfilter/NSAFilterBoxEnum.module.css +44 -44
  108. package/src/components/quickfilter/NSAFilterBoxEnum.tsx +79 -79
  109. package/src/components/quickfilter/NSAFilterBoxNumber.tsx +145 -145
  110. package/src/components/quickfilter/NSAFilterBoxString.tsx +83 -83
  111. package/src/components/quickfilter/NSAFilterBoxTime.tsx +106 -106
  112. package/src/components/quickfilter/NSAQuickFilterBar.module.css +19 -19
  113. package/src/components/quickfilter/NSAQuickFilterBar.tsx +142 -142
  114. package/src/components/quickfilter/NSAQuickFilterDialog.module.css +74 -74
  115. package/src/components/quickfilter/NSAQuickFilterDialog.tsx +260 -260
  116. package/src/css.d.ts +13 -13
  117. package/src/formatters/SecretFormatter.tsx +24 -24
  118. package/src/index.tsx +26 -26
  119. package/src/layouts/Actions.ts +146 -146
  120. package/src/layouts/CFTUtil.ts +18 -18
  121. package/src/layouts/NSALayout.tsx +739 -739
  122. package/src/layouts/NSASectionEdit.tsx +282 -282
  123. package/src/layouts/NSASectionEditTabPage.module.css +4 -4
  124. package/src/layouts/NSASectionEditTabPage.tsx +257 -257
  125. package/src/layouts/NSASectionList.module.css +31 -31
  126. package/src/layouts/NSASectionList.tsx +148 -148
  127. package/src/layouts/NSASectionView.tsx +99 -99
  128. package/src/layouts/NSASectionViewTabMore.tsx +77 -77
  129. package/src/layouts/NSASectionViewTabPage.module.css +47 -47
  130. package/src/layouts/NSASectionViewTabPage.tsx +400 -400
  131. package/src/main.ts +46 -46
  132. package/src/pages/NSAConsentPage.module.css +26 -26
  133. package/src/pages/NSAConsentPage.tsx +120 -120
  134. package/src/pages/NSAEmailVerificationPage.tsx +30 -30
  135. package/src/pages/NSAHomePage.module.css +41 -41
  136. package/src/pages/NSAHomePage.tsx +123 -123
  137. package/src/pages/NSALoginPage.module.css +26 -26
  138. package/src/pages/NSALoginPage.tsx +87 -87
  139. package/src/pages/NSAPhoneVerificationPage.tsx +94 -94
  140. package/src/pages/NSAVerificationPage.module.css +31 -31
  141. package/src/pages/NSAVerificationPage.tsx +186 -186
  142. package/src/pages/PaymentRequired.tsx +76 -76
  143. package/tsconfig.json +43 -43
@@ -1,32 +1,32 @@
1
- .nsa_verification_container {
2
- background-color: #FFF;
3
- border: 1px solid #A1A4B0;
4
- backdrop-filter: blur(5px);
5
- border-radius: 8px;
6
- width: 100%;
7
- max-width: 594px;
8
- padding: 16px;
9
- color: #141B5C !important;
10
- display: flex;
11
- flex-direction: column;
12
- gap: 16px;
13
- align-items: center;
14
- }
15
-
16
- .nsa_verification_container p {
17
- text-align: center;
18
- }
19
-
20
- .nsa_verification_vector {
21
- width: 224px;
22
- height: 224px;
23
- }
24
-
25
- .nsa_resend_button {
26
- border: 0;
27
- outline: 0;
28
- background: none;
29
- color: #141B5C;
30
- font-size: 16px;
31
- font-weight: 500;
1
+ .nsa_verification_container {
2
+ background-color: #FFF;
3
+ border: 1px solid #A1A4B0;
4
+ backdrop-filter: blur(5px);
5
+ border-radius: 8px;
6
+ width: 100%;
7
+ max-width: 594px;
8
+ padding: 16px;
9
+ color: #141B5C !important;
10
+ display: flex;
11
+ flex-direction: column;
12
+ gap: 16px;
13
+ align-items: center;
14
+ }
15
+
16
+ .nsa_verification_container p {
17
+ text-align: center;
18
+ }
19
+
20
+ .nsa_verification_vector {
21
+ width: 224px;
22
+ height: 224px;
23
+ }
24
+
25
+ .nsa_resend_button {
26
+ border: 0;
27
+ outline: 0;
28
+ background: none;
29
+ color: #141B5C;
30
+ font-size: 16px;
31
+ font-weight: 500;
32
32
  }
@@ -1,187 +1,187 @@
1
- import React, { createRef, ReactNode } from "react";
2
- import { IBaseComponentProps, NSRouterMakerProps, NSBoxString } from 'namirasoft-site-react';
3
- import { NSSection, NSSpace, NSSpaceSizeType, NSButtonBlue } from 'namirasoft-site-react';
4
- import { NSARouterMakerProps } from '../NSARouterMakerProps';
5
- import Styles from './NSAVerificationPage.module.css';
6
- import { BaseServer } from "namirasoft-core";
7
-
8
- export interface NSAVerificationPageProps extends IBaseComponentProps, NSRouterMakerProps, NSARouterMakerProps
9
- {
10
- contact_type: string;
11
- contact_value_name: string;
12
- getContactValue: (checkErrors: boolean) => string;
13
- onRequest: (address: string) => Promise<void>;
14
- onVerify: (code: string) => Promise<void>;
15
- onFinished: () => void;
16
- onChange?: () => void;
17
- children?: ReactNode;
18
- }
19
-
20
- export interface NSAVerificationPageState
21
- {
22
- isSendCode: boolean;
23
- }
24
-
25
- export class NSAVerificationPage extends React.Component<NSAVerificationPageProps, NSAVerificationPageState>
26
- {
27
- private NSButtonBlue_Verify = createRef<NSButtonBlue>();
28
- private NSBoxString_Code = createRef<NSBoxString>();
29
- constructor(props: NSAVerificationPageProps)
30
- {
31
- super(props);
32
- this.state = { isSendCode: false };
33
- this.onRequest = this.onRequest.bind(this);
34
- this.onVerify = this.onVerify.bind(this);
35
- }
36
- private async onRequest(onFinshied: () => void)
37
- {
38
- try
39
- {
40
- this.props.onRequest(this.props.getContactValue(true)).then(() =>
41
- {
42
- this.setState({ isSendCode: true });
43
- this.props.notifier.onSuccess(`Verification code has been sent successfully.`);
44
- onFinshied();
45
- }).catch(onFinshied);
46
- } catch (error)
47
- {
48
- this.props.notifier.onError(error as Error);
49
- onFinshied();
50
- }
51
- }
52
- private async onVerify(onFinshied: () => void)
53
- {
54
- try
55
- {
56
- let code = this.NSBoxString_Code.current?.getValue() ?? "";
57
- this.props.onVerify(code).then(() =>
58
- {
59
- this.props.notifier.onSuccess("Verification has been done successfully.");
60
- this.props.notifier.onSuccess("Redirecting ...", 2000);
61
- setTimeout(() =>
62
- {
63
- this.props.onFinished();
64
- onFinshied();
65
- }, 2000);
66
- }).catch(e =>
67
- {
68
- onFinshied();
69
- if (BaseServer.isErrorCode(e, 410) || BaseServer.isErrorCode(e, 404))
70
- this.setState({ isSendCode: false });
71
- });
72
- } catch (error)
73
- {
74
- this.props.notifier.onError(error as Error);
75
- onFinshied();
76
- }
77
- }
78
- override componentDidMount(): void
79
- {
80
- let code = this.props.url.getQuery("code", false, true) ?? "";
81
- if (code)
82
- {
83
- this.setState({ isSendCode: true }, () =>
84
- {
85
- this.NSBoxString_Code.current?.setValue(code, () =>
86
- {
87
- this.NSButtonBlue_Verify.current?.performClick();
88
- });
89
- });
90
- }
91
- }
92
- override render()
93
- {
94
- return (
95
- <NSSection>
96
- <div
97
- className={`${Styles.nsa_verification_container} ${this.props.classList?.join(" ") ?? ""}`}
98
- style={this.props.style}
99
- >
100
- <img
101
- src={"https://static.namirasoft.com/image/concept/verification/purple.png"}
102
- alt={'verification vector'}
103
- className={Styles.nsa_verification_vector}
104
- />
105
- <div className='m-0'>
106
- <p className='m-2'>Type: {this.props.contact_type}</p>
107
- {
108
- ((this.state.isSendCode || !this.props.children) && this.props.getContactValue(false)) &&
109
- <p className='m-2'>{this.props.contact_value_name}: {this.props.getContactValue(false)}</p>
110
- }
111
- {
112
- this.props.children &&
113
- <div style={{ display: this.state.isSendCode ? "none" : undefined }}>
114
- {this.props.children}
115
- </div>
116
- }
117
- </div>
118
- {
119
- this.state.isSendCode ?
120
- <>
121
- <p style={{ margin: 0 }}>
122
- Please enter the code you received
123
- </p>
124
- <NSBoxString
125
- ref={this.NSBoxString_Code}
126
- title='Verification Code'
127
- placeholder='Enter the code'
128
- hideHeader={true}
129
- required={true}
130
- min_length={6}
131
- max_length={6}
132
- input={{ style: { fontSize: '24px', fontWeight: "bold", textAlign: "center" } }}
133
- />
134
- </>
135
- :
136
- <>
137
- {
138
- this.props.onChange &&
139
- <>
140
- <button
141
- onClick={this.props.onChange}
142
- className={Styles.nsa_resend_button}
143
- style={{ marginTop: "8px" }}
144
- >Change {this.props.contact_value_name}</button>
145
- <NSSpace size={NSSpaceSizeType.NANO} />
146
- </>
147
- }
148
- <NSButtonBlue
149
- title='Send Code'
150
- onClick={{
151
- action: (onFinished) =>
152
- {
153
- this.onRequest(onFinished);
154
- },
155
- }}
156
- />
157
- </>
158
- }
159
- </div>
160
- <NSSpace size={NSSpaceSizeType.NORMAL}></NSSpace>
161
- {
162
- this.state.isSendCode &&
163
- <>
164
- <NSButtonBlue
165
- ref={this.NSButtonBlue_Verify}
166
- title="Verify"
167
- onClick={{
168
- action: (onFinished) =>
169
- {
170
- this.onVerify(onFinished);
171
- },
172
- }}
173
- />
174
- <NSSpace size={NSSpaceSizeType.SMALL}></NSSpace>
175
- <button
176
- onClick={() =>
177
- {
178
- this.setState(prev => ({ ...prev, isSendCode: false }));
179
- }}
180
- className={Styles.nsa_resend_button}
181
- >Resend Code</button>
182
- </>
183
- }
184
- </NSSection>
185
- );
186
- }
1
+ import React, { createRef, ReactNode } from "react";
2
+ import { IBaseComponentProps, NSRouterMakerProps, NSBoxString } from 'namirasoft-site-react';
3
+ import { NSSection, NSSpace, NSSpaceSizeType, NSButtonBlue } from 'namirasoft-site-react';
4
+ import { NSARouterMakerProps } from '../NSARouterMakerProps';
5
+ import Styles from './NSAVerificationPage.module.css';
6
+ import { BaseServer } from "namirasoft-core";
7
+
8
+ export interface NSAVerificationPageProps extends IBaseComponentProps, NSRouterMakerProps, NSARouterMakerProps
9
+ {
10
+ contact_type: string;
11
+ contact_value_name: string;
12
+ getContactValue: (checkErrors: boolean) => string;
13
+ onRequest: (address: string) => Promise<void>;
14
+ onVerify: (code: string) => Promise<void>;
15
+ onFinished: () => void;
16
+ onChange?: () => void;
17
+ children?: ReactNode;
18
+ }
19
+
20
+ export interface NSAVerificationPageState
21
+ {
22
+ isSendCode: boolean;
23
+ }
24
+
25
+ export class NSAVerificationPage extends React.Component<NSAVerificationPageProps, NSAVerificationPageState>
26
+ {
27
+ private NSButtonBlue_Verify = createRef<NSButtonBlue>();
28
+ private NSBoxString_Code = createRef<NSBoxString>();
29
+ constructor(props: NSAVerificationPageProps)
30
+ {
31
+ super(props);
32
+ this.state = { isSendCode: false };
33
+ this.onRequest = this.onRequest.bind(this);
34
+ this.onVerify = this.onVerify.bind(this);
35
+ }
36
+ private async onRequest(onFinshied: () => void)
37
+ {
38
+ try
39
+ {
40
+ this.props.onRequest(this.props.getContactValue(true)).then(() =>
41
+ {
42
+ this.setState({ isSendCode: true });
43
+ this.props.notifier.onSuccess(`Verification code has been sent successfully.`);
44
+ onFinshied();
45
+ }).catch(onFinshied);
46
+ } catch (error)
47
+ {
48
+ this.props.notifier.onError(error as Error);
49
+ onFinshied();
50
+ }
51
+ }
52
+ private async onVerify(onFinshied: () => void)
53
+ {
54
+ try
55
+ {
56
+ let code = this.NSBoxString_Code.current?.getValue() ?? "";
57
+ this.props.onVerify(code).then(() =>
58
+ {
59
+ this.props.notifier.onSuccess("Verification has been done successfully.");
60
+ this.props.notifier.onSuccess("Redirecting ...", 2000);
61
+ setTimeout(() =>
62
+ {
63
+ this.props.onFinished();
64
+ onFinshied();
65
+ }, 2000);
66
+ }).catch(e =>
67
+ {
68
+ onFinshied();
69
+ if (BaseServer.isErrorCode(e, 410) || BaseServer.isErrorCode(e, 404))
70
+ this.setState({ isSendCode: false });
71
+ });
72
+ } catch (error)
73
+ {
74
+ this.props.notifier.onError(error as Error);
75
+ onFinshied();
76
+ }
77
+ }
78
+ override componentDidMount(): void
79
+ {
80
+ let code = this.props.url.getQuery("code", false, true) ?? "";
81
+ if (code)
82
+ {
83
+ this.setState({ isSendCode: true }, () =>
84
+ {
85
+ this.NSBoxString_Code.current?.setValue(code, () =>
86
+ {
87
+ this.NSButtonBlue_Verify.current?.performClick();
88
+ });
89
+ });
90
+ }
91
+ }
92
+ override render()
93
+ {
94
+ return (
95
+ <NSSection>
96
+ <div
97
+ className={`${Styles.nsa_verification_container} ${this.props.classList?.join(" ") ?? ""}`}
98
+ style={this.props.style}
99
+ >
100
+ <img
101
+ src={"https://static.namirasoft.com/image/concept/verification/purple.png"}
102
+ alt={'verification vector'}
103
+ className={Styles.nsa_verification_vector}
104
+ />
105
+ <div className='m-0'>
106
+ <p className='m-2'>Type: {this.props.contact_type}</p>
107
+ {
108
+ ((this.state.isSendCode || !this.props.children) && this.props.getContactValue(false)) &&
109
+ <p className='m-2'>{this.props.contact_value_name}: {this.props.getContactValue(false)}</p>
110
+ }
111
+ {
112
+ this.props.children &&
113
+ <div style={{ display: this.state.isSendCode ? "none" : undefined }}>
114
+ {this.props.children}
115
+ </div>
116
+ }
117
+ </div>
118
+ {
119
+ this.state.isSendCode ?
120
+ <>
121
+ <p style={{ margin: 0 }}>
122
+ Please enter the code you received
123
+ </p>
124
+ <NSBoxString
125
+ ref={this.NSBoxString_Code}
126
+ title='Verification Code'
127
+ placeholder='Enter the code'
128
+ hideHeader={true}
129
+ required={true}
130
+ min_length={6}
131
+ max_length={6}
132
+ input={{ style: { fontSize: '24px', fontWeight: "bold", textAlign: "center" } }}
133
+ />
134
+ </>
135
+ :
136
+ <>
137
+ {
138
+ this.props.onChange &&
139
+ <>
140
+ <button
141
+ onClick={this.props.onChange}
142
+ className={Styles.nsa_resend_button}
143
+ style={{ marginTop: "8px" }}
144
+ >Change {this.props.contact_value_name}</button>
145
+ <NSSpace size={NSSpaceSizeType.NANO} />
146
+ </>
147
+ }
148
+ <NSButtonBlue
149
+ title='Send Code'
150
+ onClick={{
151
+ action: (onFinished) =>
152
+ {
153
+ this.onRequest(onFinished);
154
+ },
155
+ }}
156
+ />
157
+ </>
158
+ }
159
+ </div>
160
+ <NSSpace size={NSSpaceSizeType.NORMAL}></NSSpace>
161
+ {
162
+ this.state.isSendCode &&
163
+ <>
164
+ <NSButtonBlue
165
+ ref={this.NSButtonBlue_Verify}
166
+ title="Verify"
167
+ onClick={{
168
+ action: (onFinished) =>
169
+ {
170
+ this.onVerify(onFinished);
171
+ },
172
+ }}
173
+ />
174
+ <NSSpace size={NSSpaceSizeType.SMALL}></NSSpace>
175
+ <button
176
+ onClick={() =>
177
+ {
178
+ this.setState(prev => ({ ...prev, isSendCode: false }));
179
+ }}
180
+ className={Styles.nsa_resend_button}
181
+ >Resend Code</button>
182
+ </>
183
+ }
184
+ </NSSection>
185
+ );
186
+ }
187
187
  }
@@ -1,77 +1,77 @@
1
- import { Component, cloneElement } from "react";
2
- import { IBaseComponentProps, LinkOperation, NSBox, NSButtonGreen, NSLabel, NSLoading, NSPanel, NSRow, NSSection } from "namirasoft-site-react";
3
- import { EncodingOperation } from "namirasoft-core";
4
- import { SubscriptionValidation } from "namirasoft-payment";
5
- import { NSARouterMakerProps } from "../NSARouterMakerProps";
6
-
7
- export interface PaymentRequiredProps extends IBaseComponentProps, NSARouterMakerProps
8
- {
9
- tilte: string;
10
- description: string;
11
- action: string;
12
- payment_offer_url: string;
13
- Validation: () => Promise<SubscriptionValidation>;
14
- children: JSX.Element;
15
- }
16
-
17
- interface PaymentRequiredState
18
- {
19
- subscribed: boolean | null;
20
- }
21
-
22
- export class PaymentRequired extends Component<PaymentRequiredProps, PaymentRequiredState>
23
- {
24
- constructor(props: PaymentRequiredProps)
25
- {
26
- super(props);
27
- this.state = { subscribed: null };
28
- }
29
- override componentDidMount(): void
30
- {
31
- this.props.Validation().then(res =>
32
- {
33
- this.setState({ subscribed: res.subscribed });
34
- }).catch(() => { });
35
- }
36
- override render()
37
- {
38
- if (this.state.subscribed == null)
39
- {
40
- let layout = this.props.renderer.renderOnNSALayout(this.props, <NSLoading />)
41
- return cloneElement(layout, { key: "loading" });
42
- }
43
- if (!this.state.subscribed)
44
- {
45
- let section = <NSSection>
46
- <NSPanel>
47
- <NSRow
48
- style={{
49
- width: NSBox.width.double
50
- }}
51
- >
52
- <NSLabel
53
- title={this.props.tilte}
54
- description={this.props.description}
55
- >
56
- </NSLabel>
57
- <NSButtonGreen
58
- title={this.props.action}
59
- onClick={{
60
- action: () =>
61
- {
62
- let callback = EncodingOperation.Base64Encode(window.location.href);
63
- let link = this.props.payment_offer_url + "?callback=" + callback;
64
- LinkOperation.open(link);
65
- },
66
- showLoading: false
67
- }}
68
- ></NSButtonGreen>
69
- </NSRow>
70
- </NSPanel>
71
- </NSSection>;
72
- let layout = this.props.renderer.renderOnNSALayout(this.props, section)
73
- return cloneElement(layout, { key: "payment-required" });
74
- }
75
- return this.props.children;
76
- }
1
+ import { Component, cloneElement } from "react";
2
+ import { IBaseComponentProps, LinkOperation, NSBox, NSButtonGreen, NSLabel, NSLoading, NSPanel, NSRow, NSSection } from "namirasoft-site-react";
3
+ import { EncodingOperation } from "namirasoft-core";
4
+ import { SubscriptionValidation } from "namirasoft-payment";
5
+ import { NSARouterMakerProps } from "../NSARouterMakerProps";
6
+
7
+ export interface PaymentRequiredProps extends IBaseComponentProps, NSARouterMakerProps
8
+ {
9
+ tilte: string;
10
+ description: string;
11
+ action: string;
12
+ payment_offer_url: string;
13
+ Validation: () => Promise<SubscriptionValidation>;
14
+ children: JSX.Element;
15
+ }
16
+
17
+ interface PaymentRequiredState
18
+ {
19
+ subscribed: boolean | null;
20
+ }
21
+
22
+ export class PaymentRequired extends Component<PaymentRequiredProps, PaymentRequiredState>
23
+ {
24
+ constructor(props: PaymentRequiredProps)
25
+ {
26
+ super(props);
27
+ this.state = { subscribed: null };
28
+ }
29
+ override componentDidMount(): void
30
+ {
31
+ this.props.Validation().then(res =>
32
+ {
33
+ this.setState({ subscribed: res.subscribed });
34
+ }).catch(() => { });
35
+ }
36
+ override render()
37
+ {
38
+ if (this.state.subscribed == null)
39
+ {
40
+ let layout = this.props.renderer.renderOnNSALayout(this.props, <NSLoading />)
41
+ return cloneElement(layout, { key: "loading" });
42
+ }
43
+ if (!this.state.subscribed)
44
+ {
45
+ let section = <NSSection>
46
+ <NSPanel>
47
+ <NSRow
48
+ style={{
49
+ width: NSBox.width.double
50
+ }}
51
+ >
52
+ <NSLabel
53
+ title={this.props.tilte}
54
+ description={this.props.description}
55
+ >
56
+ </NSLabel>
57
+ <NSButtonGreen
58
+ title={this.props.action}
59
+ onClick={{
60
+ action: () =>
61
+ {
62
+ let callback = EncodingOperation.Base64Encode(window.location.href);
63
+ let link = this.props.payment_offer_url + "?callback=" + callback;
64
+ LinkOperation.open(link);
65
+ },
66
+ showLoading: false
67
+ }}
68
+ ></NSButtonGreen>
69
+ </NSRow>
70
+ </NSPanel>
71
+ </NSSection>;
72
+ let layout = this.props.renderer.renderOnNSALayout(this.props, section)
73
+ return cloneElement(layout, { key: "payment-required" });
74
+ }
75
+ return this.props.children;
76
+ }
77
77
  }