namirasoft-account-react 1.4.431 → 1.4.433

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 (158) 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.d.ts +1 -1
  5. package/dist/NSARouterMaker.js +1 -0
  6. package/dist/NSARouterMaker.js.map +1 -1
  7. package/dist/NSARouterMakerProps.d.ts +2 -0
  8. package/dist/NSATaskService.d.ts +35 -0
  9. package/dist/NSATaskService.js +80 -0
  10. package/dist/NSATaskService.js.map +1 -0
  11. package/dist/UseParams.d.ts +1 -1
  12. package/dist/components/NSAAccessListDialog.d.ts +2 -2
  13. package/dist/components/NSAAccessListDialog.module.css +71 -71
  14. package/dist/components/NSAMasterMenu.d.ts +1 -1
  15. package/dist/components/NSAMasterMenu.module.css +248 -248
  16. package/dist/components/NSAMasterMenuItem.d.ts +1 -1
  17. package/dist/components/NSAMessageListDialog.d.ts +1 -1
  18. package/dist/components/NSAMessageListDialog.js +4 -3
  19. package/dist/components/NSAMessageListDialog.js.map +1 -1
  20. package/dist/components/NSAMessageListDialog.module.css +99 -99
  21. package/dist/components/NSANavigationGuard.d.ts +6 -0
  22. package/dist/components/NSANavigationGuard.js +37 -0
  23. package/dist/components/NSANavigationGuard.js.map +1 -0
  24. package/dist/components/NSAProductListDialog.d.ts +1 -1
  25. package/dist/components/NSAProductListDialog.module.css +44 -44
  26. package/dist/components/NSAReorderDialog.d.ts +1 -1
  27. package/dist/components/NSAReorderDialog.module.css +49 -49
  28. package/dist/components/NSASortDialog.d.ts +1 -1
  29. package/dist/components/NSATable.js +7 -0
  30. package/dist/components/NSATable.js.map +1 -1
  31. package/dist/components/NSATaskBar.d.ts +13 -0
  32. package/dist/components/NSATaskBar.js +53 -0
  33. package/dist/components/NSATaskBar.js.map +1 -0
  34. package/dist/components/NSATaskBar.module.css +58 -0
  35. package/dist/components/NSAUserDialog.d.ts +1 -1
  36. package/dist/components/NSAUserDialog.module.css +67 -67
  37. package/dist/components/NSAWorkspaceListDialog.d.ts +1 -1
  38. package/dist/components/NSAWorkspaceListDialog.module.css +41 -41
  39. package/dist/components/NSBoxSecret.d.ts +1 -1
  40. package/dist/components/NSBoxSecret.module.css +23 -23
  41. package/dist/components/NSLabelSecret.d.ts +1 -1
  42. package/dist/components/quickfilter/NSAQuickFilterBar.d.ts +1 -1
  43. package/dist/components/quickfilter/NSAQuickFilterDialog.d.ts +1 -1
  44. package/dist/index.js +5 -2
  45. package/dist/index.js.map +1 -1
  46. package/dist/layouts/Actions.d.ts +1 -1
  47. package/dist/layouts/Actions.js +8 -6
  48. package/dist/layouts/Actions.js.map +1 -1
  49. package/dist/layouts/NSALayout.d.ts +1 -6
  50. package/dist/layouts/NSALayout.js +36 -61
  51. package/dist/layouts/NSALayout.js.map +1 -1
  52. package/dist/layouts/NSASectionEdit.d.ts +3 -1
  53. package/dist/layouts/NSASectionEdit.js +28 -19
  54. package/dist/layouts/NSASectionEdit.js.map +1 -1
  55. package/dist/layouts/NSASectionEditTabPage.d.ts +1 -1
  56. package/dist/layouts/NSASectionEditTabPage.module.css +4 -4
  57. package/dist/layouts/NSASectionList.d.ts +1 -1
  58. package/dist/layouts/NSASectionList.module.css +31 -31
  59. package/dist/layouts/NSASectionView.d.ts +1 -1
  60. package/dist/layouts/NSASectionViewTabMore.d.ts +1 -1
  61. package/dist/layouts/NSASectionViewTabMore.js +3 -3
  62. package/dist/layouts/NSASectionViewTabMore.js.map +1 -1
  63. package/dist/layouts/NSASectionViewTabPage.d.ts +1 -1
  64. package/dist/layouts/NSASectionViewTabPage.module.css +47 -47
  65. package/dist/pages/NSAConsentPage.module.css +26 -26
  66. package/dist/pages/NSAEmailVerificationPage.d.ts +1 -1
  67. package/dist/pages/NSAHomePage.d.ts +1 -1
  68. package/dist/pages/NSAHomePage.module.css +41 -41
  69. package/dist/pages/NSALoginPage.d.ts +1 -1
  70. package/dist/pages/NSALoginPage.module.css +26 -26
  71. package/dist/pages/NSAPhoneVerificationPage.d.ts +1 -1
  72. package/dist/pages/NSAVerificationPage.d.ts +1 -1
  73. package/dist/pages/NSAVerificationPage.module.css +31 -31
  74. package/dist/pages/PaymentRequired.js +4 -2
  75. package/dist/pages/PaymentRequired.js.map +1 -1
  76. package/package.json +94 -94
  77. package/public/index.html +21 -21
  78. package/src/App.css +31 -31
  79. package/src/App.tsx +19 -19
  80. package/src/CTFRow.ts +7 -7
  81. package/src/IEntityInfo.ts +33 -33
  82. package/src/NSACacheService.ts +120 -120
  83. package/src/NSAFilterOperators.ts +92 -92
  84. package/src/NSARouterMaker.tsx +140 -139
  85. package/src/NSARouterMakerConfig.ts +15 -15
  86. package/src/NSARouterMakerProps.ts +24 -22
  87. package/src/NSATaskService.ts +123 -0
  88. package/src/Router.tsx +45 -45
  89. package/src/UseParams.tsx +18 -18
  90. package/src/components/NSAAccessListDialog.module.css +71 -71
  91. package/src/components/NSAAccessListDialog.tsx +178 -178
  92. package/src/components/NSAMasterMenu.module.css +248 -248
  93. package/src/components/NSAMasterMenu.tsx +169 -169
  94. package/src/components/NSAMasterMenuItem.tsx +250 -250
  95. package/src/components/NSAMessageListDialog.module.css +99 -99
  96. package/src/components/NSAMessageListDialog.tsx +142 -141
  97. package/src/components/NSANavigationGuard.tsx +65 -0
  98. package/src/components/NSAProductListDialog.module.css +44 -44
  99. package/src/components/NSAProductListDialog.tsx +88 -88
  100. package/src/components/NSAReorderDialog.module.css +49 -49
  101. package/src/components/NSAReorderDialog.tsx +149 -149
  102. package/src/components/NSASortDialog.tsx +117 -117
  103. package/src/components/NSATable.tsx +498 -489
  104. package/src/components/NSATaskBar.module.css +58 -0
  105. package/src/components/NSATaskBar.tsx +102 -0
  106. package/src/components/NSAUserDialog.module.css +67 -67
  107. package/src/components/NSAUserDialog.tsx +122 -122
  108. package/src/components/NSAWorkspaceListDialog.module.css +41 -41
  109. package/src/components/NSAWorkspaceListDialog.tsx +147 -147
  110. package/src/components/NSBoxSecret.module.css +23 -23
  111. package/src/components/NSBoxSecret.tsx +258 -258
  112. package/src/components/NSLabelSecret.tsx +37 -37
  113. package/src/components/quickfilter/NSAFilterBoxBase.tsx +55 -55
  114. package/src/components/quickfilter/NSAFilterBoxBoolean.tsx +54 -54
  115. package/src/components/quickfilter/NSAFilterBoxDate.tsx +104 -104
  116. package/src/components/quickfilter/NSAFilterBoxDateTime.tsx +105 -105
  117. package/src/components/quickfilter/NSAFilterBoxEnum.module.css +44 -44
  118. package/src/components/quickfilter/NSAFilterBoxEnum.tsx +79 -79
  119. package/src/components/quickfilter/NSAFilterBoxNumber.tsx +136 -136
  120. package/src/components/quickfilter/NSAFilterBoxString.tsx +81 -81
  121. package/src/components/quickfilter/NSAFilterBoxTime.tsx +101 -101
  122. package/src/components/quickfilter/NSAQuickFilterBar.module.css +19 -19
  123. package/src/components/quickfilter/NSAQuickFilterBar.tsx +114 -114
  124. package/src/components/quickfilter/NSAQuickFilterDialog.module.css +74 -74
  125. package/src/components/quickfilter/NSAQuickFilterDialog.tsx +260 -260
  126. package/src/css.d.ts +13 -13
  127. package/src/formatters/SecretFormatter.tsx +24 -24
  128. package/src/index.tsx +26 -24
  129. package/src/layouts/Actions.ts +146 -145
  130. package/src/layouts/CFTUtil.ts +18 -18
  131. package/src/layouts/NSALayout.tsx +790 -841
  132. package/src/layouts/NSASectionEdit.tsx +279 -260
  133. package/src/layouts/NSASectionEditTabPage.module.css +4 -4
  134. package/src/layouts/NSASectionEditTabPage.tsx +250 -250
  135. package/src/layouts/NSASectionList.module.css +31 -31
  136. package/src/layouts/NSASectionList.tsx +149 -149
  137. package/src/layouts/NSASectionView.tsx +100 -100
  138. package/src/layouts/NSASectionViewTabMore.tsx +77 -77
  139. package/src/layouts/NSASectionViewTabPage.module.css +47 -47
  140. package/src/layouts/NSASectionViewTabPage.tsx +419 -419
  141. package/src/main.ts +46 -46
  142. package/src/pages/NSAConsentPage.module.css +26 -26
  143. package/src/pages/NSAConsentPage.tsx +120 -120
  144. package/src/pages/NSAEmailVerificationPage.tsx +30 -30
  145. package/src/pages/NSAHomePage.module.css +41 -41
  146. package/src/pages/NSAHomePage.tsx +102 -102
  147. package/src/pages/NSALoginPage.module.css +26 -26
  148. package/src/pages/NSALoginPage.tsx +87 -87
  149. package/src/pages/NSAPhoneVerificationPage.tsx +94 -94
  150. package/src/pages/NSAVerificationPage.module.css +31 -31
  151. package/src/pages/NSAVerificationPage.tsx +186 -186
  152. package/src/pages/PaymentRequired.tsx +76 -74
  153. package/tsconfig.json +43 -43
  154. package/dist/App.css +0 -32
  155. package/dist/components/quickfilter/NSAFilterBoxEnum.module.css +0 -45
  156. package/dist/components/quickfilter/NSAQuickFilterBar.module.css +0 -20
  157. package/dist/components/quickfilter/NSAQuickFilterDialog.module.css +0 -75
  158. package/dist/index.css +0 -0
@@ -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,75 +1,77 @@
1
- import { Component, cloneElement } from "react";
2
- import { IBaseComponentProps, 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
- window.open(this.props.payment_offer_url + "?callback=" + EncodingOperation.Base64Encode(window.location.href));
63
- },
64
- showLoading: false
65
- }}
66
- ></NSButtonGreen>
67
- </NSRow>
68
- </NSPanel>
69
- </NSSection>;
70
- let layout = this.props.renderer.renderOnNSALayout(this.props, section)
71
- return cloneElement(layout, { key: "payment-required" });
72
- }
73
- return this.props.children;
74
- }
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
+ }
75
77
  }