From 32f76b74a69ad4d60a014bf075c39517888436bc Mon Sep 17 00:00:00 2001 From: MCMXC <16797721+mcmxcdev@users.noreply.github.com> Date: Sat, 29 Jul 2023 21:12:16 -0600 Subject: refactor: various improvements (#1296) * refactor: various improvements - enable no-use-before-define eslint rule - shuffle code to conform to no-use-before-define eslint rule - remove btoa dependency which is deprecated and replace with Buffer.from(string).toString('base64') - convert some any types into useful ones - add type annotations where possible - remove unused @types/expect.js - install @types/semver and ts-node which were missing - repair and rewrite add-crowdin-contributors script - remove export keyword from variables which are never consumed in another file - remove unity indicator hack where linked issue was closed - remove module declaration for kebab-case which is unused - add missing state interface for certain components - remove default exports for files which already have a named export - export IRecipePreview so it can be used throughout codebase - remove unused removeCacheForCallWith method from CachedRequest.ts - cleanup unused colors and styles inside legacy theme * - improve ColorPickerInput - fix invalid DOM nesting with div inside p in EditSettingsForm - fix progressbarAccentColor color picker not updating input when using slider - install missing @types/react-color dependency --- .../settings/releaseNotes/ReleaseNotesDashboard.tsx | 12 ++++++------ src/components/settings/releaseNotes/ReleaseNotesLayout.tsx | 1 + 2 files changed, 7 insertions(+), 6 deletions(-) (limited to 'src/components/settings/releaseNotes') diff --git a/src/components/settings/releaseNotes/ReleaseNotesDashboard.tsx b/src/components/settings/releaseNotes/ReleaseNotesDashboard.tsx index ff7c45bb1..9b17e551c 100644 --- a/src/components/settings/releaseNotes/ReleaseNotesDashboard.tsx +++ b/src/components/settings/releaseNotes/ReleaseNotesDashboard.tsx @@ -1,6 +1,6 @@ import { Component } from 'react'; import { observer } from 'mobx-react'; -import { defineMessages, injectIntl } from 'react-intl'; +import { IntlShape, defineMessages, injectIntl } from 'react-intl'; import Markdown from 'markdown-to-jsx'; import { ferdiumVersion } from '../../../environment-remote'; import { @@ -26,14 +26,14 @@ const messages = defineMessages({ }); interface IProps { - intl: any; + intl: IntlShape; } -class ReleaseNotesDashboard extends Component { - state = { - data: '', - }; +interface IState { + data: string; +} +class ReleaseNotesDashboard extends Component { constructor(props) { super(props); diff --git a/src/components/settings/releaseNotes/ReleaseNotesLayout.tsx b/src/components/settings/releaseNotes/ReleaseNotesLayout.tsx index bc38aa603..4a6fe54f4 100644 --- a/src/components/settings/releaseNotes/ReleaseNotesLayout.tsx +++ b/src/components/settings/releaseNotes/ReleaseNotesLayout.tsx @@ -19,6 +19,7 @@ const messages = defineMessages({ interface IProps extends WrappedComponentProps { actions?: Actions; + // eslint-disable-next-line react/no-unused-prop-types children?: React.ReactNode; } -- cgit v1.2.3-54-g00ecf