namirasoft-account-react 1.4.433 → 1.4.435

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