fix: automatically populate regions for unlockAllMissions #587

Merged
Sainan merged 1 commits from fix-unlockAllMissions into main 2024-12-19 18:11:38 -08:00
Owner
No description provided.
coderabbitai[bot] commented 2024-12-19 17:34:00 -08:00 (Migrated from github.com)
Author
Owner

Walkthrough

The pull request introduces significant changes to the inventory management system, specifically in the inventoryController.ts file. The primary modification involves dynamically generating mission data using ExportRegions instead of relying on a static allMissions.json file.

The code now initializes inventoryResponse.Missions as an empty array and populates it by iterating through the keys of ExportRegions, constructing each mission with predefined properties like Completes, Tier, and Tag. This approach replaces the previous method of directly assigning a fixed list of missions to the inventory response. The deletion of the allMissions.json file further supports this new dynamic mission generation strategy.

The import statements have been updated to include ExportRegions from the warframe-public-export-plus package, enabling this new approach to mission data handling. The core functionality of the inventory controller remains consistent, with the changes primarily focused on how mission data is populated and structured within the response.

The modification represents a shift from a static, predefined mission list to a more dynamic, region-based mission generation method, potentially allowing for more flexible and adaptable mission management.

Sequence Diagram

sequenceDiagram
    participant Controller as Inventory Controller
    participant Exports as ExportRegions
    participant Response as Inventory Response

    Controller->>Exports: Retrieve Region Keys
    loop For Each Region Key
        Controller->>Response: Create Mission Object
        Controller-->>Response: Set Completes, Tier, Tag
    end
    Response-->>Controller: Populated Mission List
  • #579: Changes in inventoryController.ts related to import statements and inventory handling logic, showing similar modifications to the inventory management approach.

📜 Recent review details

Configuration used: .coderabbit.yaml
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between b44fb0eedae69d08ec22c20dbbbdb0cb5363bcbe and 6c7365037b.

📒 Files selected for processing (2)
  • src/controllers/api/inventoryController.ts (2 hunks)
  • static/fixed_responses/allMissions.json (0 hunks)
💤 Files with no reviewable changes (1)
  • static/fixed_responses/allMissions.json
🚧 Files skipped from review as they are similar to previous changes (1)
  • src/controllers/api/inventoryController.ts

Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR. (Beta)
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.
<!-- This is an auto-generated comment: summarize by coderabbit.ai --> <!-- walkthrough_start --> ## Walkthrough The pull request introduces significant changes to the inventory management system, specifically in the `inventoryController.ts` file. The primary modification involves dynamically generating mission data using `ExportRegions` instead of relying on a static `allMissions.json` file. The code now initializes `inventoryResponse.Missions` as an empty array and populates it by iterating through the keys of `ExportRegions`, constructing each mission with predefined properties like `Completes`, `Tier`, and `Tag`. This approach replaces the previous method of directly assigning a fixed list of missions to the inventory response. The deletion of the `allMissions.json` file further supports this new dynamic mission generation strategy. The import statements have been updated to include `ExportRegions` from the `warframe-public-export-plus` package, enabling this new approach to mission data handling. The core functionality of the inventory controller remains consistent, with the changes primarily focused on how mission data is populated and structured within the response. The modification represents a shift from a static, predefined mission list to a more dynamic, region-based mission generation method, potentially allowing for more flexible and adaptable mission management. ## Sequence Diagram ```mermaid sequenceDiagram participant Controller as Inventory Controller participant Exports as ExportRegions participant Response as Inventory Response Controller->>Exports: Retrieve Region Keys loop For Each Region Key Controller->>Response: Create Mission Object Controller-->>Response: Set Completes, Tier, Tag end Response-->>Controller: Populated Mission List ``` ## Possibly related PRs - #579: Changes in `inventoryController.ts` related to import statements and inventory handling logic, showing similar modifications to the inventory management approach. <!-- walkthrough_end --> --- <details> <summary>📜 Recent review details</summary> **Configuration used: .coderabbit.yaml** **Review profile: CHILL** **Plan: Pro** <details> <summary>📥 Commits</summary> Reviewing files that changed from the base of the PR and between b44fb0eedae69d08ec22c20dbbbdb0cb5363bcbe and 6c7365037b1283cfeddca16b250884f97d08e4ea. </details> <details> <summary>📒 Files selected for processing (2)</summary> * `src/controllers/api/inventoryController.ts` (2 hunks) * `static/fixed_responses/allMissions.json` (0 hunks) </details> <details> <summary>💤 Files with no reviewable changes (1)</summary> * static/fixed_responses/allMissions.json </details> <details> <summary>🚧 Files skipped from review as they are similar to previous changes (1)</summary> * src/controllers/api/inventoryController.ts </details> </details> <!-- internal state start --> <!-- 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 --> <!-- internal state end --> <!-- tips_start --> --- Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? <details> <summary>❤️ Share</summary> - [X](https://twitter.com/intent/tweet?text=I%20just%20used%20%40coderabbitai%20for%20my%20code%20review%2C%20and%20it%27s%20fantastic%21%20It%27s%20free%20for%20OSS%20and%20offers%20a%20free%20trial%20for%20the%20proprietary%20code.%20Check%20it%20out%3A&url=https%3A//coderabbit.ai) - [Mastodon](https://mastodon.social/share?text=I%20just%20used%20%40coderabbitai%20for%20my%20code%20review%2C%20and%20it%27s%20fantastic%21%20It%27s%20free%20for%20OSS%20and%20offers%20a%20free%20trial%20for%20the%20proprietary%20code.%20Check%20it%20out%3A%20https%3A%2F%2Fcoderabbit.ai) - [Reddit](https://www.reddit.com/submit?title=Great%20tool%20for%20code%20review%20-%20CodeRabbit&text=I%20just%20used%20CodeRabbit%20for%20my%20code%20review%2C%20and%20it%27s%20fantastic%21%20It%27s%20free%20for%20OSS%20and%20offers%20a%20free%20trial%20for%20proprietary%20code.%20Check%20it%20out%3A%20https%3A//coderabbit.ai) - [LinkedIn](https://www.linkedin.com/sharing/share-offsite/?url=https%3A%2F%2Fcoderabbit.ai&mini=true&title=Great%20tool%20for%20code%20review%20-%20CodeRabbit&summary=I%20just%20used%20CodeRabbit%20for%20my%20code%20review%2C%20and%20it%27s%20fantastic%21%20It%27s%20free%20for%20OSS%20and%20offers%20a%20free%20trial%20for%20proprietary%20code) </details> <details> <summary>🪧 Tips</summary> ### Chat There are 3 ways to chat with [CodeRabbit](https://coderabbit.ai): - Review comments: Directly reply to a review comment made by CodeRabbit. Example: - `I pushed a fix in commit <commit_id>, please review it.` - `Generate unit testing code for this file.` - `Open a follow-up GitHub issue for this discussion.` - Files and specific lines of code (under the "Files changed" tab): Tag `@coderabbitai` in a new review comment at the desired location with your query. Examples: - `@coderabbitai generate unit testing code for this file.` - `@coderabbitai modularize this function.` - PR comments: Tag `@coderabbitai` in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples: - `@coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.` - `@coderabbitai read src/utils.ts and generate unit testing code.` - `@coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.` - `@coderabbitai help me debug CodeRabbit configuration file.` Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. ### CodeRabbit Commands (Invoked using PR comments) - `@coderabbitai pause` to pause the reviews on a PR. - `@coderabbitai resume` to resume the paused reviews. - `@coderabbitai review` to trigger an incremental review. This is useful when automatic reviews are disabled for the repository. - `@coderabbitai full review` to do a full review from scratch and review all the files again. - `@coderabbitai summary` to regenerate the summary of the PR. - `@coderabbitai generate docstrings` to [generate docstrings](https://docs.coderabbit.ai/finishing-touches/docstrings) for this PR. ([Beta](https://docs.coderabbit.ai/early-access#beta)) - `@coderabbitai resolve` resolve all the CodeRabbit review comments. - `@coderabbitai configuration` to show the current CodeRabbit configuration for the repository. - `@coderabbitai help` to get help. ### Other keywords and placeholders - Add `@coderabbitai ignore` anywhere in the PR description to prevent this PR from being reviewed. - Add `@coderabbitai summary` to generate the high-level summary at a specific location in the PR description. - Add `@coderabbitai` anywhere in the PR title to generate the title automatically. ### Documentation and Community - Visit our [Documentation](https://docs.coderabbit.ai) for detailed information on how to use CodeRabbit. - Join our [Discord Community](http://discord.gg/coderabbit) to get help, request features, and share feedback. - Follow us on [X/Twitter](https://twitter.com/coderabbitai) for updates and announcements. </details> <!-- tips_end -->
coderabbitai[bot] (Migrated from github.com) reviewed 2024-12-19 17:36:52 -08:00
coderabbitai[bot] (Migrated from github.com) left a comment
Author
Owner

Caution

Inline review comments failed to post. This is likely due to GitHub's limits when posting large numbers of comments.

Actionable comments posted: 2

🛑 Comments failed to post (2)
src/controllers/api/inventoryController.ts (2)

62-62: ⚠️ Potential issue

Add missing semicolon

Add a semicolon at the end of line 62 to fix the build errors.

-                Tag: tag
+                Tag: tag,

Committable suggestion skipped: line range outside the PR's diff.

🧰 Tools
🪛 eslint

[error] 62-62: Insert ;

(prettier/prettier)


[error] 62-63: Missing semicolon.

(@typescript-eslint/semi)

🪛 GitHub Check: build (22)

[failure] 62-62:
Insert ;


[failure] 62-62:
Missing semicolon

🪛 GitHub Check: build (20)

[failure] 62-62:
Insert ;


[failure] 62-62:
Missing semicolon

🪛 GitHub Check: build (18)

[failure] 62-62:
Insert ;


[failure] 62-62:
Missing semicolon


56-63: 💡 Codebase verification

Fixed values for missions are appropriate, but error handling should be added

Based on the codebase analysis:

  1. The fixed values are actually correct:
    • Completes: 1 aligns with the addMissionComplete service logic which increments this counter
    • Tier: 1 is consistent with other initialization patterns in the codebase (e.g., in guild controllers)
  2. However, the code should add null check for ExportRegions since it's an imported dependency

Suggested changes:

  • Add a guard clause: if (!ExportRegions) return response.status(500).json({ error: "Mission regions data unavailable" });
  • Add type checking: if (typeof ExportRegions !== 'object') return response.status(500).json({ error: "Invalid mission regions format" });
🔗 Analysis chain

Verify mission property assignments and add error handling

While the dynamic generation of missions is an improvement, there are some concerns:

  1. The hardcoded values Completes: 1 and Tier: 1 might not be appropriate for all missions. Consider if these should vary based on region properties.
  2. There's no validation or error handling if ExportRegions is undefined or empty.

Let's verify the mission properties in ExportRegions:


Let me gather more context about ExportRegions to make a complete assessment.

🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Check ExportRegions structure and properties
ast-grep --pattern 'interface ExportRegions {
  $$$
}'

# Search for any existing mission tier or completion logic
rg -g '!*.{json,lock}' -A 3 'Tier|Completes' 

Length of output: 2671


Script:

#!/bin/bash
# Check ExportRegions definition and usage
rg -g '!*.{json,lock}' -A 5 'ExportRegions'

# Check if there are any other mission initialization patterns
rg -g '!*.{json,lock}' 'inventoryResponse\.Missions' -A 3

Length of output: 2612

🧰 Tools
🪛 eslint

[error] 62-62: Insert ;

(prettier/prettier)


[error] 62-63: Missing semicolon.

(@typescript-eslint/semi)

🪛 GitHub Check: build (22)

[failure] 62-62:
Insert ;


[failure] 62-62:
Missing semicolon

🪛 GitHub Check: build (20)

[failure] 62-62:
Insert ;


[failure] 62-62:
Missing semicolon

🪛 GitHub Check: build (18)

[failure] 62-62:
Insert ;


[failure] 62-62:
Missing semicolon

> [!CAUTION] > Inline review comments failed to post. This is likely due to GitHub's limits when posting large numbers of comments. **Actionable comments posted: 2** <details> <summary>🛑 Comments failed to post (2)</summary><blockquote> <details> <summary>src/controllers/api/inventoryController.ts (2)</summary><blockquote> 62-62: _:warning: Potential issue_ **Add missing semicolon** Add a semicolon at the end of line 62 to fix the build errors. ```diff - Tag: tag + Tag: tag, ``` > Committable suggestion skipped: line range outside the PR's diff. <details> <summary>🧰 Tools</summary> <details> <summary>🪛 eslint</summary> [error] 62-62: Insert `;` (prettier/prettier) --- [error] 62-63: Missing semicolon. (@typescript-eslint/semi) </details> <details> <summary>🪛 GitHub Check: build (22)</summary> [failure] 62-62: Insert `;` --- [failure] 62-62: Missing semicolon </details> <details> <summary>🪛 GitHub Check: build (20)</summary> [failure] 62-62: Insert `;` --- [failure] 62-62: Missing semicolon </details> <details> <summary>🪛 GitHub Check: build (18)</summary> [failure] 62-62: Insert `;` --- [failure] 62-62: Missing semicolon </details> </details> --- 56-63: _:bulb: Codebase verification_ **Fixed values for missions are appropriate, but error handling should be added** Based on the codebase analysis: 1. The fixed values are actually correct: - `Completes: 1` aligns with the `addMissionComplete` service logic which increments this counter - `Tier: 1` is consistent with other initialization patterns in the codebase (e.g., in guild controllers) 2. However, the code should add null check for `ExportRegions` since it's an imported dependency Suggested changes: - Add a guard clause: `if (!ExportRegions) return response.status(500).json({ error: "Mission regions data unavailable" });` - Add type checking: `if (typeof ExportRegions !== 'object') return response.status(500).json({ error: "Invalid mission regions format" });` <details> <summary>🔗 Analysis chain</summary> **Verify mission property assignments and add error handling** While the dynamic generation of missions is an improvement, there are some concerns: 1. The hardcoded values `Completes: 1` and `Tier: 1` might not be appropriate for all missions. Consider if these should vary based on region properties. 2. There's no validation or error handling if `ExportRegions` is undefined or empty. Let's verify the mission properties in ExportRegions: --- Let me gather more context about ExportRegions to make a complete assessment. </details> <details> <summary>🏁 Scripts executed</summary> The following scripts were executed for the analysis: Script: ```shell #!/bin/bash # Check ExportRegions structure and properties ast-grep --pattern 'interface ExportRegions { $$$ }' # Search for any existing mission tier or completion logic rg -g '!*.{json,lock}' -A 3 'Tier|Completes' ``` Length of output: 2671 --- Script: ```shell #!/bin/bash # Check ExportRegions definition and usage rg -g '!*.{json,lock}' -A 5 'ExportRegions' # Check if there are any other mission initialization patterns rg -g '!*.{json,lock}' 'inventoryResponse\.Missions' -A 3 ``` Length of output: 2612 </details> <details> <summary>🧰 Tools</summary> <details> <summary>🪛 eslint</summary> [error] 62-62: Insert `;` (prettier/prettier) --- [error] 62-63: Missing semicolon. (@typescript-eslint/semi) </details> <details> <summary>🪛 GitHub Check: build (22)</summary> [failure] 62-62: Insert `;` --- [failure] 62-62: Missing semicolon </details> <details> <summary>🪛 GitHub Check: build (20)</summary> [failure] 62-62: Insert `;` --- [failure] 62-62: Missing semicolon </details> <details> <summary>🪛 GitHub Check: build (18)</summary> [failure] 62-62: Insert `;` --- [failure] 62-62: Missing semicolon </details> </details> </blockquote></details> </blockquote></details> <!-- This is an auto-generated comment by CodeRabbit for review status -->
Sign in to join this conversation.
No description provided.