aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/ui
Commit message (Collapse)AuthorAge
* minor refactoring to remove duplication with a constantLibravatar Vijay A2024-02-11
|
* remove unused '@types/react-loader' pkgLibravatar Vijay A2024-02-11
|
* refactor: code cleanup (#1476)Libravatar MCMXC2023-12-07
| | | | | - auto update `settings.json` due to new vscode version - replace deprecated `e.keyCode` with `e.key` - fix various code snippets with sonarlint and other lint plugins
* refactor: implement biome (#1467)Libravatar MCMXC2023-12-04
| | | | | | | | - add `biome.json` - add `biome:check` and `biome:check:fix` commands to `package.json` - add `biome:check:fix` command to run as part of `prepare-code` command - install `@biomejs/biome` dependency - add `@npmcli/move-file` v2.0.1 to `pnpm.allowedDeprecatedVersions` - fix or comment out various reported lint issues
* chore: project maintenance (#1466)Libravatar MCMXC2023-12-03
| | | | | | | | | | - temporarily disable newly introduced `jsx-a11y/control-has-associated-label` rule - add `--quiet` flag to lint command to see issues with error level only - reuse `lint` command for `lint:fix` command - use `--cache` flag for `prettier` and `eslint` commands - upgrade all non-major dependencies to latest except for `esbuild` - run `pnpm dedupe` to simplify lockfile - autofix various `.ts` and `.tsx` files with `pnpm prepare-code` command - disable newly discovered lint issue in `SearchInput`
* feat: change loader component (#1410)Libravatar Pawel Kowalski2023-10-27
| | | | | | | | | | | | | | | | | | | | | | | | | | * CHANGED react-loater to react-loader-spinner * CHANGED brandColor to primary * feat: change loader component - remove redundant /index path from Loader imports in multiple files - remove commented out braces in RecipesDashboard - remove redundant color which is default from Loader in InfoBar - update size of Loader in InfoBar to be the same as InfoBox - change passed size prop from string to number in Button component - add slight gap for FullscreenLoader to styles.ts - fix Loader to check for color primary which is passed rather than brandColor - remove hardcoded width and height from WorkspaceSwitchingIndicator which lead to elements not being vertically centered - remove color prop from Loader in WorkspaceSwitchingIndicator since white is already the default - remove switchingIndicator.spinnerColor from default theme since white is already the default * implement PR feedback * re-add color to WorkspaceSwitchingIndicator --------- Co-authored-by: MCMXC <16797721+mcmxcdev@users.noreply.github.com>
* refactor: more lint improvementsLibravatar MCMXC2023-07-30
| | | | | | | | | - set parserOptions.ecmaVersion to latest and env to es2024 in eslint config - install missing types libraries - install eslint-plugin-sonar - enable eslint-plugin-sonar recommended rules and declare jsx-runtime for react in eslint config - clean up disabled lint rules which don't inflict problems anymore - disable various lint issues and fix others
* refactor: various improvements (#1296)Libravatar MCMXC2023-07-30
| | | | | | | | | | | | | | | | | | | | | | | | | * 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
* chore: upgrade mobx-react-form to latestLibravatar MCMXC2023-07-27
| | | | | | | | - upgrade mobx-react-form from v3 to v6 - remove stub mobx-react-form.d.ts since the dependency is written in TS now - remove as any cast for new Form invocation in invite.tsx - reuse Error component in Radio.tsx to get validation error message in red - use FieldInterface type for field property instead of typeof Field in Radio.tsx
* style: reformat all files properlyLibravatar MCMXC2023-07-26
| | | | | | | | | | | - remove .json from .eslintignore - add type intellisense to .prettierrc.js - install missing @jest/types which is used in jest.config.js - split up typecheck and lint into two separate commands - remove --require-pragma flag from reformat-files which leads to unformatted files - install suggested @types/prop-types and @types/react-loader dependencies - add @ts-expect-error to Loader usages - reformat all scss files automatically with reformat-files command
* chore: improve lint setupLibravatar MCMXC2023-07-25
| | | | | | | | | | | | | | | - update eslint config - merged eslint rules for JS and TS to avoid duplicates - extended stricter lint ruleset from typescript-eslint - corrected wrong setup for certain eslint rulesets - opt in to reportUnusedDisableDirectives config option - fix or disable a lot of lint issues throughout codebase - remove trailingComma: all from prettier config which is default in prettier v3 - add volta configuration to package.json to autoload correct node and pnpm versions - upgrade all eslint and prettier related dependencies to latest - remove config options from settings.json which are default anyways - remove config options from settings.json which are outdated/unknown - set up prettier as default formatter in settings.json
* fix: InfoBar crash app on updateLibravatar Muhamed2023-07-23
|
* update react-router-dom,react-tooltip& react-transition-groupLibravatar Muhamed2023-07-23
|
* Revert "update react-router-dom to version 6.14.1"Libravatar Vijay A2023-07-21
| | | | | | and "update react-router-dom,react-tooltip& react-transition-group" This reverts commit 0a4a0497bb630dc85cfa0145d57f954feb9c052a and 345fd98dc52a3b7f0d69022b6a19818e559e4557.
* update react-router-dom,react-tooltip& react-transition-groupLibravatar Muhamed2023-07-20
|
* Revert "Update react-router-dom, react-tooltip & react-transition-group ↵Libravatar Alphrag2023-05-30
| | | | | | latest version (#1199)" This reverts commit 05ddc542cc6a5a309d90350636cc1d2aee999c19.
* Update react-router-dom, react-tooltip & react-transition-group latest ↵Libravatar muhamedsalih-tw2023-05-29
| | | | version (#1199)
* Fix issues reported by sonarqube linterLibravatar Vijay A2023-05-28
|
* update react version to 18.2.0 and it related changesLibravatar Muhamed2023-05-27
|
* Upgrade npm modulesLibravatar Vijay A2023-05-24
|
* Bump react-dropzone from 11.7.1 to 14.2.3 (#887)v6.2.5-nightly.0Libravatar dependabot[bot]2023-01-29
| | | | | | | | | | | | | | | | | | | * Bump react-dropzone from 11.7.1 to 14.2.3 Bumps [react-dropzone](https://github.com/react-dropzone/react-dropzone) from 11.7.1 to 14.2.3. - [Release notes](https://github.com/react-dropzone/react-dropzone/releases) - [Commits](https://github.com/react-dropzone/react-dropzone/compare/v11.7.1...v14.2.3) --- updated-dependencies: - dependency-name: react-dropzone dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: André Oliveira <oliveira.andrerodrigues95@gmail.com> Co-authored-by: Vijay A <vraravam@users.noreply.github.com>
* chore: [#42] use noop consistently throughout (#808)Libravatar muhamedsalih-tw2022-11-30
|
* fix: [#809] unable to save custom icon for any service (#811)Libravatar muhamedsalih-tw2022-11-30
|
* Fix for services self hosted url / Team Id / Include pre-releases not ↵Libravatar muhamedsalih-tw2022-11-21
| | | | | | updating (#785) * fix: self hosted team/url options not working properly in edit service form * fix: Include pre-releases toggle not working
* Transform Todo feature, ServiceBarTargetUrl, ServiceIcon, TeamDashboard, ↵Libravatar muhamedsalih-tw2022-11-20
| | | | Slider, Loader & WorkspaceSwitchningIndicator into ts (#782)
* Transform service components to ts (#778)Libravatar muhamedsalih-tw2022-11-19
|
* Transform JSX components to TSX (#755)Libravatar muhamedsalih-tw2022-11-16
| | | | | | | | | | | | | | | * color picker types * Import * SetupAssistant * Services & appear * ServiceWebView * SettingsLayout * ImportantScreen * WorkspaceDrawer * SetupAssistant * chore: update vscode settings * chore: removed stale Import screen component & its tree
* fix: slack issue caused by input TS conversionLibravatar Muhamed2022-11-08
|
* refactor: remove toggle component's duplicateLibravatar Muhamed2022-11-08
|
* Revert "Remove duplicated Toggle.js component" (#742)Libravatar Vijay Aravamudhan2022-11-07
| | | | | Revert "Remove duplicated Toggle.js component (#741)" This reverts commit dd238ae7949e72e3b90235f56e14686cc5231f34.
* Remove duplicated Toggle.js component (#741)Libravatar muhamedsalih-tw2022-11-07
|
* Transform tray & menu files to typescript (#740)Libravatar muhamedsalih-tw2022-11-06
|
* Transform to TS and refactored components w.r.t deletion if duplicated Input ↵Libravatar muhamedsalih-tw2022-11-02
| | | | component (#729)
* Transform ChangeServer components tree to typescript (#725)Libravatar muhamedsalih-tw2022-11-01
|
* Convert LoginScreen component tree to typescript (#721)Libravatar muhamedsalih-tw2022-10-30
|
* Transform welcome component tree to TS (#715)v6.2.1-nightly.31Libravatar muhamedsalih-tw2022-10-28
|
* fix: 'failed prop' warning in QuickSwitchModal, SettingsNavigation, ↵Libravatar muhamedsalih-tw2022-10-27
| | | | | | | | SettingsWindow and Recipe component tree (#713) * chore: turn off eslint rule @typescript-eslint/no-useless-constructor to initialize dynamic props & state Co-authored-by: Muhamed <> Co-authored-by: Vijay A <vraravam@users.noreply.github.com>
* Lint fixes and recipes update to bring in same node version as the parent repoLibravatar Vijay A2022-10-26
|
* refactor: convert AccountDashboard to typescriptLibravatar Balaji Vijayakumar2022-10-26
|
* Transform 'AuthLayoutContainer' component hierarchy to tsx (#699)Libravatar muhamedsalih-tw2022-10-25
| | | | Co-authored-by: Muhamed <> Co-authored-by: Vijay A <vraravam@users.noreply.github.com>
* Replace deprecated 'react-addons-css-transition-group' with ↵Libravatar Vijay A2022-07-29
| | | | 'react-transition-group'
* eslint needs to be executed at the top-level to actually workv6.0.1-nightly.3Libravatar Vijay A2022-07-25
|
* Feature: Add Release Notes (#491)Libravatar André Oliveira2022-07-19
| | | | Co-authored-by: Vijay A <vraravam@users.noreply.github.com> Co-authored-by: Ricardo Cino <ricardo@cino.io>
* chore: Mobx & React-Router upgrade (#406)Libravatar Ricardo Cino2022-07-07
| | | Co-authored-by: Vijay A <vraravam@users.noreply.github.com>
* Add file size info and error message while setting a custom image in the ↵Libravatar André Oliveira2022-07-06
| | | | | | recipe settings screen (#437) Co-authored-by: Ricardo Cino <ricardo@cino.io> Co-authored-by: Vijay Aravamudhan <vraravam@users.noreply.github.com>
* Upgrade node modulesLibravatar Vijay A2022-07-02
|
* Use default exports instead of named exportsLibravatar Vijay A2022-07-02
|
* chore: correctly export/import ui elementsLibravatar Ricardo Cino2022-07-01
|
* chore: turn error boundary into typescriptLibravatar Ricardo Cino2022-06-28
|
* chore: turned all auth containers into typescript (#375)Libravatar Ricardo Cino2022-06-26
|