586 Commits

Author SHA1 Message Date
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
Shinwoo PARK
367f6ca32d
chore: create FUNDING.yml cli@0.1.0 2024-06-07 05:16:33 +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
2037575d11 docs: update README with checklist changes
The README.md file has been updated to reflect the completion of specified tasks under the CLI category. The tasks, "Add" and "List", have been marked as completed.
2024-06-07 01:02:40 +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
d8825a0c10 feat(react): add shared module URL to registry.json
A new attribute "shared" has been added to the 'registry.json' file in the React package. This attribute contains the URL to the shared TypeScript module for components.
2024-06-06 22:46:04 +09:00
7e5759f8a2 feat(cli): add list command
This adds a new 'list' command in the CLI package to print all available components in the registry as well as components installed in the project. This command includes additional options to include component file URL and specify a custom path to the config file.
2024-06-06 22:09:26 +09:00
812cbb6efc refactor(cli): remove and update dependencies
This commit removes deprecated dependencies from the CLI and updates the yarn.lock file to reflect these changes. It also adds new dependencies that are needed for the project. The dependencies removed are "@types/mocha", "ansi-colors", "browser-stdout", "camelcase", "chokidar", "cliui", "debug", "decamelize", "diff", "find-up", "flat", "glob", "he", and "is-plain-obj". The dependencies added include "@types/treeify", "cli-cursor", "emoji-regex", "is-interactive", "is-unicode-supported",
2024-06-06 22:09:13 +09:00
c59c80007a feat(cli): add configuration and path management functionality
This commit introduces configuration and path management functionality in the CLI by adding the helper functions to load and validate configuration. It also provides the logic to retrieve available components from a given registry. Additionally, it exposes these functionalities in public API.
2024-06-06 22:07:19 +09:00
6fd099dc69 refactor: Moved vercel.json file to root directory
We have moved the vercel.json file to the root directory to standardize the project structure and improve the efficiency of referencing the file in our code.
2024-06-06 20:13:23 +09:00
811f0ff580 fix: downgrade yarn version and update yarn.lock
This commit downgrades yarn from version 4.2.2 to 3.8.2, updating yarn.lock and package.json files. The various checksum changes within the yarn.lock file reflect updated package dependencies. This helps to maintain consistency in the project.
2024-06-06 20:11:45 +09:00
3c5d2abc27 fix: downgrade yarn version and update yarn.lock
This commit downgrades yarn from version 4.2.2 to 3.8.2, updating yarn.lock and package.json files. The various checksum changes within the yarn.lock file reflect updated package dependencies. This helps to maintain consistency in the project.
2024-06-06 20:08:03 +09:00
c1b74f6237 chore: update yarn hash in package.json
The change updates the sha256 hash of the yarn package manager to sha512 in the package.json file. This alteration ensures the use of the correct hash for the yarn package manager and improves the reliability of the package dependencies.
2024-06-06 19:49:34 +09:00
2303b1a5b1 chore: upgrade electron-to-chromium to v1.4.792
Upgraded electron-to-chromium from v1.4.791 to v1.4.792 for better performance and stability. Update was reflected in yarn.lock file.
2024-06-06 19:43:21 +09:00
1c34dd4e30 style: correct spacing in package.json scripts
This commit corrects the spacing for the "cli" script in package.json. It eliminates the extra spaces and aligns with the consistent style used throughout the file, promoting better readability and code structure.
2024-06-06 19:27:36 +09:00
426297796e feat: add components in registry.json
A new file called registry.json has been created in the public react package. This file maps each component to its specific TypeScript file, acting as a repository for components like Button, Checkbox, Dialog, Input and others.
2024-06-06 19:27:18 +09:00
550e942162 feat: remove commands
This commit deletes all template commands and related tests from the CLI package. The template command implementation and its associated tests have been fully removed to make way for new feature implementation.
2024-06-06 19:05:41 +09:00
3ab14abb58 feat: add script shortcuts to package.json
Added two new script shortcuts for React and CLI workspaces to the package.json file. These shortcuts will streamline the build and dev process by reducing the required command length.
2024-06-06 19:04:22 +09:00
2891e26203 feat: add build and development scripts and upgrade dependencies
This commit adds new build and development scripts to package.json. It features 'react:build', 'react:dev' and 'cli:build' scripts. The 'yarn.lock' file has been significantly updated to include new packages and dependencies for "@aws-sdk/client-cloudfront", "@aws-sdk/client-s3" and few others. This ensures proper and up-to-date packages management for an efficient development environment.
2024-06-06 19:01:23 +09:00
09a53e7d05 feat: add oclif template 2024-06-06 19:00:53 +09:00
01ce4f0363 feat: update README components status
The README.md file has been updated to reflect the current status of the Drawer and Label components. They are now marked as complete.
2024-06-06 03:01:27 +09:00
9b442bd646 docs: update README.md status
The 'Popover' task has been updated to be marked as complete in the README.md file. The 'Hover' task has been removed. These changes reflect updates on the project's progress.
2024-06-06 03:00:04 +09:00
673702947d refactor: adjust types and formatting in shared.tsx
Improved the format and type handling in the react/shared.tsx file. This includes adjustments to how variants are handled and formatted, enhancing type consistency and declarations. Also, ordinary parameters are given trailing commas as per the enhanced coding standards.
2024-06-06 00:16:22 +09:00
92b64405a4 feat: upgrade typescript version
The typescript version was upgraded from 5.3.2 to 5.4.5 in the react package.json and yarn.lock files. This update will introduce any new features and fixes from the latest typescript version.
2024-06-06 00:16:07 +09:00
fdb4d0d70f feat: add Popover docs 2024-06-05 21:31:50 +09:00
a51d7eead1 docs: add web documentation link to README
In this commit, we have added a link to the web documentation in the README file. This helps users to easily navigate to the documentation directly from the project's README.
2024-06-05 19:25:48 +09:00
ffe49ff90f fix: ensure delta value is absolute in Drawer component
The fix ensures that the calculation of the 'movement' value in the Drawer component doesn't result in a negative number. The division by 'dragState.delta' is now divided by the absolute value to prevent faulty calculations.
2024-06-05 19:16:42 +09:00
7b17e6df9b fix: rollback unknown to any 2024-06-05 19:08:02 +09:00