aboutsummaryrefslogtreecommitdiffstats
path: root/src/components
Commit message (Collapse)AuthorAge
* feat: self signed certificates bypass (#1545)Libravatar André Oliveira2024-01-26
| | | | | | | | | * feat: self signed certificates bypass * fix lint and vscode setting * Fix some mistakes and comments * forgot this one [skip ci]
* Extract string for i18nLibravatar Vijay A2024-01-16
|
* 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`
* chore: upgrade used node and pnpm version (#1433)Libravatar MCMXC2023-11-01
| | | | | | | | | | - upgrade node and pnpm version in `engines`, `volta` and `packageManager` config - upgrade `@types/node` to v20 - remove `react-loader` overrides from `peerDependencyRules.allowedVersions` - remove `@npmcli/move-file` 2.0.1 from `allowedDeprecatedVersions` - update node image to 20.9.0 in `Dockerfile` - update required system dependencies in `CONTRIBUTING.md` - update node version to 20.9.0 in `.nvmrc` - correct type definitions for `setInterval` usage in `WebviewCrashHandler` and `AppStore` necessary due to `@types/node` upgrade
* 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>
* fix: update message safe-space (#1407)Libravatar André Oliveira2023-10-19
|
* fix: login and signup error messagesLibravatar André Oliveira2023-09-30
|
* feat: Add Download Manager (pause, stop, delete) (#1339)Libravatar André Oliveira2023-09-02
|
* Upgrade npm modules (#1312)Libravatar Vijay Aravamudhan2023-08-16
|
* 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
|
* fix: changelog links opening in-app instead of browser (#1241)Libravatar André Oliveira2023-06-17
|
* 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)
* Allow the 10th service to also be accessible via keyboard shortcut comboLibravatar Vijay A2023-05-28
|
* Fix issues reported by sonarqube linterLibravatar Vijay A2023-05-28
|
* Disable in-app auto-updates for portable windows installation (fixes #1088) ↵Libravatar Vijay Aravamudhan2023-05-28
| | | | (#1200)
* Expose "Clear service cache" in the service settings screen and the sidebar ↵Libravatar Vijay Aravamudhan2023-05-27
| | | | context menu for individual services (#1053)
* update react version to 18.2.0 and it related changesLibravatar Muhamed2023-05-27
|
* Minor refactoring to remove code duplicationLibravatar Vijay A2023-05-25
|
* Upgrade npm modulesLibravatar Vijay A2023-05-24
|
* Fix duplicated i18n key with differing valueLibravatar Vijay A2023-02-02
|
* 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>
* Removed unused properties (exposed as linter warnings)Libravatar Vijay A2022-12-11
|
* 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
|
* Upgrade outdated npm packages (#802)Libravatar Vijay Aravamudhan2022-11-29
|
* fix: gray scale input sliderLibravatar Muhamed2022-11-25
|
* 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
|
* Transfrom workspace components to ts (#775)Libravatar muhamedsalih-tw2022-11-17
|
* 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
|
* feat: bring sentry back (#736)Libravatar Ricardo Cino2022-11-03
|
* 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
|