Upgrade UI libs, fix linting issues (#218)

* remove redundant component

* upgrade various libraries
sort linting issues issues regarding redeclaring types WRT contexts
This commit is contained in:
rjwats
2021-01-16 18:08:41 +00:00
committed by GitHub
parent 3ecdc27550
commit 4917b38747
15 changed files with 6026 additions and 3781 deletions

View File

@ -1,23 +0,0 @@
import React from 'react';
import { Features } from './types';
export interface ApplicationContext {
features: Features;
}
const ApplicationContextDefaultValue = {} as ApplicationContext
export const ApplicationContext = React.createContext(
ApplicationContextDefaultValue
);
export function withAuthenticatedContexApplicationContext<T extends ApplicationContext>(Component: React.ComponentType<T>) {
return class extends React.Component<Omit<T, keyof ApplicationContext>> {
render() {
return (
<ApplicationContext.Consumer>
{authenticatedContext => <Component {...this.props as T} features={authenticatedContext} />}
</ApplicationContext.Consumer>
);
}
};
}

View File

@ -1,11 +1,11 @@
import React from 'react';
import { Features } from './types';
export interface FeaturesContext {
export interface FeaturesContextValue {
features: Features;
}
const FeaturesContextDefaultValue = {} as FeaturesContext
const FeaturesContextDefaultValue = {} as FeaturesContextValue
export const FeaturesContext = React.createContext(
FeaturesContextDefaultValue
);