2019-02-01 17:31:40 +01:00
|
|
|
/*
|
2020-07-07 18:53:52 +02:00
|
|
|
Copyright 2019, 2020 New Vector Ltd
|
2019-02-01 17:31:40 +01: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.
|
|
|
|
*/
|
|
|
|
|
2022-12-09 13:28:29 +01:00
|
|
|
import * as React from "react";
|
|
|
|
import SdkConfig from "matrix-react-sdk/src/SdkConfig";
|
2019-02-01 17:31:40 +01:00
|
|
|
|
2022-03-02 22:10:42 +01:00
|
|
|
import VectorAuthFooter from "./VectorAuthFooter";
|
|
|
|
|
2019-02-11 16:51:16 +01:00
|
|
|
export default class VectorAuthPage extends React.PureComponent {
|
2022-03-25 06:41:19 +01:00
|
|
|
private static welcomeBackgroundUrl;
|
2020-07-07 18:53:52 +02:00
|
|
|
|
|
|
|
// cache the url as a static to prevent it changing without refreshing
|
2022-11-23 17:24:36 +01:00
|
|
|
private static getWelcomeBackgroundUrl(): string {
|
2020-07-07 18:53:52 +02:00
|
|
|
if (VectorAuthPage.welcomeBackgroundUrl) return VectorAuthPage.welcomeBackgroundUrl;
|
2019-02-01 17:31:40 +01:00
|
|
|
|
2022-03-18 17:12:44 +01:00
|
|
|
const brandingConfig = SdkConfig.getObject("branding");
|
2020-07-14 22:44:26 +02:00
|
|
|
VectorAuthPage.welcomeBackgroundUrl = "themes/element/img/backgrounds/lake.jpg";
|
2022-03-18 17:12:44 +01:00
|
|
|
|
|
|
|
const configuredUrl = brandingConfig?.get("welcome_background_url");
|
|
|
|
if (configuredUrl) {
|
|
|
|
if (Array.isArray(configuredUrl)) {
|
|
|
|
const index = Math.floor(Math.random() * configuredUrl.length);
|
|
|
|
VectorAuthPage.welcomeBackgroundUrl = configuredUrl[index];
|
2020-04-17 12:31:49 +02:00
|
|
|
} else {
|
2022-03-18 17:12:44 +01:00
|
|
|
VectorAuthPage.welcomeBackgroundUrl = configuredUrl;
|
2020-04-17 12:31:49 +02:00
|
|
|
}
|
2019-02-11 17:07:39 +01:00
|
|
|
}
|
|
|
|
|
2020-07-07 18:53:52 +02:00
|
|
|
return VectorAuthPage.welcomeBackgroundUrl;
|
|
|
|
}
|
|
|
|
|
2022-11-23 17:24:36 +01:00
|
|
|
public render(): React.ReactElement {
|
2019-02-01 19:10:55 +01:00
|
|
|
const pageStyle = {
|
2020-07-07 18:53:52 +02:00
|
|
|
background: `center/cover fixed url(${VectorAuthPage.getWelcomeBackgroundUrl()})`,
|
2019-02-01 17:31:40 +01:00
|
|
|
};
|
|
|
|
|
2022-09-30 19:27:59 +02:00
|
|
|
const modalStyle: React.CSSProperties = {
|
2022-12-09 13:28:29 +01:00
|
|
|
position: "relative",
|
|
|
|
background: "initial",
|
2019-02-01 19:10:55 +01:00
|
|
|
};
|
|
|
|
|
2022-09-30 19:27:59 +02:00
|
|
|
const blurStyle: React.CSSProperties = {
|
2022-12-09 13:28:29 +01:00
|
|
|
position: "absolute",
|
2019-02-01 19:10:55 +01:00
|
|
|
top: 0,
|
|
|
|
right: 0,
|
|
|
|
bottom: 0,
|
|
|
|
left: 0,
|
2022-12-09 13:28:29 +01:00
|
|
|
filter: "blur(40px)",
|
2019-02-01 19:10:55 +01:00
|
|
|
background: pageStyle.background,
|
|
|
|
};
|
|
|
|
|
2022-09-30 19:27:59 +02:00
|
|
|
const modalContentStyle: React.CSSProperties = {
|
2022-12-09 13:28:29 +01:00
|
|
|
display: "flex",
|
2019-02-01 19:10:55 +01:00
|
|
|
zIndex: 1,
|
2022-12-09 13:28:29 +01:00
|
|
|
background: "rgba(255, 255, 255, 0.59)",
|
|
|
|
borderRadius: "8px",
|
2019-02-01 19:10:55 +01:00
|
|
|
};
|
|
|
|
|
2019-02-01 17:31:40 +01:00
|
|
|
return (
|
2019-02-01 19:10:55 +01:00
|
|
|
<div className="mx_AuthPage" style={pageStyle}>
|
|
|
|
<div className="mx_AuthPage_modal" style={modalStyle}>
|
2020-07-07 18:53:52 +02:00
|
|
|
<div className="mx_AuthPage_modalBlur" style={blurStyle} />
|
2019-02-01 19:10:55 +01:00
|
|
|
<div className="mx_AuthPage_modalContent" style={modalContentStyle}>
|
2022-12-09 13:28:29 +01:00
|
|
|
{this.props.children}
|
2019-02-01 19:10:55 +01:00
|
|
|
</div>
|
2019-02-01 17:31:40 +01:00
|
|
|
</div>
|
2022-03-02 22:10:42 +01:00
|
|
|
<VectorAuthFooter />
|
2019-02-01 17:31:40 +01:00
|
|
|
</div>
|
|
|
|
);
|
2019-02-11 16:51:16 +01:00
|
|
|
}
|
|
|
|
}
|