From 9f075125db579b7ee9d187098d5bfc514f4e1abd Mon Sep 17 00:00:00 2001 From: Vincent Date: Mon, 13 Jan 2020 13:38:20 +1100 Subject: [PATCH] Appview transforms are fixed and in place --- stylesheets/_session.scss | 26 +++- ts/components/MainViewController.tsx | 116 ++++++++++++++---- .../session/LeftPaneSettingSection.tsx | 3 +- 3 files changed, 116 insertions(+), 29 deletions(-) diff --git a/stylesheets/_session.scss b/stylesheets/_session.scss index 3d7abde01..61f902d3e 100644 --- a/stylesheets/_session.scss +++ b/stylesheets/_session.scss @@ -83,6 +83,7 @@ $session-margin-md: 15px; $session-margin-lg: 20px; $session-search-input-height: 34px; +$main-view-header-height: 85px; div.spacer-sm { height: $session-margin-sm; @@ -924,13 +925,34 @@ label { } } + .session-settings { + width: 100%; + height: 100vh; + &-list { - width: 100%; - height: 100vh; overflow-y: scroll; } + &-header { + display: flex; + justify-content: center; + background-color: $session-shade-6; + height: $main-view-header-height; + line-height: $main-view-header-height; + font-weight: bold; + font-size: 18px; + + .session-icon-button { + display: flex; + justify-content: center; + position: absolute; + right: $session-margin-lg; + align-items: center; + height: $main-view-header-height; + } + } + &-item { font-size: 15px; color: $session-color-white; diff --git a/ts/components/MainViewController.tsx b/ts/components/MainViewController.tsx index 7dc14ee19..4bcc9554a 100644 --- a/ts/components/MainViewController.tsx +++ b/ts/components/MainViewController.tsx @@ -8,6 +8,7 @@ import { import { SessionSettingCategory } from './session/LeftPaneSettingSection'; import { SessionButtonColor } from './session/SessionButton'; +import { SessionIconButton, SessionIconType, SessionIconSize } from './session/icon'; // Grab initial values from database on startup const localSettings = [ @@ -77,8 +78,75 @@ const localSettings = [ ]; export class MainViewController { + public static renderMessageView() { - const element = ( + ReactDOM.render( + , + document.getElementById('main-view') + ); + } + + public static renderSettingsView(category: SessionSettingCategory) { + ReactDOM.render( + , + document.getElementById('main-view') + ); + } +} + + +interface SettingsViewProps { + category: SessionSettingCategory +} + +export class SettingsView extends React.Component{ + public settingsViewRef: React.RefObject; + + public constructor(props: any) { + super(props); + this.settingsViewRef = React.createRef(); + } + + render() { + const { category } = this.props; + + return ( +
+ +
+ + + {localSettings.map(setting => { + return ( +
+ {setting.category === category && ( + { + SettingsManager.updateSetting(setting); + }} + buttonText={setting.buttonText || undefined} + buttonColor={setting.buttonColor || undefined} + /> + )} +
+ ); + })} +
+
+ ) + } +} + +export class MessageView extends React.Component { + render() { + return (
@@ -94,39 +162,35 @@ export class MainViewController {
); + } +} - ReactDOM.render(element, document.getElementById('main-view')); +export class SettingsHeader extends React.Component{ + public constructor(props: any) { + super(props); } - public static renderSettingsView(category: SessionSettingCategory) { - const element = ( -
- {localSettings.map(setting => { - return ( -
- {setting.category === category && ( - { - SettingsManager.updateSetting(setting); - }} - buttonText={setting.buttonText || undefined} - buttonColor={setting.buttonColor || undefined} - /> - )} -
- ); - })} + public focusSearch(){ + $('.left-pane-setting-section .session-search-input input').focus(); + } + + render() { + const category = String(this.props.category) + + return ( +
+ {category[0].toUpperCase() + category.substr(1)} Settings +
); - - ReactDOM.render(element, document.getElementById('main-view')); } } + export class SettingsManager { public static updateSetting({ id, type, value }) { if (type === SessionSettingType.Toggle) { diff --git a/ts/components/session/LeftPaneSettingSection.tsx b/ts/components/session/LeftPaneSettingSection.tsx index 340f498bd..d928399e8 100644 --- a/ts/components/session/LeftPaneSettingSection.tsx +++ b/ts/components/session/LeftPaneSettingSection.tsx @@ -15,6 +15,7 @@ import { SessionIcon, SessionIconSize, SessionIconType } from './icon'; import { SessionSearchInput } from './SessionSearchInput'; export enum SessionSettingCategory { + General = 'general', Account = 'account', Privacy = 'privacy', Notifications = 'notifications', @@ -33,7 +34,7 @@ export class LeftPaneSettingSection extends React.Component { super(props); this.state = { - settingCategory: SessionSettingCategory.Account, + settingCategory: SessionSettingCategory.General, searchQuery: '', };