fix: selected message box shadow and hide button while loading DB

also fix about/debug window first showing
pull/2538/head
Audric Ackermann 3 years ago
parent bffc9eddd5
commit 460cbce119

@ -97,7 +97,7 @@
.selection-mode { .selection-mode {
.messages-container > *:not(.message-selected) { .messages-container > *:not(.message-selected) {
animation: toShadow var(--default-duration); animation: toShadow var(--default-duration);
opacity: 0.4; opacity: 0.3;
} }
} }
} }

@ -172,12 +172,15 @@ class SessionPasswordPromptInner extends React.PureComponent<{}, State> {
/> />
</> </>
)} )}
<SessionButton {!this.state.loading && (
text={showResetElements ? window.i18n('tryAgain') : window.i18n('done')} <SessionButton
buttonType={SessionButtonType.BrandOutline} // TODO: theming update text={showResetElements ? window.i18n('tryAgain') : window.i18n('done')}
buttonColor={SessionButtonColor.White} buttonType={SessionButtonType.BrandOutline} // TODO: theming update
onClick={this.initLogin} buttonColor={SessionButtonColor.White}
/> onClick={this.initLogin}
disabled={this.state.loading}
/>
)}
</div> </div>
); );
} }

@ -125,18 +125,6 @@ const StyledReadableMessage = styled(ReadableMessage)<{
` `
background-color: var(--color-compose-view-button-background); background-color: var(--color-compose-view-button-background);
`} `}
${props =>
props.selected &&
`
&.message-selected {
.module-message {
&__container {
box-shadow: var(--color-session-shadow);
}
}
}
`}
`; `;
export const GenericReadableMessage = (props: Props) => { export const GenericReadableMessage = (props: Props) => {

@ -585,6 +585,7 @@ async function showPasswordWindow() {
} }
let aboutWindow: BrowserWindow | null; let aboutWindow: BrowserWindow | null;
// tslint:disable-next-line: max-func-body-length
async function showAbout() { async function showAbout() {
if (aboutWindow) { if (aboutWindow) {
aboutWindow.show(); aboutWindow.show();
@ -624,9 +625,11 @@ async function showAbout() {
aboutWindow = null; aboutWindow = null;
}); });
aboutWindow.once('ready-to-show', () => { // looks like sometimes ready-to-show is not fired by electron.
aboutWindow?.show(); // the fix mentioned here does not work neither: https://github.com/electron/electron/issues/7779.
}); // But, just showing the aboutWindow right away works correctly, so just force it to be shown when just created.
// It might take half a second to render it's content though.
aboutWindow?.show();
} }
let debugLogWindow: BrowserWindow | null = null; let debugLogWindow: BrowserWindow | null = null;
@ -675,8 +678,10 @@ async function showDebugLogWindow() {
debugLogWindow.once('ready-to-show', () => { debugLogWindow.once('ready-to-show', () => {
debugLogWindow?.setBackgroundColor('#000'); debugLogWindow?.setBackgroundColor('#000');
debugLogWindow?.show();
}); });
// see above: looks like sometimes ready-to-show is not fired by electron
debugLogWindow?.show();
} }
async function saveDebugLog(_event: any, logText: any) { async function saveDebugLog(_event: any, logText: any) {

@ -4,6 +4,7 @@ import { assert } from 'chai';
import * as Settings from '../../../ts/types/Settings'; import * as Settings from '../../../ts/types/Settings';
// tslint:disable-next-line: max-func-body-length
describe('Settings', () => { describe('Settings', () => {
describe('isAudioNotificationSupported', () => { describe('isAudioNotificationSupported', () => {
context('on macOS', () => { context('on macOS', () => {
@ -61,7 +62,7 @@ describe('Settings', () => {
Sinon.restore(); Sinon.restore();
}); });
it('should return false', () => { it('should return true', () => {
assert.isFalse(Settings.isAudioNotificationSupported()); assert.isFalse(Settings.isAudioNotificationSupported());
}); });
}); });

@ -109,6 +109,7 @@ function clearByMessageId(messageId: string) {
} }
} }
// tslint:disable-next-line: cyclomatic-complexity
function update(forceRefresh = false) { function update(forceRefresh = false) {
if (lastNotificationDisplayed) { if (lastNotificationDisplayed) {
lastNotificationDisplayed.close(); lastNotificationDisplayed.close();

Loading…
Cancel
Save