mirror of
https://github.com/finos/SymphonyElectron.git
synced 2025-02-25 18:55:29 -06:00
SDA-4430_4431: Adding final factor to fix About us (#2044)
This commit is contained in:
parent
59cf248c80
commit
0dc3518793
@ -113,7 +113,6 @@ export default class AboutApp extends React.Component<{}, IState> {
|
|||||||
sdaVersion,
|
sdaVersion,
|
||||||
sdaBuildNumber,
|
sdaBuildNumber,
|
||||||
client,
|
client,
|
||||||
didUpdateHostname,
|
|
||||||
isValidHostname,
|
isValidHostname,
|
||||||
} = this.state;
|
} = this.state;
|
||||||
|
|
||||||
@ -146,10 +145,15 @@ export default class AboutApp extends React.Component<{}, IState> {
|
|||||||
value: `${formattedSfeVersion} ${client}`,
|
value: `${formattedSfeVersion} ${client}`,
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
const closeButtonText =
|
const finalConfig = this.state.finalConfig?.url
|
||||||
isValidHostname &&
|
?.replace(/https:\/\//g, '')
|
||||||
didUpdateHostname &&
|
?.split('/')[0];
|
||||||
!this.state.finalConfig.url.includes(this.state.updatedHostname ?? '')
|
const updatedHostname = this.state.updatedHostname
|
||||||
|
?.replace(/https:\/\//g, '')
|
||||||
|
?.split('/')[0];
|
||||||
|
const isHostNamechanged =
|
||||||
|
finalConfig && updatedHostname && finalConfig !== updatedHostname;
|
||||||
|
const closeButtonText = isHostNamechanged
|
||||||
? i18n.t('Save and Restart', ABOUT_SYMPHONY_NAMESPACE)()
|
? i18n.t('Save and Restart', ABOUT_SYMPHONY_NAMESPACE)()
|
||||||
: i18n.t('Close', ABOUT_SYMPHONY_NAMESPACE)();
|
: i18n.t('Close', ABOUT_SYMPHONY_NAMESPACE)();
|
||||||
const cancelText = i18n.t('Cancel', ABOUT_SYMPHONY_NAMESPACE)();
|
const cancelText = i18n.t('Cancel', ABOUT_SYMPHONY_NAMESPACE)();
|
||||||
@ -192,7 +196,11 @@ export default class AboutApp extends React.Component<{}, IState> {
|
|||||||
<div className='AboutApp-close-container'>
|
<div className='AboutApp-close-container'>
|
||||||
{this.state.isPodEditing && (
|
{this.state.isPodEditing && (
|
||||||
<button
|
<button
|
||||||
className='AboutApp-cancel-button'
|
className={
|
||||||
|
isHostNamechanged
|
||||||
|
? 'AboutApp-cancel-button-save-restart'
|
||||||
|
: 'AboutApp-cancel-button'
|
||||||
|
}
|
||||||
onMouseDown={this.eventHandlers.onCancel}
|
onMouseDown={this.eventHandlers.onCancel}
|
||||||
title={cancelText}
|
title={cancelText}
|
||||||
data-testid={'CANCEL_BUTTON'}
|
data-testid={'CANCEL_BUTTON'}
|
||||||
@ -202,9 +210,11 @@ export default class AboutApp extends React.Component<{}, IState> {
|
|||||||
)}
|
)}
|
||||||
<button
|
<button
|
||||||
className={
|
className={
|
||||||
isValidHostname
|
isHostNamechanged && isValidHostname
|
||||||
? 'AboutApp-close-button'
|
? 'AboutApp-button-save-restart'
|
||||||
: 'AboutApp-close-button-disabled'
|
: !isValidHostname
|
||||||
|
? 'AboutApp-button-save-restart-disabled'
|
||||||
|
: 'AboutApp-close-button'
|
||||||
}
|
}
|
||||||
onClick={this.eventHandlers.onClose}
|
onClick={this.eventHandlers.onClose}
|
||||||
title={closeButtonText}
|
title={closeButtonText}
|
||||||
@ -264,7 +274,16 @@ export default class AboutApp extends React.Component<{}, IState> {
|
|||||||
*/
|
*/
|
||||||
public close(): void {
|
public close(): void {
|
||||||
const { isValidHostname, didUpdateHostname, hostname } = this.state;
|
const { isValidHostname, didUpdateHostname, hostname } = this.state;
|
||||||
if (isValidHostname && didUpdateHostname) {
|
const finalConfig = this.state.finalConfig?.url
|
||||||
|
.replace(/https:\/\//g, '')
|
||||||
|
?.split('/')[0];
|
||||||
|
const updatedHostname = this.state.updatedHostname
|
||||||
|
?.replace(/https:\/\//g, '')
|
||||||
|
?.split('/')[0];
|
||||||
|
const compareHostName =
|
||||||
|
finalConfig && updatedHostname && finalConfig !== updatedHostname;
|
||||||
|
|
||||||
|
if (isValidHostname && didUpdateHostname && compareHostName) {
|
||||||
ipcRenderer.send('user-pod-updated', hostname);
|
ipcRenderer.send('user-pod-updated', hostname);
|
||||||
}
|
}
|
||||||
ipcRenderer.send('close-about-app');
|
ipcRenderer.send('close-about-app');
|
||||||
|
@ -179,55 +179,7 @@ body {
|
|||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
width: 100%;
|
flex: 1;
|
||||||
height: 36px;
|
|
||||||
|
|
||||||
&:focus {
|
|
||||||
box-shadow: 0 0 10px rgba(61, 162, 253, 1);
|
|
||||||
outline: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
&-close-button-disabled {
|
|
||||||
box-shadow: none;
|
|
||||||
border: none;
|
|
||||||
border-radius: 20px;
|
|
||||||
font-size: 0.875rem;
|
|
||||||
text-align: center;
|
|
||||||
display: inline-block;
|
|
||||||
text-decoration: none;
|
|
||||||
line-height: 12px;
|
|
||||||
background-color: @graphite-50;
|
|
||||||
color: @electricity-ui-05;
|
|
||||||
cursor: pointer;
|
|
||||||
box-sizing: border-box;
|
|
||||||
text-transform: uppercase;
|
|
||||||
font-weight: 600;
|
|
||||||
width: 100%;
|
|
||||||
height: 36px;
|
|
||||||
|
|
||||||
&:focus {
|
|
||||||
box-shadow: 0 0 10px rgba(61, 162, 253, 1);
|
|
||||||
outline: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
&-save-button {
|
|
||||||
box-shadow: none;
|
|
||||||
border: none;
|
|
||||||
border-radius: 20px;
|
|
||||||
font-size: 0.875rem;
|
|
||||||
text-align: center;
|
|
||||||
display: inline-block;
|
|
||||||
text-decoration: none;
|
|
||||||
line-height: 12px;
|
|
||||||
background-color: @electricity-ui-50;
|
|
||||||
color: @electricity-ui-05;
|
|
||||||
cursor: pointer;
|
|
||||||
box-sizing: border-box;
|
|
||||||
text-transform: uppercase;
|
|
||||||
font-weight: 600;
|
|
||||||
width: 120px;
|
|
||||||
height: 36px;
|
height: 36px;
|
||||||
|
|
||||||
&:focus {
|
&:focus {
|
||||||
@ -251,7 +203,7 @@ body {
|
|||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
width: 120px;
|
width: 50%;
|
||||||
margin-right: 8px;
|
margin-right: 8px;
|
||||||
height: 36px;
|
height: 36px;
|
||||||
|
|
||||||
@ -261,6 +213,79 @@ body {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&-cancel-button-save-restart {
|
||||||
|
box-shadow: none;
|
||||||
|
border: none;
|
||||||
|
border-radius: 20px;
|
||||||
|
font-size: 0.875rem;
|
||||||
|
text-align: center;
|
||||||
|
display: inline-block;
|
||||||
|
text-decoration: none;
|
||||||
|
line-height: 12px;
|
||||||
|
background-color: @electricity-ui-50;
|
||||||
|
color: @electricity-ui-05;
|
||||||
|
cursor: pointer;
|
||||||
|
box-sizing: border-box;
|
||||||
|
text-transform: uppercase;
|
||||||
|
font-weight: 600;
|
||||||
|
width: 30%;
|
||||||
|
margin-right: 8px;
|
||||||
|
height: 36px;
|
||||||
|
|
||||||
|
&:focus {
|
||||||
|
box-shadow: 0 0 10px rgba(61, 162, 253, 1);
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&-button-save-restart {
|
||||||
|
box-shadow: none;
|
||||||
|
border: none;
|
||||||
|
border-radius: 20px;
|
||||||
|
font-size: 0.875rem;
|
||||||
|
text-align: center;
|
||||||
|
display: inline-block;
|
||||||
|
text-decoration: none;
|
||||||
|
line-height: 12px;
|
||||||
|
background-color: @electricity-ui-50;
|
||||||
|
color: @electricity-ui-05;
|
||||||
|
cursor: pointer;
|
||||||
|
box-sizing: border-box;
|
||||||
|
text-transform: uppercase;
|
||||||
|
font-weight: 600;
|
||||||
|
flex: 1;
|
||||||
|
height: 36px;
|
||||||
|
|
||||||
|
&:focus {
|
||||||
|
box-shadow: 0 0 10px rgba(61, 162, 253, 1);
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&-button-save-restart-disabled {
|
||||||
|
box-shadow: none;
|
||||||
|
border: none;
|
||||||
|
border-radius: 20px;
|
||||||
|
font-size: 0.875rem;
|
||||||
|
text-align: center;
|
||||||
|
display: inline-block;
|
||||||
|
text-decoration: none;
|
||||||
|
line-height: 12px;
|
||||||
|
background-color: @graphite-50;
|
||||||
|
color: @electricity-ui-05;
|
||||||
|
cursor: pointer;
|
||||||
|
box-sizing: border-box;
|
||||||
|
text-transform: uppercase;
|
||||||
|
font-weight: 600;
|
||||||
|
flex: 1;
|
||||||
|
height: 36px;
|
||||||
|
|
||||||
|
&:focus {
|
||||||
|
box-shadow: 0 0 10px rgba(61, 162, 253, 1);
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
&-version-container {
|
&-version-container {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user