Add public server modal to message pane

pull/717/head
Vincent 5 years ago
parent 9f075125db
commit 5360968a91

@ -2480,6 +2480,12 @@
"decline": { "decline": {
"message": "Decline" "message": "Decline"
}, },
"generalSettingsTitle": {
"message": "Generals"
},
"generalSettingsDescription": {
"message": "General settings and configuration"
},
"accountSettingsTitle": { "accountSettingsTitle": {
"message": "Account" "message": "Account"
}, },
@ -2496,12 +2502,12 @@
"message": "Notifications" "message": "Notifications"
}, },
"notificationSettingsDescription": { "notificationSettingsDescription": {
"message": "Choose what you're notified about." "message": "Choose what you're notified about"
}, },
"devicesSettingsTitle": { "devicesSettingsTitle": {
"message": "Devices" "message": "Devices"
}, },
"devicesSettingsDescription": { "devicesSettingsDescription": {
"message": "Managed linked devices." "message": "Managed linked devices"
} }
} }

@ -821,6 +821,7 @@
}; };
window.showSeedDialog = window.owsDesktopApp.appView.showSeedDialog; window.showSeedDialog = window.owsDesktopApp.appView.showSeedDialog;
window.showAddServerDialog = window.owsDesktopApp.appView.showAddServerDialog;
window.generateID = () => window.generateID = () =>
Math.random() Math.random()
@ -872,10 +873,10 @@
return toastID; return toastID;
}; };
window.deleteAccount = () => { window.deleteAccount = async () => {
// Delete local data await window.Signal.Data.removeAll();
// TOOD. MAKE THIS PROCESS SECURED WITH rm-secure await window.storage.fetch();
// https://www.npmjs.com/package/secure-rm
alert('YOUR ACCOUNT HAS BEEN DELETED'); alert('YOUR ACCOUNT HAS BEEN DELETED');
}; };

@ -17,6 +17,7 @@
this.applyHideMenu(); this.applyHideMenu();
this.showSeedDialog = this.showSeedDialog.bind(this); this.showSeedDialog = this.showSeedDialog.bind(this);
this.showAddServerDialog = this.showAddServerDialog.bind(this);
}, },
events: { events: {
'click .openInstaller': 'openInstaller', // NetworkStatusView has this button 'click .openInstaller': 'openInstaller', // NetworkStatusView has this button

@ -226,6 +226,10 @@ $session_message-container-border-radius: 5px;
cursor: pointer; cursor: pointer;
transition: $session-transition-duration; transition: $session-transition-duration;
&.disabled {
cursor: default;
}
&.default, &.default,
&.square, &.square,
&.brand { &.brand {
@ -234,27 +238,50 @@ $session_message-container-border-radius: 5px;
&.green { &.green {
border: 2px solid $session-color-green; border: 2px solid $session-color-green;
background-color: $session-color-green; background-color: $session-color-green;
&.disabled{
background-color: rgba($session-color-green, 0.6);
}
&:hover { &:hover {
@include transparent-background($session-color-green); @include transparent-background($session-color-green);
} }
} }
&.white { &.white {
background-color: $session-color-white; background-color: $session-color-white;
&.disabled{
background-color: rgba($session-color-white, 0.6);
}
} }
&.primary { &.primary {
background-color: $session-color-primary; background-color: $session-color-primary;
&.disabled{
background-color: rgba($session-color-primary, 0.6);
}
} }
&.secondary { &.secondary {
background-color: $session-color-secondary; background-color: $session-color-secondary;
&.disabled{
background-color: rgba($session-color-secondary, 0.6);
}
} }
&.success { &.success {
background-color: $session-color-success; background-color: $session-color-success;
&.disabled{
background-color: rgba($session-color-success, 0.6);
}
} }
&.danger { &.danger {
background-color: $session-color-danger; background-color: $session-color-danger;
&.disabled{
background-color: rgba($session-color-danger, 0.6);
}
} }
&.warning { &.warning {
background-color: $session-color-warning; background-color: $session-color-warning;
&.disabled{
background-color: rgba($session-color-warning, 0.6);
}
} }
} }
@ -1004,3 +1031,8 @@ label {
.messages li { .messages li {
transition: $session-transition-duration !important; transition: $session-transition-duration !important;
} }
.network-status-container{
}

@ -173,6 +173,16 @@ $session-compose-margin: 20px;
.session-button { .session-button {
margin-left: auto; margin-left: auto;
} }
&-buttons {
margin-bottom: $session-margin-sm;
display: inline-flex;
width: 100%;
.session-button {
flex: 1;
}
}
} }
&__title { &__title {

@ -176,10 +176,15 @@ export class SettingsHeader extends React.Component<SettingsViewProps>{
render() { render() {
const category = String(this.props.category) const category = String(this.props.category)
const categoryTitlePrefix = category[0].toUpperCase() + category.substr(1);
// Remove 's' on the end to keep words in singular form
const categoryTitle = categoryTitlePrefix[categoryTitlePrefix.length - 1] === 's'
? categoryTitlePrefix.slice(0, -1) + ' Settings'
: categoryTitlePrefix + ' Settings';
return ( return (
<div className="session-settings-header"> <div className="session-settings-header">
{category[0].toUpperCase() + category.substr(1)} Settings { categoryTitle }
<SessionIconButton <SessionIconButton
iconType={SessionIconType.Search} iconType={SessionIconType.Search}
iconSize={SessionIconSize.Large} iconSize={SessionIconSize.Large}

@ -17,6 +17,7 @@ import { cleanSearchTerm } from '../../util/cleanSearchTerm';
import { SearchOptions } from '../../types/Search'; import { SearchOptions } from '../../types/Search';
import { validateNumber } from '../../types/PhoneNumber'; import { validateNumber } from '../../types/PhoneNumber';
import { LeftPane, RowRendererParamsType } from '../LeftPane'; import { LeftPane, RowRendererParamsType } from '../LeftPane';
import { SessionButton, SessionButtonType, SessionButtonColor } from './SessionButton';
export interface Props { export interface Props {
searchTerm: string; searchTerm: string;
@ -145,6 +146,18 @@ export class LeftPaneMessageSection extends React.Component<Props, any> {
return [list]; return [list];
} }
public renderMessagePanelButtons(): JSX.Element {
return (
<div className="module-left-pane__header-buttons">
<SessionButton
text={window.i18n('showAddServer')}
buttonType={SessionButtonType.Square}
onClick={window.showAddServerDialog}
/>
</div>
);
}
public renderHeader(): JSX.Element { public renderHeader(): JSX.Element {
const labels = [window.i18n('messagesHeader')]; const labels = [window.i18n('messagesHeader')];
@ -180,6 +193,7 @@ export class LeftPaneMessageSection extends React.Component<Props, any> {
public renderConversations() { public renderConversations() {
return ( return (
<div> <div>
{this.renderMessagePanelButtons()}
<SessionSearchInput <SessionSearchInput
searchString={this.props.searchTerm} searchString={this.props.searchTerm}
onChange={this.updateSearchBound} onChange={this.updateSearchBound}

@ -85,6 +85,7 @@ export class LeftPaneSectionHeader extends React.Component<Props, State> {
text={window.i18n('compose')} text={window.i18n('compose')}
onClick={buttonClicked} onClick={buttonClicked}
key="compose" key="compose"
disabled={false}
/> />
); );
} else if (notificationCount && notificationCount > 0) { } else if (notificationCount && notificationCount > 0) {

@ -175,6 +175,11 @@ export class LeftPaneSettingSection extends React.Component<Props, State> {
public getCategories() { public getCategories() {
return [ return [
{
id: SessionSettingCategory.General,
title: window.i18n('generalSettingsTitle'),
description: window.i18n('generalSettingsDescription'),
},
{ {
id: SessionSettingCategory.Account, id: SessionSettingCategory.Account,
title: window.i18n('accountSettingsTitle'), title: window.i18n('accountSettingsTitle'),

@ -24,6 +24,7 @@ export enum SessionButtonColor {
interface Props { interface Props {
text?: string; text?: string;
disabled?: boolean;
buttonType: SessionButtonType; buttonType: SessionButtonType;
buttonColor: SessionButtonColor; buttonColor: SessionButtonColor;
onClick: any; onClick: any;
@ -33,6 +34,7 @@ export class SessionButton extends React.PureComponent<Props> {
public static defaultProps = { public static defaultProps = {
buttonType: SessionButtonType.Default, buttonType: SessionButtonType.Default,
buttonColor: SessionButtonColor.Primary, buttonColor: SessionButtonColor.Primary,
disabled: false,
onClick: () => null, onClick: () => null,
}; };
@ -42,7 +44,7 @@ export class SessionButton extends React.PureComponent<Props> {
} }
public render() { public render() {
const { buttonType, buttonColor, text } = this.props; const { buttonType, buttonColor, text, disabled } = this.props;
const buttonTypes = []; const buttonTypes = [];
@ -53,9 +55,9 @@ export class SessionButton extends React.PureComponent<Props> {
return ( return (
<div <div
className={classNames('session-button', ...buttonTypes, buttonColor)} className={classNames('session-button', ...buttonTypes, buttonColor, disabled && 'disabled')}
role="button" role="button"
onClick={this.clickHandler} onClick={disabled ? () => null : this.clickHandler}
> >
{this.props.children || text} {this.props.children || text}
</div> </div>

1
ts/global.d.ts vendored

@ -23,6 +23,7 @@ interface Window {
pushToast: any; pushToast: any;
confirmationDialog: any; confirmationDialog: any;
showSeedDialog: any; showSeedDialog: any;
showAddServerDialog: any;
toggleTheme: any; toggleTheme: any;
} }

Loading…
Cancel
Save