524 Commits

Author SHA1 Message Date
b962b02690 refactor(cli): rename shared path and import properties to lib
The commit includes an update in the cli package where we've changed the properties in paths and import objects from 'shared' to 'lib'. This refactoring also applies to the DEFAULT_CONFIG object and the configZod object, ensuring consistency across all configurations.
2024-06-11 12:52:25 +09:00
7d2aa1d7f0 feat(react): add 404 redirection and update build script
Added a 404.html file that contains a redirection script in the 'react' package. Also updated the build script in package.json to copy the 404.html into the dist folder when building.
2024-06-08 09:11:38 +09:00
cf2675d3f1 docs(cli): update links and version in README
The links to the code for add, list, and search commands in README.md are updated to reflect the latest version of the CLI (v0.2.1). Additionally, the package version for the CLI is updated from 0.2.0-build to 0.2.1 in package.json.
2024-06-08 05:06:57 +09:00
f16a2c9564 refactor(cli): optimize SearchBox setState calls
State setting logic for SearchBox in the CLI package has been streamlined. Redundant setState calls have been eliminated while others are more appropriately placed for better state management. This refactor focuses on the selected and queryMode states. Improved handling of selection state enhances component efficiency.
2024-06-08 05:05:20 +09:00
99891c6fa3 v0.2.0-build 2024-06-08 04:41:17 +09:00
4fbb658c40 feat(cli): add prepack script
The commit introduces a "prepack" script to the CLI package's scripts within package.json. It will now run a build process before packaging.
2024-06-08 04:40:48 +09:00
3ec06170f9 v0.2.0-docs 2024-06-08 04:33:42 +09:00
86618a2628 fix(cli): update package.json meta information
This commit updates the homepage and repository URLs in the package.json file for the cli package. It also cleans up some unnecessary scripts in the "scripts" block.
2024-06-08 04:33:07 +09:00
f6acfc9380 feat(cli): update to version 0.2.0 and add search command
This update upgrades the version of the cli package from 0.1.0 to 0.2.0. It also includes the addition of a new "search" command in the CLI readme documentation. Link to relevant source code has also been updated.
2024-06-08 04:17:44 +09:00
0c79f86d80 refactor(cli): streamline component selection and overwrite process
Refactored the 'cli add' command to streamline the process of component selection and the decision to overwrite an already installed one. The task has been split into two separate interactive choices to enhance the user experience and simplify the codebase. The force option is now also evaluated separately which results in cleaner code.
2024-06-08 04:10:13 +09:00
ec9dfb9f40 feat(cli): migrate add command to react and implement search functionality
Renamed 'add.ts' to 'add.tsx' and converted it to a React component. This change includes implementing search functionality through installed components and handling the case if the component is already installed. Added search options and overwriting prompt in CLI interface.
2024-06-08 03:53:15 +09:00
ae018f5176 feat(cli): add Choice component
This commit includes the addition of a new component, Choice, that presents two options yes or no to the user. The user can interact with this component using the up and down arrow keys. Based on this selection, different actions can be submitted. The feature also supports unicode if the environment supports it.
2024-06-08 03:52:56 +09:00
12b1d530c4 refactor(cli): change onSubmit typing in SearchBox
The onSubmit function typing in the SearchBox component was changed from handling a string to handling a generic T type object. Also, the onSubmit function now uses the found item in components based on the selected suggestion to submit instead of submitting directly.
2024-06-08 02:51:27 +09:00
62e606f273 fix(cli): update dependencies in SearchBox useEffect
The dependencies array in the useEffect hook within SearchBox.tsx has been updated. The 'suggestions' variable has been added to the dependencies to ensure the function updates accordingly when this state changes.
2024-06-08 02:46:23 +09:00
ebdedd9e04 refactor(react): standardize registry keys to lowercase
This commit modifies the keys in the registry.json file within the React package to follow a consistent, all-lowercase convention. This standardization can aid in maintaining code consistency.
2024-06-08 02:44:01 +09:00
483930474b feat(cli): add query mode to SearchBox component
Added a new stateful variable, 'queryMode', to the 'SearchBox' component in the CLI to enhance its functionality. As a result, 'Input' and suggestion fetching are now conditioned by this mode, providing more controled user search management and interaction with the autocomplete feature.
2024-06-08 02:15:08 +09:00
f4b79f1f02 refactor(cli): adjust SearchBox styling
Decreased the marginRight property from 2 to 1 in the SearchBox component of the CLI to improve layout. Also modified the placeholder text in the Input field for better readability.
2024-06-08 02:08:44 +09:00
0fea1a50e3 fix(cli): update condition in SearchBox component
This commit modifies a conditional statement in the SearchBox component to properly manage the selected index based on the length of search results. This ensures appropriate selection even when the result length is less than or equal to the selected index.
2024-06-08 02:08:26 +09:00
803659a06b refactor(cli): remove unused Spinner import
The unnecessary Spinner import from 'ink-spinner' was removed in the SearchBox component. This reduces clutter and enhances code readability.
2024-06-08 02:05:21 +09:00
36f465f2cf refactor(cli): remove slicing from search helper
Removed the top 5 slicing constraint from the search helper function within the CLI package. This change allows to return all components whose score exceeds zero, instead of restricting it to the top 5.
2024-06-08 02:04:08 +09:00
86111a715f fix(cli): remove ink-spinner dependency
This commit removes the dependency on the ink-spinner module from the package.json file in the CLI package. This is reflected in the yarn.lock file, where references to ink-spinner have been removed.
2024-06-08 02:03:56 +09:00
d2a457d1c8 feat(cli): update SearchBox component
In the SearchBox component, a new onSubmit prop has been added for user's search input handling. The UI has also been updated: changed border styles, introduced color changes based on selection and added placeholder for search input.
2024-06-08 01:55:07 +09:00
dd0ed06545 refactor(cli): changed SearchBox component to support generic types
The SearchBox component in the CLI package now supports generic types, enhancing its flexibility. The onChange method now returns selected item details, instead of just returning the key. The SearchBox props have been modified to support the generic type T.
2024-06-08 01:43:09 +09:00
0146162775 refactor(cli): update SearchBox props in search command
Changed the 'components' prop passed to 'SearchBox' in 'search.tsx' to have 'key' and 'displayName' properties instead of simple component names. This refactoring aims to better align with the expected prop structure.
2024-06-07 22:27:38 +09:00
f81a77b452 feat(cli): enhance SearchBox functionality
Added 'onChange' prop to the SearchBox component for active response to selection changes. Also updated the 'components' prop type and handled the related changes in the 'getSuggestion' use case. This includes mapping the components to their keys, updating the display name and handling selected results.
2024-06-07 22:27:28 +09:00
e222b9f7a2 feat(cli): improve search command and user interaction
The search command in the CLI is enhanced to recognize search queries as command arguments. An improved interaction with the search box is also introduced, including key event handlers for up and down arrows and  escape key, allowing users to navigate more intuitively. keyboard-based selection of suggestions is now implemented and the helper message is updated to match these interaction changes.
2024-06-07 21:54:34 +09:00
3e0d29fd56 feat(cli): add initialQuery prop to SearchBox
The SearchBox component in the Command Line Interface (CLI) now accepts an optional initialQuery prop. This prop is used to set the initial state of the search box query, which enables prepopulating the search box with a specific string if desired.
2024-06-07 21:37:42 +09:00
4319053d5d feat(cli): add search command
A new command has been added to the CLI package to search for components. This command fetches the registry and lists accessible components through the SearchBox component. The SearchBox component has also been updated to show a helper text and a new styled border for better user interaction.
2024-06-07 21:36:25 +09:00
339242cc05 feat(cli): add Divider and SearchBox components
A Divider and a SearchBox component have been added to the CLI. The Divider is a simple component for displaying a horizontal line. The SearchBox takes a list of components as props and provides a live search functionality, showing suggestions for user inputs.
2024-06-07 21:32:01 +09:00
48cb320303 feat(cli): add Jaro-Winkler algorithm and getSuggestion method to search helpers
This commit introduces a new file "search.ts" in the CLI helpers. It adds the implementation of the Jaro-Winkler string comparison algorithm and a "getSuggestion" function. The getSuggestion function uses the Jaro-Winkler algorithm for comparing component names against an input string and providing suitable suggestions.
2024-06-07 21:31:27 +09:00
c46cd0b295 fix: remove ink-divider dependency
The ink-divider dependency has been removed from both the cli package.json and yarn.lock files, as it is deprecated and returning errors.
2024-06-07 20:46:51 +09:00
bad0c4f84e feat(cli): colorize log messages
Imported the colorize method from '@oclif/core/ux' to add color to the log messages in the 'validateConfig' function within 'config.ts' for improved readability. The messages that detail installation paths and import shared details are now displayed in gray.
2024-06-07 20:38:24 +09:00
5ceb3d13e5 feat(cli): add @types/ink-divider dependency
The `@types/ink-divider` dependency has been added to the CLI package. This addition will provide types for the ink-divider, enhancing TypeScript support and code reliability. The yarn.lock file has been updated accordingly.
2024-06-07 20:38:06 +09:00
5e2b28954b feat(cli): add JSX support and update dependencies 2024-06-07 20:27:56 +09:00
91d9b9f9f3 refactor(cli): normalize component name input
This change includes normalization of user input for component name by converting it to lowercase during the installation process. This is done to ensure that component names are not case sensitive and that any input will match the existing component names in the registry.
2024-06-07 19:00:50 +09:00
610979f9fa fix: update repository and bugs URLs in package.json
The repository and bugs URLs in both the main package.json and the cli package.json files have been corrected. They were mistakenly pointing to the deprecated "p-sw/ui" repository, but are now correctly aiming at the "pswui/ui" repository.
2024-06-07 08:46:44 +09:00
d3555fc42d docs(react): update installation instructions
Installation documentation is updated to reflect the new changes. The CLI has been introduced to automatically install components and shared core utility. The procedure of manual installation and configuration is also detailed. The new CLI can list, add, and configure components providing an easier setup process.
2024-06-07 01:28:27 +09:00
fedbc8c168 refactor(cli): update commands and README for pswui CLI
The pswui CLI documentation has been updated to reflect the current commands and to give clearer instructions. Changes include replacing "mycli123" with "pswui" throughout the document, reducing the number of commands to three - add, help, and list, and updating their descriptions and examples for better understanding.
2024-06-07 00:51:59 +09:00
1cecc6fb72 refactor(cli): update shared file extension
The shared file extension has been updated from .ts to .tsx in the path constants and the default configuration within the CLI package. This change aligns with our efforts to standardize the file types across the project.
2024-06-07 00:49:25 +09:00
5f50d1d8f6 feat(cli): add realname resolution for components
The update enhances the CLI functionality by introducing the realname resolution for components. This is done in the 'list.ts' file, through a new helper function 'getComponentRealName' that is called whenever list of installed components is required. This ensures the correct identifiers are always considered, regardless of them being aliases or actual names.
2024-06-07 00:48:14 +09:00
593559f8b4 feat(cli): remove default path for config
The commit removes the default path for config in the CLI 'list' command. This change improves flexibility by allowing the user to define their own path without overriding the default one.
2024-06-07 00:34:43 +09:00
c5bf5c69b3 feat(cli): add support for different config file formats
Modified the 'loadConfig' method to support '.cjs' and '.mjs' config files. Also, a 'changeExtension' function is added to helpers/path.ts to manipulate file extensions. An error will be thrown if a specified user config file is not found. The application defaults to the default config file if no user config file is provided.
2024-06-07 00:33:52 +09:00
263bbcbaa4 refactor(cli): update validateConfig parameter in add and list commands
Replaced direct log reference in validateConfig function calls with an anonymous function that logs a message. This change has been made in the add and list commands of the CLI package to ensure proper logging.
2024-06-07 00:16:57 +09:00
a751336b84 feat(cli): add 'add' command
This commit introduces a new command 'add' to the CLI. The 'add' command allows users to add a component to the project with options for custom configurations, and it performs validation checks to ensure the component exists in the registry before installing.
2024-06-07 00:11:25 +09:00
be28704cb1 feat(cli): add logging to config validation
The validateConfig function in the cli module has been updated to include logging. The logs show the locations where the component and shared module will be installed, as well as the import path for the shared module.
2024-06-07 00:11:12 +09:00
acca348e1e feat(cli): handle registry fetching errors
This commit adds error handling for fetching operations from the registry in the CLI 'list' command. Now, any failure in retrieving the registry results in a failed spinner with a clear descriptive message, thus making the failure more apparent to the user.
2024-06-07 00:11:01 +09:00
36c5def5a6 feat(cli): add shared field to Registry interface
A new field "shared" has been added to the Registry interface within the const.ts file located in the cli package. This extends the existing interface to hold more diverse data.
2024-06-06 23:55:43 +09:00
b6d32e980a fix(react): change shared file extension in registry.json
This commit updates the extension of the 'shared' file from .ts to .tsx in the registry.json file. The update ensures that the 'shared' file correctly points to a TypeScript JSX file within the React package.
2024-06-06 23:55:27 +09:00
d2ed474c9d style(cli): update list command description
The format of the list command description has been updated for consistency. A period has been added at the end of the description.
2024-06-06 23:17:22 +09:00
4afa28d07b refactor(cli): remove plugin from package.json
The commit removes the unnecessary "@oclif/plugin-plugins" from the plugin list within the cli's package.json file. This refactor enhances the code cleanliness, and potentially improves the cli performance by reducing the number of plugins loaded at runtime.
2024-06-06 23:16:51 +09:00