Enable @typescript-eslint/explicit-member-accessibility on /src (#9785)

* Enable `@typescript-eslint/explicit-member-accessibility` on /src

* Prettier
This commit is contained in:
Michael Telatynski 2022-12-16 12:29:59 +00:00 committed by GitHub
parent 51554399fb
commit f1e8e7f140
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
396 changed files with 1110 additions and 1098 deletions

View file

@ -33,7 +33,7 @@ interface IState {
}
export default class CompleteSecurity extends React.Component<IProps, IState> {
constructor(props: IProps) {
public constructor(props: IProps) {
super(props);
const store = SetupEncryptionStore.sharedInstance();
store.on("update", this.onStoreUpdate);

View file

@ -27,7 +27,7 @@ interface IProps {
}
export default class E2eSetup extends React.Component<IProps> {
render() {
public render() {
return (
<AuthPage>
<CompleteSecurityBody>

View file

@ -350,7 +350,7 @@ export default class ForgotPassword extends React.Component<Props, State> {
} as any);
};
renderEnterEmail(): JSX.Element {
public renderEnterEmail(): JSX.Element {
return (
<EnterEmail
email={this.state.email}
@ -364,7 +364,7 @@ export default class ForgotPassword extends React.Component<Props, State> {
);
}
async renderConfirmLogoutDevicesDialog(): Promise<boolean> {
public async renderConfirmLogoutDevicesDialog(): Promise<boolean> {
const { finished } = Modal.createDialog<[boolean]>(QuestionDialog, {
title: _t("Warning!"),
description: (
@ -395,7 +395,7 @@ export default class ForgotPassword extends React.Component<Props, State> {
return confirmed;
}
renderCheckEmail(): JSX.Element {
public renderCheckEmail(): JSX.Element {
return (
<CheckEmail
email={this.state.email}
@ -407,7 +407,7 @@ export default class ForgotPassword extends React.Component<Props, State> {
);
}
renderSetPassword(): JSX.Element {
public renderSetPassword(): JSX.Element {
const submitButtonChild =
this.state.phase === Phase.ResettingPassword ? <Spinner w={16} h={16} /> : _t("Reset password");
@ -460,7 +460,7 @@ export default class ForgotPassword extends React.Component<Props, State> {
);
}
renderDone() {
public renderDone() {
return (
<>
<CheckboxIcon className="mx_Icon mx_Icon_32 mx_Icon_accent" />
@ -484,7 +484,7 @@ export default class ForgotPassword extends React.Component<Props, State> {
);
}
render() {
public render() {
let resetPasswordJsx: JSX.Element;
switch (this.state.phase) {

View file

@ -110,7 +110,7 @@ export default class LoginComponent extends React.PureComponent<IProps, IState>
private readonly stepRendererMap: Record<string, () => ReactNode>;
constructor(props) {
public constructor(props) {
super(props);
this.state = {
@ -148,7 +148,7 @@ export default class LoginComponent extends React.PureComponent<IProps, IState>
this.initLoginLogic(this.props.serverConfig);
}
componentWillUnmount() {
public componentWillUnmount() {
this.unmounted = true;
}
@ -162,9 +162,9 @@ export default class LoginComponent extends React.PureComponent<IProps, IState>
}
}
isBusy = () => this.state.busy || this.props.busy;
public isBusy = () => this.state.busy || this.props.busy;
onPasswordLogin = async (username, phoneCountry, phoneNumber, password) => {
public onPasswordLogin = async (username, phoneCountry, phoneNumber, password) => {
if (!this.state.serverIsAlive) {
this.setState({ busy: true });
// Do a quick liveliness check on the URLs
@ -264,11 +264,11 @@ export default class LoginComponent extends React.PureComponent<IProps, IState>
);
};
onUsernameChanged = (username) => {
public onUsernameChanged = (username) => {
this.setState({ username: username });
};
onUsernameBlur = async (username) => {
public onUsernameBlur = async (username) => {
const doWellknownLookup = username[0] === "@";
this.setState({
username: username,
@ -315,23 +315,23 @@ export default class LoginComponent extends React.PureComponent<IProps, IState>
}
};
onPhoneCountryChanged = (phoneCountry) => {
public onPhoneCountryChanged = (phoneCountry) => {
this.setState({ phoneCountry: phoneCountry });
};
onPhoneNumberChanged = (phoneNumber) => {
public onPhoneNumberChanged = (phoneNumber) => {
this.setState({
phoneNumber: phoneNumber,
});
};
onRegisterClick = (ev) => {
public onRegisterClick = (ev) => {
ev.preventDefault();
ev.stopPropagation();
this.props.onRegisterClick();
};
onTryRegisterClick = (ev) => {
public onTryRegisterClick = (ev) => {
const hasPasswordFlow = this.state.flows?.find((flow) => flow.type === "m.login.password");
const ssoFlow = this.state.flows?.find((flow) => flow.type === "m.login.sso" || flow.type === "m.login.cas");
// If has no password flow but an SSO flow guess that the user wants to register with SSO.
@ -502,7 +502,7 @@ export default class LoginComponent extends React.PureComponent<IProps, IState>
return errorText;
}
renderLoginComponentForFlows() {
public renderLoginComponentForFlows() {
if (!this.state.flows) return null;
// this is the ideal order we want to show the flows in
@ -553,7 +553,7 @@ export default class LoginComponent extends React.PureComponent<IProps, IState>
);
};
render() {
public render() {
const loader =
this.isBusy() && !this.state.busyLoggingIn ? (
<div className="mx_Login_loader">

View file

@ -125,7 +125,7 @@ export default class Registration extends React.Component<IProps, IState> {
// `replaceClient` tracks latest serverConfig to spot when it changes under the async method which fetches flows
private latestServerConfig: ValidatedServerConfig;
constructor(props) {
public constructor(props) {
super(props);
this.state = {
@ -148,13 +148,13 @@ export default class Registration extends React.Component<IProps, IState> {
});
}
componentDidMount() {
public componentDidMount() {
this.replaceClient(this.props.serverConfig);
//triggers a confirmation dialog for data loss before page unloads/refreshes
window.addEventListener("beforeunload", this.unloadCallback);
}
componentWillUnmount() {
public componentWillUnmount() {
window.removeEventListener("beforeunload", this.unloadCallback);
}
@ -565,7 +565,7 @@ export default class Registration extends React.Component<IProps, IState> {
}
}
render() {
public render() {
let errorText;
const err = this.state.errorText;
if (err) {

View file

@ -45,7 +45,7 @@ interface IState {
}
export default class SetupEncryptionBody extends React.Component<IProps, IState> {
constructor(props) {
public constructor(props) {
super(props);
const store = SetupEncryptionStore.sharedInstance();
store.on("update", this.onStoreUpdate);