namirasoft-account-react 1.4.429 → 1.4.430

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