Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added ts-reset to apps and services #2147

Merged
merged 4 commits into from
Mar 4, 2024
Merged

Added ts-reset to apps and services #2147

merged 4 commits into from
Mar 4, 2024

Conversation

Omri-Levy
Copy link
Contributor

@Omri-Levy Omri-Levy commented Mar 2, 2024

User description

Description

https://www.totaltypescript.com/ts-reset


Type

enhancement, dependencies


Description

  • Introduced @total-typescript/ts-reset across various applications and services to standardize TypeScript resets.
  • Removed unnecessary @ts-expect-error comments and added where necessary for better TypeScript error handling.
  • Updated package.json and pnpm-lock.yaml to include the new @total-typescript/ts-reset dependency.

Changes walkthrough

Relevant files
Enhancement
5 files
main.tsx
Import `ts-reset` in Backoffice v2 Main File                         

apps/backoffice-v2/src/main.tsx

  • Imported @total-typescript/ts-reset at the top of the file.
+2/-0     
main.tsx
Import `ts-reset` in KYB App Main File                                     

apps/kyb-app/src/main.tsx

  • Imported @total-typescript/ts-reset at the top of the file.
+2/-0     
main.ts
Import `ts-reset` in Workflows Service Main File                 

services/workflows-service/src/main.ts

  • Imported @total-typescript/ts-reset at the top of the file.
+2/-0     
find-workflows-list.dto.ts
Cleanup TypeScript Expect Error Comments                                 

services/workflows-service/src/workflow/dtos/find-workflows-list.dto.ts

  • Removed @ts-expect-error comment above the direction validation check.

  • +0/-1     
    hook-callback-handler.service.ts
    Add TypeScript Expect Error Comments for Context Validation

    services/workflows-service/src/workflow/hook-callback-handler.service.ts

  • Added @ts-expect-error comments for unvalidated context object.
  • +3/-0     
    Dependencies
    4 files
    package.json
    Add `ts-reset` Dependency to Backoffice v2                             

    apps/backoffice-v2/package.json

    • Added @total-typescript/ts-reset dependency.
    +1/-0     
    package.json
    Add `ts-reset` Dependency to KYB App                                         

    apps/kyb-app/package.json

    • Added @total-typescript/ts-reset dependency.
    +1/-0     
    pnpm-lock.yaml
    Update Dependencies in pnpm-lock.yaml                                       

    pnpm-lock.yaml

  • Added @total-typescript/ts-reset dependency across multiple importers.

  • +13/-0   
    package.json
    Add `ts-reset` Dependency to Workflows Service                     

    services/workflows-service/package.json

    • Added @total-typescript/ts-reset dependency.
    +1/-0     

    PR-Agent usage:
    Comment /help on the PR to get a list of all available PR-Agent tools and their descriptions

    Copy link

    changeset-bot bot commented Mar 2, 2024

    ⚠️ No Changeset found

    Latest commit: 3557df7

    Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

    This PR includes no changesets

    When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

    Click here to learn what changesets are, and how to add one.

    Click here if you're a maintainer who wants to add a changeset to this PR

    @github-actions github-actions bot added enhancement New feature or request dependencies Pull requests that update a dependency file labels Mar 2, 2024
    Copy link
    Contributor

    github-actions bot commented Mar 2, 2024

    PR Description updated to latest commit (ac64093)

    Copy link
    Contributor

    github-actions bot commented Mar 2, 2024

    PR Review

    ⏱️ Estimated effort to review [1-5]

    2, because the changes are straightforward, involving the addition of a new TypeScript reset package across multiple applications and services. The modifications are mostly imports and package.json updates, with a few specific TypeScript error handling adjustments.

    🧪 Relevant tests

    No

    🔍 Possible issues

    The use of @ts-expect-error comments in services/workflows-service/src/workflow/hook-callback-handler.service.ts might suppress important TypeScript errors. It's crucial to ensure that these suppressions are absolutely necessary and that the potential issues they might hide are well understood and documented.

    🔒 Security concerns

    No

    Code feedback:
    relevant fileservices/workflows-service/src/workflow/hook-callback-handler.service.ts
    suggestion      

    Consider validating context to ensure it's an object before accessing its properties. This can prevent runtime errors and eliminate the need for @ts-expect-error comments. For example, you could use a type guard function to check if context is an object with the expected structure. [important]

    relevant line// @ts-expect-error - we don't validate `context` is an object1

    relevant fileservices/workflows-service/src/workflow/hook-callback-handler.service.ts
    suggestion      

    Instead of using multiple @ts-expect-error comments, consider creating a more precise type definition for context. This approach can improve code readability and maintainability by making the expected structure of context explicit. [important]

    relevant line// @ts-expect-error - we don't validate `context` is an object

    relevant fileservices/workflows-service/src/workflow/dtos/find-workflows-list.dto.ts
    suggestion      

    It appears the @ts-expect-error comment was removed without a corresponding code change to address the potential TypeScript error. Ensure that the removal is intentional and that the TypeScript compiler does not raise any errors here. If necessary, adjust the code to handle the TypeScript error appropriately. [medium]

    relevant line- // @ts-expect-error

    relevant filepnpm-lock.yaml
    suggestion      

    Ensure that the version 0.5.1 of @total-typescript/ts-reset is compatible with the rest of your project dependencies. Dependency updates can sometimes introduce breaking changes or compatibility issues, so it's important to test thoroughly after adding or updating dependencies. [medium]

    relevant lineversion: 0.5.1


    ✨ Review tool usage guide:

    Overview:
    The review tool scans the PR code changes, and generates a PR review. The tool can be triggered automatically every time a new PR is opened, or can be invoked manually by commenting on any PR.
    When commenting, to edit configurations related to the review tool (pr_reviewer section), use the following template:

    /review --pr_reviewer.some_config1=... --pr_reviewer.some_config2=...
    

    With a configuration file, use the following template:

    [pr_reviewer]
    some_config1=...
    some_config2=...
    
    Utilizing extra instructions

    The review tool can be configured with extra instructions, which can be used to guide the model to a feedback tailored to the needs of your project.

    Be specific, clear, and concise in the instructions. With extra instructions, you are the prompter. Specify the relevant sub-tool, and the relevant aspects of the PR that you want to emphasize.

    Examples for extra instructions:

    [pr_reviewer] # /review #
    extra_instructions="""
    In the 'possible issues' section, emphasize the following:
    - Does the code logic cover relevant edge cases?
    - Is the code logic clear and easy to understand?
    - Is the code logic efficient?
    ...
    """
    

    Use triple quotes to write multi-line instructions. Use bullet points to make the instructions more readable.

    How to enable\disable automation
    • When you first install PR-Agent app, the default mode for the review tool is:
    pr_commands = ["/review", ...]
    

    meaning the review tool will run automatically on every PR, with the default configuration.
    Edit this field to enable/disable the tool, or to change the used configurations

    Auto-labels

    The review tool can auto-generate two specific types of labels for a PR:

    • a possible security issue label, that detects possible security issues (enable_review_labels_security flag)
    • a Review effort [1-5]: x label, where x is the estimated effort to review the PR (enable_review_labels_effort flag)
    Extra sub-tools

    The review tool provides a collection of possible feedbacks about a PR.
    It is recommended to review the possible options, and choose the ones relevant for your use case.
    Some of the feature that are disabled by default are quite useful, and should be considered for enabling. For example:
    require_score_review, require_soc2_ticket, and more.

    Auto-approve PRs

    By invoking:

    /review auto_approve
    

    The tool will automatically approve the PR, and add a comment with the approval.

    To ensure safety, the auto-approval feature is disabled by default. To enable auto-approval, you need to actively set in a pre-defined configuration file the following:

    [pr_reviewer]
    enable_auto_approval = true
    

    (this specific flag cannot be set with a command line argument, only in the configuration file, committed to the repository)

    You can also enable auto-approval only if the PR meets certain requirements, such as that the estimated_review_effort is equal or below a certain threshold, by adjusting the flag:

    [pr_reviewer]
    maximal_review_effort = 5
    
    More PR-Agent commands

    To invoke the PR-Agent, add a comment using one of the following commands:

    • /review: Request a review of your Pull Request.
    • /describe: Update the PR title and description based on the contents of the PR.
    • /improve [--extended]: Suggest code improvements. Extended mode provides a higher quality feedback.
    • /ask <QUESTION>: Ask a question about the PR.
    • /update_changelog: Update the changelog based on the PR's contents.
    • /add_docs 💎: Generate docstring for new components introduced in the PR.
    • /generate_labels 💎: Generate labels for the PR based on the PR's contents.
    • /analyze 💎: Automatically analyzes the PR, and presents changes walkthrough for each component.

    See the tools guide for more details.
    To list the possible configuration parameters, add a /config comment.

    See the review usage page for a comprehensive guide on using this tool.

    Copy link
    Contributor

    github-actions bot commented Mar 2, 2024

    PR Code Suggestions

    CategorySuggestions                                                                                                                                                       
    Security
    Validate input against allowed values to enhance security and correctness.

    Consider validating column and direction against a list of allowed values to prevent
    potential SQL injection or logic errors.

    services/workflows-service/src/workflow/dtos/find-workflows-list.dto.ts [52-56]

    -throw new Error(`Invalid column: ${column}`);
    -throw new Error(`Invalid direction: ${direction}`);
    +if (!allowedColumns.includes(column)) {
    +  throw new Error(`Invalid column: ${column}`);
    +}
    +if (!allowedDirections.includes(direction)) {
    +  throw new Error(`Invalid direction: ${direction}`);
    +}
     
    Best practice
    Ensure type safety by validating context before usage.

    Remove the @ts-expect-error comments and ensure proper type checking for context to
    prevent runtime errors.

    services/workflows-service/src/workflow/hook-callback-handler.service.ts [89]

    -// @ts-expect-error - we don't validate `context` is an object1
    -context.entity.id || context.entity.ballerineEntityId,
    +if (typeof context === 'object' && context !== null) {
    +  context.entity.id || context.entity.ballerineEntityId,
    +}
     
    Pin dependency versions to ensure consistent builds.

    Pin the version of @total-typescript/ts-reset to 0.5.1 instead of using ^0.5.1 to ensure
    consistent builds and avoid potential breaking changes in minor versions.

    apps/backoffice-v2/package.json [128]

    -"@total-typescript/ts-reset": "^0.5.1",
    +"@total-typescript/ts-reset": "0.5.1",
     
    Performance
    Optimize bundle size by importing only needed modules.

    Consider using a more specific import than @total-typescript/ts-reset to reduce bundle
    size if not all of its exports are needed.

    apps/kyb-app/package.json [67]

    -"@total-typescript/ts-reset": "^0.5.1",
    +import { specificModule } from '@total-typescript/ts-reset';
     
    Maintainability
    Use type guards to ensure variable structure and improve code safety.

    Replace the usage of @ts-expect-error with proper type guards or type assertions to ensure
    context has the expected structure.

    services/workflows-service/src/workflow/hook-callback-handler.service.ts [102]

    -// @ts-expect-error - we don't validate `context` is an object
    -this.setNestedProperty(context, attributePath, result);
    +if ('entity' in context && 'id' in context.entity) {
    +  this.setNestedProperty(context, attributePath, result);
    +}
     

    ✨ Improve tool usage guide:

    Overview:
    The improve tool scans the PR code changes, and automatically generates suggestions for improving the PR code. The tool can be triggered automatically every time a new PR is opened, or can be invoked manually by commenting on a PR.
    When commenting, to edit configurations related to the improve tool (pr_code_suggestions section), use the following template:

    /improve --pr_code_suggestions.some_config1=... --pr_code_suggestions.some_config2=...
    

    With a configuration file, use the following template:

    [pr_code_suggestions]
    some_config1=...
    some_config2=...
    
    Enabling\disabling automation

    When you first install the app, the default mode for the improve tool is:

    pr_commands = ["/improve --pr_code_suggestions.summarize=true", ...]
    

    meaning the improve tool will run automatically on every PR, with summarization enabled. Delete this line to disable the tool from running automatically.

    Utilizing extra instructions

    Extra instructions are very important for the improve tool, since they enable to guide the model to suggestions that are more relevant to the specific needs of the project.

    Be specific, clear, and concise in the instructions. With extra instructions, you are the prompter. Specify relevant aspects that you want the model to focus on.

    Examples for extra instructions:

    [pr_code_suggestions] # /improve #
    extra_instructions="""
    Emphasize the following aspects:
    - Does the code logic cover relevant edge cases?
    - Is the code logic clear and easy to understand?
    - Is the code logic efficient?
    ...
    """
    

    Use triple quotes to write multi-line instructions. Use bullet points to make the instructions more readable.

    A note on code suggestions quality
    • While the current AI for code is getting better and better (GPT-4), it's not flawless. Not all the suggestions will be perfect, and a user should not accept all of them automatically.
    • Suggestions are not meant to be simplistic. Instead, they aim to give deep feedback and raise questions, ideas and thoughts to the user, who can then use his judgment, experience, and understanding of the code base.
    • Recommended to use the 'extra_instructions' field to guide the model to suggestions that are more relevant to the specific needs of the project, or use the custom suggestions 💎 tool
    • With large PRs, best quality will be obtained by using 'improve --extended' mode.
    More PR-Agent commands

    To invoke the PR-Agent, add a comment using one of the following commands:

    • /review: Request a review of your Pull Request.
    • /describe: Update the PR title and description based on the contents of the PR.
    • /improve [--extended]: Suggest code improvements. Extended mode provides a higher quality feedback.
    • /ask <QUESTION>: Ask a question about the PR.
    • /update_changelog: Update the changelog based on the PR's contents.
    • /add_docs 💎: Generate docstring for new components introduced in the PR.
    • /generate_labels 💎: Generate labels for the PR based on the PR's contents.
    • /analyze 💎: Automatically analyzes the PR, and presents changes walkthrough for each component.

    See the tools guide for more details.
    To list the possible configuration parameters, add a /config comment.

    See the improve usage page for a more comprehensive guide on using this tool.

    @Omri-Levy Omri-Levy merged commit e30a392 into dev Mar 4, 2024
    9 checks passed
    @Omri-Levy Omri-Levy deleted the omri-levy/feat/ts-reset branch March 4, 2024 17:47
    chesterkmr pushed a commit that referenced this pull request Mar 11, 2024
    * feat(*): added ts-reset to apps and services
    
    * fix(*): fixed failing tests
    
    * fix(*): failing tests
    Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
    Labels
    dependencies Pull requests that update a dependency file enhancement New feature or request Review effort [1-5]: 2
    Projects
    None yet
    Development

    Successfully merging this pull request may close these issues.

    2 participants