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

feat(backend):ux sitemap generation #50

Merged
merged 2 commits into from
Nov 17, 2024

Conversation

ZHallen122
Copy link
Collaborator

@ZHallen122 ZHallen122 commented Nov 17, 2024

Summary by CodeRabbit

  • New Features

    • Introduced a method to generate a Full UX Sitemap Document with specific formatting guidelines and user journey mapping.
    • Added a handler for generating the User Experience Sitemap Document based on project data, enhancing the build process.
  • Bug Fixes

    • Implemented error handling and logging to improve the reliability of the UXSMD generation process.

Copy link

coderabbitai bot commented Nov 17, 2024

Walkthrough

This pull request introduces two new files: prompt.ts and uxsmd.ts. The prompt.ts file defines an object that includes a method for generating a prompt to create a Full UX Sitemap Document, detailing formatting and user journey mapping instructions. The uxsmd.ts file implements a class that handles the generation of the User Experience Sitemap Document (UXSMD) by retrieving project data and interacting with a language model to produce the document based on the generated prompt.

Changes

File Path Change Summary
backend/src/build-system/node/ux_sitemap_document/prompt/prompt.ts - Added prompt.ts file with prompts object and method generateUxsmdrompt(projectName, prdDocument, platform) for generating a UX sitemap prompt.
backend/src/build-system/node/ux_sitemap_document/uxsmd.ts - Added uxsmd.ts file with UXSMDHandler class implementing BuildHandler.
- Added async run(context: BuilderContext) method for generating UXSMD.
- Added private async generateUXSMDFromLLM(prompt: string) method for LLM interaction.

Possibly related issues

  • UX sitemap document #44: This PR addresses the creation of a UX sitemap document, aligning with the objectives of this open issue.

🐇 In the meadow, prompts take flight,
Generating sitemaps, oh what a sight!
With UXSMDHandler, we weave and spin,
Clarity and journeys, let the fun begin!
A document crafted with care and delight,
For every project, shining bright! 🌟

Warning

Rate limit exceeded

@ZHallen122 has exceeded the limit for the number of commits or files that can be reviewed per hour. Please wait 11 minutes and 30 seconds before requesting another review.

⌛ How to resolve this issue?

After the wait time has elapsed, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

We recommend that you space out your commits to avoid hitting the rate limit.

🚦 How do rate limits work?

CodeRabbit enforces hourly rate limits for each developer per organization.

Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout.

Please see our FAQ for further information.

📥 Commits

Reviewing files that changed from the base of the PR and between 8438e04 and 9dca6c5.

Warning

There were issues while running some tools. Please review the errors and either fix the tool’s configuration or disable the tool if it’s a critical failure.

🔧 eslint

If the error stems from missing dependencies, add them to the package.json file. For unrecoverable errors (e.g., due to private dependencies), disable the tool in the CodeRabbit configuration.

backend/src/build-system/node/ux_sitemap_document/uxsmd.ts

Oops! Something went wrong! :(

ESLint: 8.57.1

ESLint couldn't find the plugin "eslint-plugin-prettier".

(The package "eslint-plugin-prettier" was not found when loaded as a Node module from the directory "/backend".)

It's likely that the plugin isn't installed correctly. Try reinstalling by running the following:

npm install eslint-plugin-prettier@latest --save-dev

The plugin "eslint-plugin-prettier" was referenced from the config file in "backend/.eslintrc.js".

If you still can't figure out the problem, please stop by https://eslint.org/chat/help to chat with the team.


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 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.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

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.

@ZHallen122 ZHallen122 marked this pull request as ready for review November 17, 2024 03:45
@Sma1lboy Sma1lboy changed the title ux sitemap generation feat(backend):ux sitemap generation Nov 17, 2024
Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 4

🧹 Outside diff range and nitpick comments (4)
backend/src/build-system/node/ux_sitemap_document/prompt/prompt.ts (2)

1-7: Fix typo in method name: generateUxsmdromptgenerateUxsmdPrompt

The method name contains a typo and doesn't follow camelCase convention properly.

-  generateUxsmdrompt: (
+  generateUxsmdPrompt: (

1-44: Add input validation and error handling

The method should validate its inputs to ensure they are non-empty strings and handle potential errors gracefully.

 export const prompts = {
   generateUxsmdrompt: (
     projectName: string,
     prdDocument: string,
     platform: string,
   ): string => {
+    // Validate inputs
+    if (!projectName?.trim()) {
+      throw new Error('Project name is required');
+    }
+    if (!prdDocument?.trim()) {
+      throw new Error('PRD document is required');
+    }
+    if (!platform?.trim()) {
+      throw new Error('Platform is required');
+    }
+
     return `You are an expert frontend develper...`;
   },
 };
backend/src/build-system/node/ux_sitemap_document/uxsmd.ts (2)

39-39: Make the model configurable instead of hardcoding

Hardcoding the model name 'gpt-3.5-turbo' reduces flexibility and may complicate future updates or testing with different models. Consider retrieving the model from configuration or the context to enhance adaptability.

Apply this diff to retrieve the model dynamically:

-const model = 'gpt-3.5-turbo';
+const model = context.getData('model') || 'gpt-3.5-turbo';

15-18: Log warnings when context data is missing

Using default values for projectName, prdDocument, and platform may mask issues if this data is unexpectedly missing. Logging warnings when these values are not present in the context can help diagnose problems during development and debugging.

Consider adding warning logs:

-const projectName =
-  context.getData('projectName') || 'Default Project Name';
+let projectName = context.getData('projectName');
+if (!projectName) {
+  this.logger.warn('projectName not found in context, using default value.');
+  projectName = 'Default Project Name';
+}
 
-const prdDocument = context.getData('prdDocument') || 'Default prdDocument';
+let prdDocument = context.getData('prdDocument');
+if (!prdDocument) {
+  this.logger.warn('prdDocument not found in context, using default value.');
+  prdDocument = 'Default prdDocument';
+}
 
-const platform = context.getData('platform') || 'Default Platform';
+let platform = context.getData('platform');
+if (!platform) {
+  this.logger.warn('platform not found in context, using default value.');
+  platform = 'Default Platform';
+}
📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between c7aa3a2 and 8438e04.

📒 Files selected for processing (2)
  • backend/src/build-system/node/ux_sitemap_document/prompt/prompt.ts (1 hunks)
  • backend/src/build-system/node/ux_sitemap_document/uxsmd.ts (1 hunks)

Comment on lines +8 to +42
return `You are an expert frontend develper and ux designer. Your job is to analyze and expand upon the details provided, generating a Full UX Sitemap Document based on the following inputs:
- Project name: ${projectName}
- product requirements document: ${prdDocument}
- Platform: ${platform}

Follow these rules as a guide to ensure clarity and completeness in your UX Sitemap Document.
1, Write you result in markdown
2, Your reply should start with : "\`\`\`UXSitemap" and end with "\`\`\`", Use proper markdown syntax for headings, subheadings, and hierarchical lists.
3. **Comprehensive Analysis**: Thoroughly parse the PRD to identify all core features, functionalities, and user stories.
- Focus on creating a hierarchical sitemap that covers each major section, with relevant sub-sections, pages, and key interactions.
- Ensure all primary and secondary user journeys identified in the PRD are clearly reflected.

4. **Page and Navigation Structure**: Break down the sitemap into main sections, secondary sections, and individual screens.
- **Main Sections**: Identify primary sections (e.g., Home, User Account, Product Catalog) based on project requirements.
- **Secondary Sections**: Include sub-sections under each main section (e.g., "Profile" and "Order History" under "User Account").
- **Screens and Interactions**: List specific screens and interactions that users encounter within each flow.

5. **Detailed User Journeys**:
- For every user story described in the PRD, map out the step-by-step navigation path.
- Highlight sequences (e.g., 1. Home > 1.1. Explore > 1.1.1. Product Details).

6. **Thorough Coverage**:
- Ensure the sitemap is fully comprehensive. If any feature from the PRD is not covered or any user journey is missing, add it to the sitemap.
- Consider the target audience and validate that all expected navigation flows and screens meet user needs.

7. Ask Your self:
- Am I cover all the product requirement document?
- Am I Cover all the gloabal UI?
- Am I Cover all unique UI?
- Am I cover all the view that expect by user?
- what is all the details about UI?
- Am I cover all the cases? Is the final result 100% complete?

Remeber your result will be directly be use in the deveolpment. Make sure is 100% complete.
`;
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🛠️ Refactor suggestion

Clean up prompt template content for clarity and professionalism

The prompt template contains several issues that should be addressed:

  1. Typos and grammatical errors:

    • Line 8: "develper" → "developer"
    • Line 34-39: Multiple spelling/grammar issues ("gloabal", "Am I cover", etc.)
    • Line 41: "Remeber", "deveolpment"
  2. Inconsistent formatting:

    • Line 14: Numbering uses comma instead of period "1,"
    • Line 15: Inconsistent quote marks and spacing
    • Lines 34-39: Inconsistent capitalization

Apply this diff to improve the content:

-    return `You are an expert frontend develper and ux designer. Your job is to analyze and expand upon the details provided, generating a Full UX Sitemap Document based on the following inputs:  
+    return `You are an expert frontend developer and UX designer. Your job is to analyze and expand upon the details provided, generating a Full UX Sitemap Document based on the following inputs:
-       - Project name: ${projectName}
-       - product requirements document: ${prdDocument}
-       - Platform: ${platform}
+    - Project Name: ${projectName}
+    - Product Requirements Document: ${prdDocument}
+    - Platform: ${platform}

     Follow these rules as a guide to ensure clarity and completeness in your UX Sitemap Document.
-    1, Write you result in markdown
-    2, Your reply should start with : "\`\`\`UXSitemap" and end with "\`\`\`", Use proper markdown syntax for headings, subheadings, and hierarchical lists.
+    1. Write your result in markdown
+    2. Your reply should start with "\`\`\`UXSitemap" and end with "\`\`\`". Use proper markdown syntax for headings, subheadings, and hierarchical lists.

-7. Ask Your self:
-    - Am I cover all the product requirement document?
-    - Am I Cover all the gloabal UI?
-    - Am I Cover all unique UI?
-    - Am I cover all the view that expect by user?
-    - what is all the details about UI?
-    - Am I cover all the cases? Is the final result 100% complete?
+    7. Verification Checklist:
+    - Have I covered all requirements from the PRD?
+    - Have I included all global UI elements?
+    - Have I documented all unique UI components?
+    - Have I addressed all expected user views?
+    - Have I detailed all UI specifications?
+    - Have I covered all edge cases and scenarios?
 
-Remeber your result will be directly be use in the deveolpment. Make sure is 100% complete.
+    Remember: Your output will be used directly in development. Ensure it is complete and accurate.
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
return `You are an expert frontend develper and ux designer. Your job is to analyze and expand upon the details provided, generating a Full UX Sitemap Document based on the following inputs:
- Project name: ${projectName}
- product requirements document: ${prdDocument}
- Platform: ${platform}
Follow these rules as a guide to ensure clarity and completeness in your UX Sitemap Document.
1, Write you result in markdown
2, Your reply should start with : "\`\`\`UXSitemap" and end with "\`\`\`", Use proper markdown syntax for headings, subheadings, and hierarchical lists.
3. **Comprehensive Analysis**: Thoroughly parse the PRD to identify all core features, functionalities, and user stories.
- Focus on creating a hierarchical sitemap that covers each major section, with relevant sub-sections, pages, and key interactions.
- Ensure all primary and secondary user journeys identified in the PRD are clearly reflected.
4. **Page and Navigation Structure**: Break down the sitemap into main sections, secondary sections, and individual screens.
- **Main Sections**: Identify primary sections (e.g., Home, User Account, Product Catalog) based on project requirements.
- **Secondary Sections**: Include sub-sections under each main section (e.g., "Profile" and "Order History" under "User Account").
- **Screens and Interactions**: List specific screens and interactions that users encounter within each flow.
5. **Detailed User Journeys**:
- For every user story described in the PRD, map out the step-by-step navigation path.
- Highlight sequences (e.g., 1. Home > 1.1. Explore > 1.1.1. Product Details).
6. **Thorough Coverage**:
- Ensure the sitemap is fully comprehensive. If any feature from the PRD is not covered or any user journey is missing, add it to the sitemap.
- Consider the target audience and validate that all expected navigation flows and screens meet user needs.
7. Ask Your self:
- Am I cover all the product requirement document?
- Am I Cover all the gloabal UI?
- Am I Cover all unique UI?
- Am I cover all the view that expect by user?
- what is all the details about UI?
- Am I cover all the cases? Is the final result 100% complete?
Remeber your result will be directly be use in the deveolpment. Make sure is 100% complete.
`;
return `You are an expert frontend developer and UX designer. Your job is to analyze and expand upon the details provided, generating a Full UX Sitemap Document based on the following inputs:
- Project Name: ${projectName}
- Product Requirements Document: ${prdDocument}
- Platform: ${platform}
Follow these rules as a guide to ensure clarity and completeness in your UX Sitemap Document.
1. Write your result in markdown
2. Your reply should start with "\`\`\`UXSitemap" and end with "\`\`\`". Use proper markdown syntax for headings, subheadings, and hierarchical lists.
3. **Comprehensive Analysis**: Thoroughly parse the PRD to identify all core features, functionalities, and user stories.
- Focus on creating a hierarchical sitemap that covers each major section, with relevant sub-sections, pages, and key interactions.
- Ensure all primary and secondary user journeys identified in the PRD are clearly reflected.
4. **Page and Navigation Structure**: Break down the sitemap into main sections, secondary sections, and individual screens.
- **Main Sections**: Identify primary sections (e.g., Home, User Account, Product Catalog) based on project requirements.
- **Secondary Sections**: Include sub-sections under each main section (e.g., "Profile" and "Order History" under "User Account").
- **Screens and Interactions**: List specific screens and interactions that users encounter within each flow.
5. **Detailed User Journeys**:
- For every user story described in the PRD, map out the step-by-step navigation path.
- Highlight sequences (e.g., 1. Home > 1.1. Explore > 1.1.1. Product Details).
6. **Thorough Coverage**:
- Ensure the sitemap is fully comprehensive. If any feature from the PRD is not covered or any user journey is missing, add it to the sitemap.
- Consider the target audience and validate that all expected navigation flows and screens meet user needs.
7. Verification Checklist:
- Have I covered all requirements from the PRD?
- Have I included all global UI elements?
- Have I documented all unique UI components?
- Have I addressed all expected user views?
- Have I detailed all UI specifications?
- Have I covered all edge cases and scenarios?
Remember: Your output will be used directly in development. Ensure it is complete and accurate.
`;

Comment on lines 21 to 25
const prompt = prompts.generateUxsmdrompt(
projectName,
prdDocument,
platform,
);
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue

Typo in method name generateUxsmdrompt

The method name generateUxsmdrompt appears to be misspelled. It should likely be generateUxsmdPrompt to accurately reflect its purpose and maintain consistency.

Apply this diff to fix the typo:

-const prompt = prompts.generateUxsmdrompt(
+const prompt = prompts.generateUxsmdPrompt(
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
const prompt = prompts.generateUxsmdrompt(
projectName,
prdDocument,
platform,
);
const prompt = prompts.generateUxsmdPrompt(
projectName,
prdDocument,
platform,
);

Comment on lines +41 to +49
const prdContent = modelProvider.chatSync(
{
content: prompt,
},
model,
);

this.logger.log('Received full UXSMD content from LLM server.');
return prdContent;
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue

Use asynchronous method chat instead of chatSync and fix variable naming

Using the synchronous method chatSync inside an asynchronous function can block the event loop and degrade performance. Additionally, the variable prdContent is inconsistent with uxsmdContent used elsewhere. It's better to use the asynchronous chat method and maintain consistent variable names.

Apply this diff to use the asynchronous chat method and correct variable names:

-const prdContent = modelProvider.chatSync(
-  {
-    content: prompt,
-  },
-  model,
-);
+const uxsmdContent = await modelProvider.chat(
+  [
+    {
+      role: 'user',
+      content: prompt,
+    },
+  ],
+  model,
+);

Update the log message and return statement accordingly:

-this.logger.log('Received full UXSMD content from LLM server.');
-return prdContent;
+this.logger.log('Received UXSMD content from LLM server.');
+return uxsmdContent;
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
const prdContent = modelProvider.chatSync(
{
content: prompt,
},
model,
);
this.logger.log('Received full UXSMD content from LLM server.');
return prdContent;
const uxsmdContent = await modelProvider.chat(
[
{
role: 'user',
content: prompt,
},
],
model,
);
this.logger.log('Received UXSMD content from LLM server.');
return uxsmdContent;

Comment on lines 28 to 34
const uxsmdContent = await this.generateUXSMDFromLLM(prompt);

return {
success: true,
data: uxsmdContent,
};
}
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🛠️ Refactor suggestion

Add error handling for failures in generateUXSMDFromLLM

If generateUXSMDFromLLM fails, the error is not caught, which could cause the build process to fail unexpectedly. Implement error handling to manage potential failures gracefully and provide meaningful feedback.

Apply this diff to handle potential errors:

-const uxsmdContent = await this.generateUXSMDFromLLM(prompt);
-
-return {
-  success: true,
-  data: uxsmdContent,
-};
+try {
+  const uxsmdContent = await this.generateUXSMDFromLLM(prompt);
+  return {
+    success: true,
+    data: uxsmdContent,
+  };
+} catch (error) {
+  this.logger.error('Error generating UXSMD:', error);
+  return {
+    success: false,
+    error: error.message,
+  };
+}

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

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🧹 Outside diff range and nitpick comments (2)
backend/src/build-system/node/ux_sitemap_document/uxsmd.ts (2)

41-41: Consider making the model configurable

The model identifier is hardcoded to 'gpt-3.5-turbo'. Consider making it configurable through environment variables or configuration files for better flexibility and maintainability.

Apply this diff to make the model configurable:

-    const model = 'gpt-3.5-turbo';
+    const model = process.env.LLM_MODEL || 'gpt-3.5-turbo';

Also, add this to your environment variables documentation:

LLM_MODEL: The identifier for the language model to use (default: 'gpt-3.5-turbo')

38-52: Consider implementing caching for LLM responses

Since LLM calls can be expensive and time-consuming, consider implementing a caching mechanism for similar prompts. This could significantly improve performance and reduce costs for repeated generations with similar inputs.

Key considerations:

  • Cache key could be a hash of the normalized prompt
  • Cache TTL should be configurable
  • Consider using Redis or a similar distributed cache if running in a clustered environment
📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between 8438e04 and 9dca6c5.

📒 Files selected for processing (1)
  • backend/src/build-system/node/ux_sitemap_document/uxsmd.ts (1 hunks)
🔇 Additional comments (1)
backend/src/build-system/node/ux_sitemap_document/uxsmd.ts (1)

1-9: LGTM! Clean implementation of the BuildHandler interface.

The imports are well-organized, and the class structure properly implements the BuildHandler interface with appropriate logging setup.

// Generate the prompt dynamically
const prompt = prompts.generateUxsmdrompt(
projectName,
args as string,
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue

Add type validation for args parameter

The direct type casting of args to string is unsafe and could lead to runtime errors if the input is not a string.

Apply this diff to add type validation:

-      args as string,
+      typeof args === 'string' ? args : String(args),
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
args as string,
typeof args === 'string' ? args : String(args),

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants