2022-02-23 12:21:11 +01:00
|
|
|
/*
|
|
|
|
Copyright 2022 The Matrix.org Foundation C.I.C.
|
|
|
|
|
|
|
|
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-03-23 23:13:40 +01:00
|
|
|
import React, { RefCallback, ComponentType } from "react";
|
2022-03-01 21:42:05 +01:00
|
|
|
import { MatrixClient } from "matrix-js-sdk/src/matrix";
|
2022-02-23 12:21:11 +01:00
|
|
|
|
|
|
|
import { MatrixClientPeg as peg } from '../../src/MatrixClientPeg';
|
|
|
|
import MatrixClientContext from "../../src/contexts/MatrixClientContext";
|
|
|
|
|
2022-03-23 23:13:40 +01:00
|
|
|
type WrapperProps<T> = { wrappedRef?: RefCallback<ComponentType<T>> } & T;
|
2022-03-09 14:23:58 +01:00
|
|
|
|
2022-03-23 23:13:40 +01:00
|
|
|
export function wrapInMatrixClientContext<T>(WrappedComponent: ComponentType<T>): ComponentType<WrapperProps<T>> {
|
|
|
|
class Wrapper extends React.Component<WrapperProps<T>> {
|
2022-02-23 12:21:11 +01:00
|
|
|
_matrixClient: MatrixClient;
|
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
|
|
|
|
|
|
|
this._matrixClient = peg.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return <MatrixClientContext.Provider value={this._matrixClient}>
|
|
|
|
<WrappedComponent ref={this.props.wrappedRef} {...this.props} />
|
|
|
|
</MatrixClientContext.Provider>;
|
|
|
|
}
|
|
|
|
}
|
2022-03-23 23:13:40 +01:00
|
|
|
return Wrapper;
|
2022-02-23 12:21:11 +01:00
|
|
|
}
|