2020-04-07 12:48:56 +03:00
|
|
|
/*
|
2020-04-07 15:34:10 +03:00
|
|
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
2020-04-07 12:48:56 +03:00
|
|
|
|
|
|
|
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 * as React from "react";
|
|
|
|
|
|
|
|
import AutoHideScrollbar from './AutoHideScrollbar';
|
|
|
|
import { getHomePageUrl } from "../../utils/pages";
|
|
|
|
import { _t } from "../../languageHandler";
|
|
|
|
import SdkConfig from "../../SdkConfig";
|
|
|
|
import * as sdk from "../../index";
|
2020-05-14 05:41:41 +03:00
|
|
|
import dis from "../../dispatcher/dispatcher";
|
2020-06-09 05:33:21 +03:00
|
|
|
import { Action } from "../../dispatcher/actions";
|
2020-04-07 12:48:56 +03:00
|
|
|
|
|
|
|
const onClickSendDm = () => dis.dispatch({action: 'view_create_chat'});
|
2020-06-09 05:33:21 +03:00
|
|
|
const onClickExplore = () => dis.fire(Action.ViewRoomDirectory);
|
2020-04-07 12:48:56 +03:00
|
|
|
const onClickNewRoom = () => dis.dispatch({action: 'view_create_room'});
|
|
|
|
|
|
|
|
const HomePage = () => {
|
|
|
|
const config = SdkConfig.get();
|
|
|
|
const pageUrl = getHomePageUrl(config);
|
|
|
|
|
|
|
|
if (pageUrl) {
|
|
|
|
const EmbeddedPage = sdk.getComponent('structures.EmbeddedPage');
|
|
|
|
return <EmbeddedPage className="mx_HomePage" url={pageUrl} scrollbar={true} />;
|
|
|
|
}
|
|
|
|
|
|
|
|
const brandingConfig = config.branding;
|
2020-07-15 09:09:39 +03:00
|
|
|
let logoUrl = "themes/element/img/logos/element-logo.svg";
|
2020-04-07 12:48:56 +03:00
|
|
|
if (brandingConfig && brandingConfig.authHeaderLogoUrl) {
|
|
|
|
logoUrl = brandingConfig.authHeaderLogoUrl;
|
|
|
|
}
|
|
|
|
|
|
|
|
const AccessibleButton = sdk.getComponent("elements.AccessibleButton");
|
|
|
|
return <AutoHideScrollbar className="mx_HomePage mx_HomePage_default">
|
|
|
|
<div className="mx_HomePage_default_wrapper">
|
2020-08-03 18:02:26 +03:00
|
|
|
<img src={logoUrl} alt={config.brand || "Element"} />
|
|
|
|
<h1>{ _t("Welcome to %(appName)s", { appName: config.brand || "Element" }) }</h1>
|
2020-04-07 12:48:56 +03:00
|
|
|
<h4>{ _t("Liberate your communication") }</h4>
|
|
|
|
<div className="mx_HomePage_default_buttons">
|
|
|
|
<AccessibleButton onClick={onClickSendDm} className="mx_HomePage_button_sendDm">
|
|
|
|
{ _t("Send a Direct Message") }
|
|
|
|
</AccessibleButton>
|
|
|
|
<AccessibleButton onClick={onClickExplore} className="mx_HomePage_button_explore">
|
|
|
|
{ _t("Explore Public Rooms") }
|
|
|
|
</AccessibleButton>
|
|
|
|
<AccessibleButton onClick={onClickNewRoom} className="mx_HomePage_button_createGroup">
|
|
|
|
{ _t("Create a Group Chat") }
|
|
|
|
</AccessibleButton>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</AutoHideScrollbar>;
|
|
|
|
};
|
|
|
|
|
|
|
|
export default HomePage;
|