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: posthog feature flag #1955

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open

feat: posthog feature flag #1955

wants to merge 1 commit into from

Conversation

aashishmalik
Copy link
Contributor

@aashishmalik aashishmalik commented Dec 2, 2024

PR Description

Please include a summary of the change along with the relevant motivation and context.

Linear task (optional)

INT-2935

Cross Browser Tests

Please confirm you have tested for the following browsers:

  • Chrome
  • Firefox
  • IE11

Sanity Suite

  • All sanity suite test cases pass locally

Security

  • The code changed/added as part of this pull request won't create any security issues with how the software is being used.

Summary by CodeRabbit

  • New Features

    • Enhanced Posthog integration with the inclusion of feature flags during initialization.
    • Introduced a new utility function to extract and validate feature flags from configuration.
  • Bug Fixes

    • Improved handling of feature flags to ensure only valid flags are included.
  • Documentation

    • Updated public API to include the new getFlags function for better integration management.

@aashishmalik aashishmalik requested a review from a team as a code owner December 2, 2024 01:42
Copy link
Contributor

coderabbitai bot commented Dec 2, 2024

📝 Walkthrough

Walkthrough

The changes in this pull request enhance the Posthog integration by introducing a new configuration object for initializing feature flags, modifying the Posthog class to include these flags, and adding corresponding tests to verify their functionality. A new utility function, getFlags, is also introduced to process the configuration and extract valid feature flags. The modifications improve the test coverage and the overall initialization process of the Posthog integration.

Changes

File Change Summary
packages/analytics-js-integrations/tests/integrations/Posthog/browser.test.js Updated variable declaration from const config to let config, added new tests for feature flag handling.
packages/analytics-js-integrations/src/integrations/Posthog/browser.js Added getFlags import, initialized this.flags in the constructor, modified init to include flags.
packages/analytics-js-integrations/src/integrations/Posthog/utils.js Introduced getFlags function to extract feature flags, updated export statement to include getFlags.

Possibly related PRs

  • feat: posthog person profile option #1885: This PR introduces a new property personProfiles to the Posthog class, which is relevant to the changes in the main PR that enhance the Posthog integration by adding feature flags and modifying the configuration object.

Suggested reviewers

  • sanpj2292
  • shrouti1507
  • utsabc

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.

Copy link
Contributor

@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: 0

🧹 Outside diff range and nitpick comments (6)
packages/analytics-js-integrations/src/integrations/Posthog/utils.js (3)

52-56: Documentation needs parameter type specification

The JSDoc comment should specify the expected type of the config parameter and return value for better type safety.

 /**
  * Returns bootstrap flags object
- * @param {*} config
+ * @param {Object} config - Configuration object containing flags array
+ * @param {Array<{flag: string, value: string}>} config.flags - Array of flag configurations
  * @returns {Object.<string, boolean|string>} - Object containing flag key-value pairs
  */

57-79: Consider improving type safety and code structure

The function could benefit from stronger type checking and a more maintainable boolean parsing approach.

Consider these improvements:

 const getFlags = config => {
   const flags = {};
-  if (config.flags && config.flags.length > 0) {
+  if (Array.isArray(config?.flags) && config.flags.length > 0) {
     config.flags.forEach(bootstrapFlag => {
+      const { flag, value } = bootstrapFlag || {};
+      const trimmedFlag = String(flag || '').trim();
+      const trimmedValue = String(value || '').trim();
+
       if (
-        bootstrapFlag?.flag?.trim() &&
-        bootstrapFlag?.value?.trim()
+        trimmedFlag &&
+        trimmedValue
       ) {
-        // parsing value to boolean if it's "true" or "false", otherwise keep as is
-        let parsedValue =
-          bootstrapFlag.value.toLowerCase() === "true"
-            ? true
-            : bootstrapFlag.value.toLowerCase() === "false"
-              ? false
-              : bootstrapFlag.value;
+        const lowerValue = trimmedValue.toLowerCase();
+        const parsedValue = 
+          lowerValue === 'true' ? true :
+          lowerValue === 'false' ? false :
+          trimmedValue;

-        flags[bootstrapFlag.flag] = parsedValue;
+        flags[trimmedFlag] = parsedValue;
       }
     });
   }

   return flags;
 };

Changes:

  1. Added proper null checking with optional chaining
  2. Added explicit type conversion using String()
  3. Improved variable naming and structure
  4. Simplified boolean parsing logic

57-79: Consider architectural improvements for feature flag handling

A few suggestions to enhance the feature flag implementation:

  1. Consider implementing a validation mechanism against allowed flag names to prevent misconfigurations
  2. The current implementation processes flags on every call. For better performance, consider caching the processed flags if the configuration is static
  3. Consider supporting more complex flag values (objects, arrays) for future extensibility

Would you like me to propose a more detailed implementation addressing these points?

packages/analytics-js-integrations/src/integrations/Posthog/browser.js (2)

73-76: Consider adding validation and documentation for feature flags

While the implementation is functionally correct, consider these improvements for better robustness:

  1. Add JSDoc comments documenting the expected structure of feature flags
  2. Add validation for flag values
  3. Consider adding error handling for invalid flag configurations

Example documentation:

/**
 * @typedef {Object.<string, boolean|string|number>} FeatureFlags
 * 
 * Bootstrap configuration with feature flags
 * @example
 * {
 *   bootstrap: {
 *     featureFlags: {
 *       'feature-a': true,
 *       'feature-b': 'variant-1'
 *     }
 *   }
 * }
 */

Line range hint 1-150: Consider documentation and testing strategy for feature flags

The feature flags implementation looks solid, but consider these architectural aspects:

  1. Add integration tests covering various feature flag scenarios
  2. Document the feature flags capability in the SDK's main documentation
  3. Consider adding a migration guide for users wanting to adopt feature flags
  4. Add examples of common feature flag use cases

Would you like assistance in creating:

  • Integration test examples?
  • Documentation updates?
  • Migration guide?
packages/analytics-js-integrations/__tests__/integrations/Posthog/browser.test.js (1)

99-158: LGTM: Feature flag test cases are comprehensive

The test cases effectively cover the main scenarios for feature flag initialization. They verify:

  1. Proper inclusion of valid feature flags in bootstrap
  2. Handling of empty feature flags
  3. Filtering of invalid feature flags

Consider adding these test cases for more comprehensive coverage:

  1. Test with null/undefined flags configuration
  2. Test with non-array flags configuration
  3. Test with duplicate flag names
  4. Test with special characters in flag names

Example test case:

it('should handle null/undefined flags configuration', () => {
  const testConfigs = [
    { ...config, flags: null },
    { ...config, flags: undefined }
  ];
  
  testConfigs.forEach(testConfig => {
    posthogInstance = new Posthog(testConfig, analytics, destinationInfo);
    posthogInstance.init();
    
    expect(window.posthog._i[0][1].bootstrap).toStrictEqual(undefined);
  });
});
📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between 33ac767 and 1074c87.

📒 Files selected for processing (3)
  • packages/analytics-js-integrations/__tests__/integrations/Posthog/browser.test.js (2 hunks)
  • packages/analytics-js-integrations/src/integrations/Posthog/browser.js (4 hunks)
  • packages/analytics-js-integrations/src/integrations/Posthog/utils.js (1 hunks)
🔇 Additional comments (5)
packages/analytics-js-integrations/src/integrations/Posthog/utils.js (1)

81-81: LGTM!

The export statement correctly includes the new function while maintaining the existing structure.

packages/analytics-js-integrations/src/integrations/Posthog/browser.js (2)

25-25: LGTM! Constructor changes are well-structured

The initialization of feature flags is placed appropriately with other configuration properties, and the formatting improvements enhance readability.

Also applies to: 33-33


11-11: Verify the getFlags utility function implementation

The import statement is syntactically correct. Let's verify the implementation of the getFlags utility function.

✅ Verification successful

Import of getFlags utility function is correctly implemented

The getFlags utility function is properly implemented in utils.js and correctly exported. The function processes feature flag configuration from the provided config object, handling an array of flags with proper null checks and trimming. The import statement in browser.js correctly references this implementation.

🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Verify the getFlags utility function implementation
# Expected: Function should exist in utils.js and handle feature flag configuration

# Search for getFlags function definition
ast-grep --pattern 'export function getFlags($_) {
  $$$
}'

# Search for getFlags function tests
rg -l "getFlags.*test" --type js

Length of output: 96


Script:

#!/bin/bash
# Let's try a different approach to locate the getFlags implementation
# First, let's find the utils file in the Posthog integration directory
fd "utils.js" packages/analytics-js-integrations/src/integrations/Posthog/

# Then let's look at its content to verify the function existence
rg "getFlags" packages/analytics-js-integrations/src/integrations/Posthog/ -A 5

# Also search for any exports of getFlags
rg "export.*getFlags" packages/analytics-js-integrations/src/integrations/Posthog/

Length of output: 2689

packages/analytics-js-integrations/__tests__/integrations/Posthog/browser.test.js (2)

22-31: LGTM: Configuration object is well-structured

The configuration object includes all necessary PostHog initialization parameters and follows best practices.


99-158: Verify test coverage for feature flag implementation

Let's ensure all feature flag functionality is adequately tested.

✅ Verification successful

Let me gather more specific information about the feature flag implementation to ensure comprehensive test coverage.


Based on the implementation details revealed, I can now provide the final response:

Test coverage for feature flag implementation is comprehensive

The test cases adequately cover all aspects of the feature flag implementation:

  • Tests verify the getFlags utility function's behavior for:
    • Valid flag values with boolean conversion ("true"/"false")
    • Custom string values (e.g., "control")
    • Empty flags array
    • Invalid flag entries (undefined, missing properties)
  • Tests confirm proper bootstrap object initialization with feature flags
  • Implementation in browser.js and utils.js is fully covered by the test scenarios
🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Check test coverage and related implementations

# Find feature flag related code in source files
echo "Searching for feature flag related code..."
rg -l "featureFlags|flags" packages/analytics-js-integrations/src/integrations/Posthog/

# Check for any untested methods
echo "Checking for potentially untested methods..."
ast-grep --pattern 'class Posthog {
  $$$
  $method($_) {
    $$$
    featureFlags
    $$$
  }
  $$$
}'

Length of output: 612


Script:

#!/bin/bash
# Let's examine the actual implementation in browser.js
echo "Feature flag implementation in browser.js:"
rg -A 10 "flags.*=" packages/analytics-js-integrations/src/integrations/Posthog/browser.js

# Check initialization and bootstrap related code
echo "\nFeature flag initialization code:"
rg -A 5 "bootstrap.*=" packages/analytics-js-integrations/src/integrations/Posthog/browser.js

# Check utils.js for any feature flag related functions
echo "\nFeature flag related utilities:"
cat packages/analytics-js-integrations/src/integrations/Posthog/utils.js

Length of output: 3507

Copy link

codecov bot commented Dec 2, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 58.32%. Comparing base (33ac767) to head (1074c87).

Additional details and impacted files
@@             Coverage Diff             @@
##           develop    #1955      +/-   ##
===========================================
+ Coverage    58.29%   58.32%   +0.02%     
===========================================
  Files          485      485              
  Lines        16615    16626      +11     
  Branches      3333     3349      +16     
===========================================
+ Hits          9686     9697      +11     
+ Misses        5732     5686      -46     
- Partials      1197     1243      +46     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

Copy link

sonarcloud bot commented Dec 2, 2024

Copy link

github-actions bot commented Dec 2, 2024

size-limit report 📦

Name Size (Base) Size (Current) Size Limit Status
Plugins Module Federation Mapping - Legacy - CDN 332 B 332 B (0%) 512 B
Plugins - Legacy - CDN 15.69 KB 15.69 KB (0%) 16 KB
Plugins Module Federation Mapping - Modern - CDN 331 B 331 B (0%) 512 B
Plugins - Modern - CDN 7.2 KB 7.2 KB (0%) 7.5 KB
Common - No bundling 16.27 KB 16.27 KB (0%) 16.5 KB
Cookies Utils - Legacy - NPM (ESM) 1.54 KB 1.54 KB (0%) 2 KB
Cookies Utils - Legacy - NPM (CJS) 1.75 KB 1.75 KB (0%) 2 KB
Cookies Utils - Legacy - NPM (UMD) 1.53 KB 1.53 KB (0%) 2 KB
Cookies Utils - Modern - NPM (ESM) 1.17 KB 1.17 KB (0%) 1.5 KB
Cookies Utils - Modern - NPM (CJS) 1.4 KB 1.4 KB (0%) 1.5 KB
Cookies Utils - Modern - NPM (UMD) 1.16 KB 1.16 KB (0%) 1.5 KB
Load Snippet 758 B 758 B (0%) 1 KB
Core (v1.1) - NPM (ESM) 30.38 KB 30.38 KB (0%) 32 KB
Core (v1.1) - NPM (CJS) 30.53 KB 30.53 KB (0%) 32 KB
Core (v1.1) - NPM (UMD) 30.34 KB 30.34 KB (0%) 32 KB
Core (Content Script - v1.1) - NPM (ESM) 29.88 KB 29.88 KB (0%) 30.5 KB
Core (Content Script - v1.1) - NPM (CJS) 30.09 KB 30.09 KB (0%) 30.5 KB
Core (Content Script - v1.1) - NPM (UMD) 29.92 KB 29.92 KB (0%) 30 KB
Core - Legacy - CDN 48.78 KB 48.78 KB (0%) 49 KB
Core - Modern - CDN 25.01 KB 25.01 KB (0%) 25.5 KB
Core - Legacy - NPM (ESM) 48.65 KB 48.65 KB (0%) 49 KB
Core - Legacy - NPM (CJS) 48.95 KB 48.95 KB (0%) 49 KB
Core - Legacy - NPM (UMD) 48.69 KB 48.69 KB (0%) 49 KB
Core - Modern - NPM (ESM) 24.75 KB 24.75 KB (0%) 25 KB
Core - Modern - NPM (CJS) 24.96 KB 24.96 KB (0%) 25.5 KB
Core - Modern - NPM (UMD) 24.81 KB 24.81 KB (0%) 25 KB
Core (Bundled) - Legacy - NPM (ESM) 48.65 KB 48.65 KB (0%) 49 KB
Core (Bundled) - Legacy - NPM (CJS) 48.93 KB 48.93 KB (0%) 49 KB
Core (Bundled) - Legacy - NPM (UMD) 48.69 KB 48.69 KB (0%) 49 KB
Core (Bundled) - Modern - NPM (ESM) 39.75 KB 39.75 KB (0%) 40 KB
Core (Bundled) - Modern - NPM (CJS) 39.93 KB 39.93 KB (0%) 40.5 KB
Core (Bundled) - Modern - NPM (UMD) 39.74 KB 39.74 KB (0%) 40 KB
Core (Content Script) - Legacy - NPM (ESM) 48.13 KB 48.13 KB (0%) 48.5 KB
Core (Content Script) - Legacy - NPM (CJS) 48.38 KB 48.38 KB (0%) 48.5 KB
Core (Content Script) - Legacy - NPM (UMD) 48.14 KB 48.14 KB (0%) 48.5 KB
Core (Content Script) - Modern - NPM (ESM) 39.19 KB 39.19 KB (0%) 39.5 KB
Core (Content Script) - Modern - NPM (CJS) 39.44 KB 39.44 KB (0%) 40 KB
Core (Content Script) - Modern - NPM (UMD) 39.2 KB 39.2 KB (0%) 39.5 KB
Service Worker - Legacy - NPM (ESM) 30.61 KB 30.61 KB (0%) 31 KB
Service Worker - Legacy - NPM (CJS) 30.85 KB 30.85 KB (0%) 31 KB
Service Worker - Legacy - NPM (UMD) 30.65 KB 30.65 KB (0%) 31 KB
Service Worker - Modern - NPM (ESM) 25.77 KB 25.77 KB (0%) 26 KB
Service Worker - Modern - NPM (CJS) 26.03 KB 26.03 KB (0%) 26.5 KB
Service Worker - Modern - NPM (UMD) 25.74 KB 25.74 KB (0%) 26 KB
All Integrations - Legacy - CDN 95.15 KB 95.19 KB (+0.04% ▲) 95.3 KB
All Integrations - Modern - CDN 90.48 KB 90.55 KB (+0.09% ▲) 91 KB

const getFlags = config => {
const flags = {};
if (config.flags && config.flags.length > 0) {
config.flags.forEach(bootstrapFlag => {
Copy link
Member

Choose a reason for hiding this comment

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

Suggested change
config.flags.forEach(bootstrapFlag => {
config.flags.forEach({flag, value} => {

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