Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Zoom/scale setting #1651

Closed
wants to merge 16 commits into from
Closed
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion src/components/structures/LoggedInView.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,14 @@ export default React.createClass({
return {
// use compact timeline view
useCompactLayout: SettingsStore.getValue('useCompactLayout'),
interfaceScale: SettingsStore.getValue('interfaceScale'),
};
},

componentWillMount: function() {
// stash the MatrixClient in case we log out before we are unmounted
this._matrixClient = this.props.matrixClient;
this.dispatcherRef = dis.register(this.onAction);

CallMediaHandler.loadDevices();

Expand All @@ -96,6 +98,7 @@ export default React.createClass({
},

componentWillUnmount: function() {
dis.unregister(this.dispatcherRef);
document.removeEventListener('keydown', this._onKeyDown);
this._matrixClient.removeListener("accountData", this.onAccountData);
if (this._sessionStoreToken) {
Expand Down Expand Up @@ -126,6 +129,14 @@ export default React.createClass({
});
},

onAction(payload) {
if (payload.action === 'set_scale') {
this.setState({
interfaceScale: payload.value,
});
}
},

onAccountData: function(event) {
if (event.getType() === "im.vector.web.settings") {
this.setState({
Expand Down Expand Up @@ -326,7 +337,7 @@ export default React.createClass({
}

return (
<div className='mx_MatrixChat_wrapper'>
<div className='mx_MatrixChat_wrapper' style={{zoom: this.state.interfaceScale + '%'}}>
{ topBar }
<div className={bodyClasses}>
{ SettingsStore.isFeatureEnabled("feature_tag_panel") ? <TagPanel /> : <div /> }
Expand Down
27 changes: 27 additions & 0 deletions src/components/structures/UserSettings.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ const Modal = require('../../Modal');
const dis = require("../../dispatcher");
import sessionStore from '../../stores/SessionStore';
import Promise from 'bluebird';
import _debounce from 'lodash/debounce';
const packageJson = require('../../../package.json');
const UserSettingsStore = require('../../UserSettingsStore');
const CallMediaHandler = require('../../CallMediaHandler');
Expand Down Expand Up @@ -228,6 +229,7 @@ module.exports = React.createClass({

this.setState({
language: languageHandler.getCurrentLanguage(),
interfaceScale: SettingsStore.getValue("interfaceScale"),
});

this._sessionStore = sessionStore;
Expand All @@ -239,6 +241,9 @@ module.exports = React.createClass({

componentDidMount: function() {
this.dispatcherRef = dis.register(this.onAction);
this._debouncedDispatchScaleChange = _debounce((newInterfaceScale) => {
dis.dispatch({action: 'set_scale', value: newInterfaceScale});
}, 2000);
this._me = MatrixClientPeg.get().credentials.userId;
},

Expand Down Expand Up @@ -631,6 +636,17 @@ module.exports = React.createClass({
}
},

onInterfaceScaleChange: function(newInterfaceScale) {
newInterfaceScale = parseInt(newInterfaceScale);
if (this.state.interfaceScale !== newInterfaceScale) {
SettingsStore.setValue("interfaceScale", null, SettingLevel.DEVICE, newInterfaceScale);
this.setState({
interfaceScale: newInterfaceScale,
});
this._debouncedDispatchScaleChange(newInterfaceScale);
}
},

_renderLanguageSetting: function() {
const LanguageDropdown = sdk.getComponent('views.elements.LanguageDropdown');
return <div>
Expand All @@ -642,6 +658,16 @@ module.exports = React.createClass({
</div>;
},

_renderInterfaceScaleSetting: function() {
const InterfaceScaleSlider = sdk.getComponent('views.elements.InterfaceScaleSlider');
return <div>
<label htmlFor="interfaceScaleSelector">{ _t('Interface Scale') }</label>
<InterfaceScaleSlider ref="interfaceScaleSelector" onValueChange={this.onInterfaceScaleChange}
value={this.state.interfaceScale}
/>
</div>;
},

_renderUserInterfaceSettings: function() {
// TODO: this ought to be a separate component so that we don't need
// to rebind the onChange each time we render
Expand All @@ -668,6 +694,7 @@ module.exports = React.createClass({
</tbody>
</table>
{ this._renderLanguageSetting() }
{ this._renderInterfaceScaleSetting() }
</div>
</div>
);
Expand Down
47 changes: 47 additions & 0 deletions src/components/views/elements/InterfaceScaleSlider.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
/*
Copyright 2017 Marcel Radzio (MTRNord)
Copyright 2017 Vector Creations Ltd.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

^^ this needs fixing

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What should this be changed to? This was a copy from another component. Should I be putting it under my own name?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yup, unless someone else wrote it :P

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ok 😄 and also remove Copyright 2017 Vector Creations?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yup :)

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done 😃 hope my name is not taking too much space in the repo


Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

import React from 'react';

import SettingsStore from "../../../settings/SettingsStore";

export default class InterfaceScaleSlider extends React.Component {
propTypes = {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

missing word static

should be static propTypes

className: React.PropTypes.string,
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

plz use import PropTypes from 'prop-types' and then replace React.PropTypes with PropTypes

onValueChange: React.PropTypes.func.isRequired,
value: React.PropTypes.number,
};

constructor(props) {
super(props);
this._onValueChange = this._onValueChange.bind(this);
}

_onValueChange(e) {
this.props.onValueChange(parseInt(e.target.value));
}

render() {
const interfaceScale = SettingsStore.getValue("interfaceScale", null, true);
const value = this.props.value || interfaceScale;
return <div className={this.props.className}>
<input type="range" min="70" max="150" step="10" className={this.props.className + "_input"}
onChange={this._onValueChange} value={value} />
<div className={this.props.className + "_label"}>{ value }%</div>
</div>;
}
}
1 change: 1 addition & 0 deletions src/i18n/strings/en_EN.json
Original file line number Diff line number Diff line change
Expand Up @@ -803,6 +803,7 @@
"Unable to remove contact information": "Unable to remove contact information",
"Refer a friend to Riot:": "Refer a friend to Riot:",
"Interface Language": "Interface Language",
"Interface Scale": "Interface Scale",
"User Interface": "User Interface",
"Autocomplete Delay (ms):": "Autocomplete Delay (ms):",
"<not supported>": "<not supported>",
Expand Down
1 change: 1 addition & 0 deletions src/i18n/strings/en_US.json
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,7 @@
"Incorrect username and/or password.": "Incorrect username and/or password.",
"Incorrect verification code": "Incorrect verification code",
"Interface Language": "Interface Language",
"Interface Scale": "Interface Scale",
"Invalid alias format": "Invalid alias format",
"Invalid address format": "Invalid address format",
"Invalid Email Address": "Invalid Email Address",
Expand Down
4 changes: 4 additions & 0 deletions src/settings/Settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,10 @@ export const SETTINGS = {
supportedLevels: LEVELS_DEVICE_ONLY_SETTINGS_WITH_CONFIG,
default: "en",
},
"interfaceScale": {
supportedLevels: LEVELS_DEVICE_ONLY_SETTINGS_WITH_CONFIG,
default: 100,
},
"analyticsOptOut": {
supportedLevels: LEVELS_DEVICE_ONLY_SETTINGS_WITH_CONFIG,
displayName: _td('Opt out of analytics'),
Expand Down