2019-01-18 23:09:17 +03:00
|
|
|
/*
|
|
|
|
Copyright 2019 New Vector Ltd
|
|
|
|
|
|
|
|
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 PropTypes from 'prop-types';
|
|
|
|
import sdk from '../../../index';
|
2019-01-18 23:43:17 +03:00
|
|
|
import {Tab, TabbedView} from "../../structures/TabbedView";
|
|
|
|
import {_td} from "../../../languageHandler";
|
2019-01-18 23:09:17 +03:00
|
|
|
|
2019-01-18 23:43:17 +03:00
|
|
|
export default class UserSettingsDialog extends React.Component {
|
|
|
|
static propTypes = {
|
2019-01-18 23:09:17 +03:00
|
|
|
onFinished: PropTypes.func.isRequired,
|
2019-01-18 23:43:17 +03:00
|
|
|
};
|
2019-01-18 23:09:17 +03:00
|
|
|
|
2019-01-18 23:43:17 +03:00
|
|
|
_getTabs() {
|
|
|
|
return [
|
|
|
|
new Tab(_td("General"), <div>General Test</div>),
|
|
|
|
new Tab(_td("Account"), <div>Account Test</div>),
|
|
|
|
];
|
|
|
|
}
|
2019-01-18 23:09:17 +03:00
|
|
|
|
2019-01-18 23:43:17 +03:00
|
|
|
render() {
|
2019-01-18 23:09:17 +03:00
|
|
|
return (
|
2019-01-18 23:43:17 +03:00
|
|
|
<TabbedView onExit={this.props.onFinished} tabs={this._getTabs()} />
|
|
|
|
// <UserSettings
|
|
|
|
// onClose={this.props.onFinished}
|
|
|
|
// brand={SdkConfig.get().brand}
|
|
|
|
// referralBaseUrl={SdkConfig.get().referralBaseUrl}
|
|
|
|
// teamToken={SdkConfig.get().teamToken}
|
|
|
|
// />
|
2019-01-18 23:09:17 +03:00
|
|
|
);
|
2019-01-18 23:43:17 +03:00
|
|
|
}
|
|
|
|
}
|