namirasoft-account-react 1.4.430 → 1.4.432

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 (138) 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 +32 -0
  5. package/dist/App.d.ts +1 -1
  6. package/dist/NSARouterMaker.js +1 -0
  7. package/dist/NSARouterMaker.js.map +1 -1
  8. package/dist/NSARouterMakerProps.d.ts +2 -0
  9. package/dist/UseParams.d.ts +1 -1
  10. package/dist/components/NSAAccessListDialog.d.ts +2 -2
  11. package/dist/components/NSAAccessListDialog.module.css +71 -71
  12. package/dist/components/NSAMasterMenu.d.ts +1 -1
  13. package/dist/components/NSAMasterMenu.module.css +248 -248
  14. package/dist/components/NSAMasterMenuItem.d.ts +1 -1
  15. package/dist/components/NSAMessageListDialog.d.ts +1 -1
  16. package/dist/components/NSAMessageListDialog.js +4 -3
  17. package/dist/components/NSAMessageListDialog.js.map +1 -1
  18. package/dist/components/NSAMessageListDialog.module.css +99 -99
  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/NSAUserDialog.d.ts +1 -1
  25. package/dist/components/NSAUserDialog.module.css +67 -67
  26. package/dist/components/NSAWorkspaceListDialog.d.ts +1 -1
  27. package/dist/components/NSAWorkspaceListDialog.module.css +41 -41
  28. package/dist/components/NSBoxSecret.d.ts +1 -1
  29. package/dist/components/NSBoxSecret.module.css +23 -23
  30. package/dist/components/NSLabelSecret.d.ts +1 -1
  31. package/dist/components/quickfilter/NSAFilterBoxEnum.module.css +45 -0
  32. package/dist/components/quickfilter/NSAQuickFilterBar.d.ts +1 -1
  33. package/dist/components/quickfilter/NSAQuickFilterBar.module.css +20 -0
  34. package/dist/components/quickfilter/NSAQuickFilterDialog.d.ts +1 -1
  35. package/dist/components/quickfilter/NSAQuickFilterDialog.module.css +75 -0
  36. package/dist/index.css +0 -0
  37. package/dist/layouts/Actions.d.ts +1 -1
  38. package/dist/layouts/Actions.js +8 -6
  39. package/dist/layouts/Actions.js.map +1 -1
  40. package/dist/layouts/NSALayout.d.ts +1 -1
  41. package/dist/layouts/NSALayout.js +4 -1
  42. package/dist/layouts/NSALayout.js.map +1 -1
  43. package/dist/layouts/NSASectionEdit.d.ts +1 -1
  44. package/dist/layouts/NSASectionEditTabPage.d.ts +1 -1
  45. package/dist/layouts/NSASectionEditTabPage.module.css +4 -4
  46. package/dist/layouts/NSASectionList.d.ts +1 -1
  47. package/dist/layouts/NSASectionList.module.css +31 -31
  48. package/dist/layouts/NSASectionView.d.ts +1 -1
  49. package/dist/layouts/NSASectionViewTabMore.d.ts +1 -1
  50. package/dist/layouts/NSASectionViewTabMore.js +3 -3
  51. package/dist/layouts/NSASectionViewTabMore.js.map +1 -1
  52. package/dist/layouts/NSASectionViewTabPage.d.ts +1 -1
  53. package/dist/layouts/NSASectionViewTabPage.module.css +47 -47
  54. package/dist/pages/NSAConsentPage.module.css +26 -26
  55. package/dist/pages/NSAEmailVerificationPage.d.ts +1 -1
  56. package/dist/pages/NSAHomePage.d.ts +1 -1
  57. package/dist/pages/NSAHomePage.module.css +41 -41
  58. package/dist/pages/NSALoginPage.d.ts +1 -1
  59. package/dist/pages/NSALoginPage.module.css +26 -26
  60. package/dist/pages/NSAPhoneVerificationPage.d.ts +1 -1
  61. package/dist/pages/NSAVerificationPage.d.ts +1 -1
  62. package/dist/pages/NSAVerificationPage.module.css +31 -31
  63. package/dist/pages/PaymentRequired.js +4 -2
  64. package/dist/pages/PaymentRequired.js.map +1 -1
  65. package/package.json +94 -94
  66. package/public/index.html +21 -21
  67. package/src/App.css +31 -31
  68. package/src/App.tsx +19 -19
  69. package/src/CTFRow.ts +7 -7
  70. package/src/IEntityInfo.ts +33 -33
  71. package/src/NSACacheService.ts +120 -120
  72. package/src/NSAFilterOperators.ts +92 -92
  73. package/src/NSARouterMaker.tsx +140 -139
  74. package/src/NSARouterMakerConfig.ts +15 -15
  75. package/src/NSARouterMakerProps.ts +24 -22
  76. package/src/Router.tsx +45 -45
  77. package/src/UseParams.tsx +18 -18
  78. package/src/components/NSAAccessListDialog.module.css +71 -71
  79. package/src/components/NSAAccessListDialog.tsx +178 -178
  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 -141
  85. package/src/components/NSAProductListDialog.module.css +44 -44
  86. package/src/components/NSAProductListDialog.tsx +88 -88
  87. package/src/components/NSAReorderDialog.module.css +49 -49
  88. package/src/components/NSAReorderDialog.tsx +149 -149
  89. package/src/components/NSASortDialog.tsx +117 -117
  90. package/src/components/NSATable.tsx +489 -489
  91. package/src/components/NSAUserDialog.module.css +67 -67
  92. package/src/components/NSAUserDialog.tsx +122 -122
  93. package/src/components/NSAWorkspaceListDialog.module.css +41 -41
  94. package/src/components/NSAWorkspaceListDialog.tsx +147 -147
  95. package/src/components/NSBoxSecret.module.css +23 -23
  96. package/src/components/NSBoxSecret.tsx +258 -258
  97. package/src/components/NSLabelSecret.tsx +37 -37
  98. package/src/components/quickfilter/NSAFilterBoxBase.tsx +55 -55
  99. package/src/components/quickfilter/NSAFilterBoxBoolean.tsx +54 -54
  100. package/src/components/quickfilter/NSAFilterBoxDate.tsx +104 -104
  101. package/src/components/quickfilter/NSAFilterBoxDateTime.tsx +105 -105
  102. package/src/components/quickfilter/NSAFilterBoxEnum.module.css +44 -44
  103. package/src/components/quickfilter/NSAFilterBoxEnum.tsx +79 -79
  104. package/src/components/quickfilter/NSAFilterBoxNumber.tsx +136 -136
  105. package/src/components/quickfilter/NSAFilterBoxString.tsx +81 -81
  106. package/src/components/quickfilter/NSAFilterBoxTime.tsx +101 -101
  107. package/src/components/quickfilter/NSAQuickFilterBar.module.css +19 -19
  108. package/src/components/quickfilter/NSAQuickFilterBar.tsx +114 -114
  109. package/src/components/quickfilter/NSAQuickFilterDialog.module.css +74 -74
  110. package/src/components/quickfilter/NSAQuickFilterDialog.tsx +260 -260
  111. package/src/css.d.ts +13 -13
  112. package/src/formatters/SecretFormatter.tsx +24 -24
  113. package/src/index.tsx +24 -24
  114. package/src/layouts/Actions.ts +146 -145
  115. package/src/layouts/CFTUtil.ts +18 -18
  116. package/src/layouts/NSALayout.tsx +844 -841
  117. package/src/layouts/NSASectionEdit.tsx +260 -260
  118. package/src/layouts/NSASectionEditTabPage.module.css +4 -4
  119. package/src/layouts/NSASectionEditTabPage.tsx +250 -250
  120. package/src/layouts/NSASectionList.module.css +31 -31
  121. package/src/layouts/NSASectionList.tsx +149 -149
  122. package/src/layouts/NSASectionView.tsx +100 -100
  123. package/src/layouts/NSASectionViewTabMore.tsx +77 -77
  124. package/src/layouts/NSASectionViewTabPage.module.css +47 -47
  125. package/src/layouts/NSASectionViewTabPage.tsx +419 -419
  126. package/src/main.ts +46 -46
  127. package/src/pages/NSAConsentPage.module.css +26 -26
  128. package/src/pages/NSAConsentPage.tsx +120 -120
  129. package/src/pages/NSAEmailVerificationPage.tsx +30 -30
  130. package/src/pages/NSAHomePage.module.css +41 -41
  131. package/src/pages/NSAHomePage.tsx +102 -102
  132. package/src/pages/NSALoginPage.module.css +26 -26
  133. package/src/pages/NSALoginPage.tsx +87 -87
  134. package/src/pages/NSAPhoneVerificationPage.tsx +94 -94
  135. package/src/pages/NSAVerificationPage.module.css +31 -31
  136. package/src/pages/NSAVerificationPage.tsx +186 -186
  137. package/src/pages/PaymentRequired.tsx +76 -74
  138. 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,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
  }