aboutsummaryrefslogtreecommitdiffstats
path: root/src/features
Commit message (Collapse)AuthorAge
* Fix accelerators (#1752)Libravatar André Oliveira2024-05-13
| | | | | | | | | | | | | * fix: accelerators with numbers * fix: control zoom in * fix logic on macOS * fix for linux * chore: prepare-code * chore: adjust comments
* Minor refactoring to move repeated code into utility classLibravatar Vijay A2024-04-19
|
* refactor: bring down eslint warnings to zero (#1714)Libravatar MCMXC2024-04-18
| | | | | | | | | | - install `@eslint-react/eslint-plugin` dependency - configure `@eslint-react/eslint-plugin` in eslint config - modernize `lint` command in `package.json` - disable or fix various reported lint issues - fix `div` being nested in `p` for settings - replace deprecated `event.keyCode` with `event.key` - update isEscKeyPress method and unit tests which used deprecated `event.keyCode` - allow `eslint` v8 as peer dependency for `@eslint-react/eslint-plugin`
* feat: hide all services workspace (#1713)Libravatar André Oliveira2024-04-18
| | | | | * feat: hide all services workspace * fix: change from 'show' to 'hide'
* Add codespell support (config, GH action to detect new typos) + make it fix ↵Libravatar Yaroslav Halchenko2024-04-13
| | | | some typos (#1648)
* Upgrade node modulesLibravatar Vijay A2024-03-21
|
* minor refactoring to remove duplication with a constantLibravatar Vijay A2024-02-11
|
* refactor: remove unused code with knip (#1492)Libravatar MCMXC2023-12-22
| | | - remove unused code snippets flagged by `npx knip`
* 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`
* Fix persisting of todos sidebar width #1367 (#1460)Libravatar Raphael Jenni2023-12-01
|
* 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>
* chore: upgrade all non major dependencies (#1358)Libravatar MCMXC2023-09-19
| | | | - upgrade all non-major dependencies to latest - add ts-expect-error to code which errors due to typescript upgrade
* fix: opening links in Ferdium Todos (#1356)Libravatar Nesswit2023-09-12
| | | Add allowpopups prop to TodosWebview
* 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: 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
* 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)
* 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
|
* Fix to allow resizing of the todos panel (#1120)Libravatar Victor B2023-05-27
| | | | | | | * Change all functions in the 'TodosPanel.tsx' to consistently use arrow-style --------- Co-authored-by: Vijay A <vraravam@users.noreply.github.com>
* Upgrade npm modulesLibravatar Vijay A2023-05-24
|
* Add custom CSS support (#868)Libravatar Victor B2023-01-19
| | | | Co-authored-by: André Oliveira <oliveira.andrerodrigues95@gmail.com> Co-authored-by: Vijay A <vraravam@users.noreply.github.com>
* fix: fullscreen horizontal sidebar styleLibravatar André Oliveira2023-01-18
|
* chore: [#42] use noop consistently throughout (#808)Libravatar muhamedsalih-tw2022-11-30
|
* Upgrade outdated npm packages (#802)Libravatar Vijay Aravamudhan2022-11-29
|
* fix: ensure default values are working for the all fields in all settings ↵Libravatar Ricardo Cino2022-11-28
| | | | | screens (#750) Co-authored-by: Vijay A <vraravam@users.noreply.github.com>
* chore: transform workspace action store and todo store into tsLibravatar Muhamed2022-11-25
|
* Transform Todo feature, ServiceBarTargetUrl, ServiceIcon, TeamDashboard, ↵Libravatar muhamedsalih-tw2022-11-20
| | | | Slider, Loader & WorkspaceSwitchningIndicator into ts (#782)
* 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
|
* Transform to TS and refactored components w.r.t deletion if duplicated Input ↵Libravatar muhamedsalih-tw2022-11-02
| | | | component (#729)
* Re-enable editing of the address bar to manually access a different url ↵Libravatar muhamedsalih-tw2022-11-01
| | | | within the context of the current service (#728)
* Convert web controls & screen to typescript (#722)Libravatar muhamedsalih-tw2022-10-31
|
* Convert LoginScreen component tree to typescript (#721)Libravatar muhamedsalih-tw2022-10-30
|
* 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>
* refactor: convert Sidebar to typescript (#703)Libravatar Balaji Vijayakumar2022-10-25
|
* 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>
* fix: override tab-item min heightLibravatar neel19962022-10-11
| | | | Resolves #619
* chore: change values inside mobx actions to fix console warnings (#532)Libravatar André Oliveira2022-08-03
|