fix the slider bug

pull/905/head
Brian Jian Zhao 5 years ago
parent 23da1831c2
commit 203d314254

@ -286,6 +286,9 @@
} }
first = false; first = false;
// Update zoom
window.updateZoomFactor();
const currentPoWDifficulty = storage.get('PoWDifficulty', null); const currentPoWDifficulty = storage.get('PoWDifficulty', null);
if (!currentPoWDifficulty) { if (!currentPoWDifficulty) {
storage.put('PoWDifficulty', window.getDefaultPoWDifficulty()); storage.put('PoWDifficulty', window.getDefaultPoWDifficulty());

@ -614,7 +614,9 @@ class LokiAppDotNetServerAPI {
`serverRequest ${mode} error`, `serverRequest ${mode} error`,
e.code, e.code,
e.message, e.message,
`json: ${txtResponse}`, 'attempting connection to', url `json: ${txtResponse}`,
'attempting connection to',
url
); );
} else { } else {
log.info( log.info(

@ -836,7 +836,6 @@ async function showMainWindow(sqlKey, passwordAttempt = false) {
createWindow(); createWindow();
if (usingTrayIcon) { if (usingTrayIcon) {
tray = createTrayIcon(getMainWindow, locale.messages); tray = createTrayIcon(getMainWindow, locale.messages);
} }

@ -3,7 +3,7 @@
const path = require('path'); const path = require('path');
const electron = require('electron'); const electron = require('electron');
const {webFrame} = electron; const { webFrame } = electron;
const semver = require('semver'); const semver = require('semver');
const { deferredToPromise } = require('./js/modules/deferred_to_promise'); const { deferredToPromise } = require('./js/modules/deferred_to_promise');
@ -71,7 +71,6 @@ window.CONSTANTS = {
MAX_CONNECTION_DURATION: 5000, MAX_CONNECTION_DURATION: 5000,
}; };
window.versionInfo = { window.versionInfo = {
environment: window.getEnvironment(), environment: window.getEnvironment(),
version: window.getVersion(), version: window.getVersion(),
@ -84,15 +83,18 @@ window.wrapDeferred = deferredToPromise;
const ipc = electron.ipcRenderer; const ipc = electron.ipcRenderer;
const localeMessages = ipc.sendSync('locale-data'); const localeMessages = ipc.sendSync('locale-data');
window.updateZoomFactor = () => {
window.setZoomFactor = (number) => { const zoomFactor = window.getSettingValue('zoom-factor-setting') || 100;
return webFrame.setZoomFactor(number); window.setZoomFactor(zoomFactor / 100);
} }
window.getZoomFactor = () => { window.setZoomFactor = number => {
return webFrame.getZoomFactor(); webFrame.setZoomFactor(number);
} };
window.getZoomFactor = () => {
webFrame.getZoomFactor();
};
window.setBadgeCount = count => ipc.send('set-badge-count', count); window.setBadgeCount = count => ipc.send('set-badge-count', count);
@ -173,9 +175,6 @@ ipc.on('on-unblock-number', (event, number) => {
window.closeAbout = () => ipc.send('close-about'); window.closeAbout = () => ipc.send('close-about');
window.readyForUpdates = () => ipc.send('ready-for-updates'); window.readyForUpdates = () => ipc.send('ready-for-updates');
window.updateTrayIcon = unreadCount => window.updateTrayIcon = unreadCount =>
ipc.send('update-tray-icon', unreadCount); ipc.send('update-tray-icon', unreadCount);
@ -193,9 +192,6 @@ ipc.on('set-up-as-standalone', () => {
// Settings-related events // Settings-related events
window.showSettings = () => ipc.send('show-settings'); window.showSettings = () => ipc.send('show-settings');
window.showPermissionsPopup = () => ipc.send('show-permissions-popup'); window.showPermissionsPopup = () => ipc.send('show-permissions-popup');
@ -231,14 +227,13 @@ window.getSettingValue = (settingID, comparisonValue = null) => {
return comparisonValue ? !!settingVal === comparisonValue : settingVal; return comparisonValue ? !!settingVal === comparisonValue : settingVal;
}; };
window.setSettingValue = (settingID, value) => { window.setSettingValue = (settingID, value) => {
window.storage.put(settingID, value); window.storage.put(settingID, value);
};
if (settingID === 'zoom-factor-setting') {
window.updateZoomFactor();
}
};
installGetter('device-name', 'getDeviceName'); installGetter('device-name', 'getDeviceName');

@ -36,10 +36,6 @@ export class SessionToggle extends React.PureComponent<Props, State> {
}; };
} }
public render() { public render() {
return ( return (
<div <div

@ -105,7 +105,7 @@ export class SessionSettingListItem extends React.Component<Props, State> {
<p>{`${currentSliderValue} Hours`}</p> <p>{`${currentSliderValue} Hours`}</p>
</div> </div>
</div> </div>
):type === SessionSettingType.Slider && title === "Zoom Factor" ? ( ) : type === SessionSettingType.Slider && title === 'Zoom Factor' ? (
<div> <div>
<Slider <Slider
dots={true} dots={true}
@ -122,9 +122,7 @@ export class SessionSettingListItem extends React.Component<Props, State> {
<p>{`% ${currentSliderValue} Zoom Level`}</p> <p>{`% ${currentSliderValue} Zoom Level`}</p>
</div> </div>
</div> </div>
): ) : null}
null}
</div> </div>
</div> </div>
); );
@ -145,10 +143,6 @@ export class SessionSettingListItem extends React.Component<Props, State> {
sliderValue: value, sliderValue: value,
}); });
if(this.props.title === 'Zoom Factor' && this.state.sliderValue!==null) {
window.setZoomFactor(this.state.sliderValue/100)
}
} }
} }

@ -8,7 +8,6 @@ import {
SessionButtonType, SessionButtonType,
} from '../SessionButton'; } from '../SessionButton';
export enum SessionSettingCategory { export enum SessionSettingCategory {
Appearance = 'appearance', Appearance = 'appearance',
Account = 'account', Account = 'account',
@ -76,7 +75,6 @@ export class SettingsView extends React.Component<SettingsViewProps, State> {
} }
public componentDidMount() { public componentDidMount() {
console.log(this.state, 'Print state of SessionSettings');
setTimeout(() => $('#password-lock-input').focus(), 100); setTimeout(() => $('#password-lock-input').focus(), 100);
window.Whisper.events.on('refreshLinkedDeviceList', async () => { window.Whisper.events.on('refreshLinkedDeviceList', async () => {
@ -85,8 +83,6 @@ export class SettingsView extends React.Component<SettingsViewProps, State> {
}, 1000); }, 1000);
}); });
this.refreshLinkedDevice(); this.refreshLinkedDevice();
} }
public componentWillUnmount() { public componentWillUnmount() {
@ -110,8 +106,6 @@ export class SettingsView extends React.Component<SettingsViewProps, State> {
settings = this.getLocalSettings(); settings = this.getLocalSettings();
} }
return ( return (
<> <>
{this.state.hasPassword !== null && {this.state.hasPassword !== null &&
@ -227,27 +221,22 @@ export class SettingsView extends React.Component<SettingsViewProps, State> {
} }
public render() { public render() {
console.log(this.props, 'From SessionSettings');
const { category } = this.props; const { category } = this.props;
const shouldRenderPasswordLock = const shouldRenderPasswordLock =
this.state.shouldLockSettings && this.state.hasPassword; this.state.shouldLockSettings && this.state.hasPassword;
return ( return (
<div className="session-settings"> <div className="session-settings">
<SettingsHeader <SettingsHeader
showLinkDeviceButton={!shouldRenderPasswordLock} showLinkDeviceButton={!shouldRenderPasswordLock}
category={category} category={category}
/> />
<div className="session-settings-view"> <div className="session-settings-view">
{shouldRenderPasswordLock ? ( {shouldRenderPasswordLock ? (
this.renderPasswordLock() this.renderPasswordLock()
//
) : ( ) : (
//
<div ref={this.settingsViewRef} className="session-settings-list"> <div ref={this.settingsViewRef} className="session-settings-list">
{this.renderSettingInCategory()} {this.renderSettingInCategory()}
{/* what gets rendered back from calling renderSettingInCategory */} {/* what gets rendered back from calling renderSettingInCategory */}
@ -318,9 +307,6 @@ export class SettingsView extends React.Component<SettingsViewProps, State> {
} }
} }
private getPubkeyName(pubKey: string | null) { private getPubkeyName(pubKey: string | null) {
if (!pubKey) { if (!pubKey) {
return {}; return {};
@ -563,7 +549,7 @@ export class SettingsView extends React.Component<SettingsViewProps, State> {
onSuccess: this.onPasswordUpdated, onSuccess: this.onPasswordUpdated,
}), }),
confirmationDialogParams: undefined, confirmationDialogParams: undefined,
} },
]; ];
} }

1
ts/global.d.ts vendored

@ -59,7 +59,6 @@ interface Window {
lokiFeatureFlags: any; lokiFeatureFlags: any;
resetDatabase: any; resetDatabase: any;
} }
interface Promise<T> { interface Promise<T> {

Loading…
Cancel
Save