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

Topic feature flag env var #6206

Merged
merged 7 commits into from Jun 29, 2019
Merged

Topic feature flag env var #6206

merged 7 commits into from Jun 29, 2019

Conversation

igorT
Copy link
Member

@igorT igorT commented Jun 28, 2019

No description provided.

Mostly copied that structure and have the parsing of terminal
environment variable working. Need bridge the addon snippet that
populates the flag variables for runtime consumption.
ENV[flag] = EmberENV[flag] === true;
}
}
})(global.EmberENV || global.ENV);
Copy link
Member

Choose a reason for hiding this comment

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

We should use EmberDataENV or something (not the same global that Ember uses).

Copy link

@ghost ghost Jun 29, 2019

Choose a reason for hiding this comment

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

I'll get this and the remaining feedback addressed tomorrow.

// export const sample_feature_flag = true;
import { assign } from '@ember/polyfills';
import global from '@ember-data/canary-features/environment';
// import { ENV } from '@ember-data/canary-features/
Copy link
Member

Choose a reason for hiding this comment

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

Can cut this

@@ -1 +1,32 @@
// export const sample_feature_flag = true;
Copy link
Member

Choose a reason for hiding this comment

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

Same here

})(global.EmberENV || global.ENV);

export const DEFAULT_FEATURES = {
sample_feature_flag: null,
Copy link
Member

Choose a reason for hiding this comment

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

I vaguely prefer the SCREAMING_SNAKE_CASE here, though I know this isn’t really new (or the point of the PR)

Copy link

Choose a reason for hiding this comment

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

Given Ember uses that same convention, I agree to make it the same. I don't see warrant for introducing a new convention.

sample_feature_flag: null,
};

export const FEATURES = assign(DEFAULT_FEATURES, ENV.FEATURES);
Copy link
Member

Choose a reason for hiding this comment

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

You don’t want to mutate DEFAULT_FEATURES here, probably want assign({}, DEFAULT_FEATURES, ENV.FEATURES)

};

export const FEATURES = assign(DEFAULT_FEATURES, ENV.FEATURES);
export const sample_feature_flag = DEFAULT_FEATURES.sample_feature_flag;
Copy link
Member

Choose a reason for hiding this comment

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

Should be = FEATURES.sample_feature_flag

@ghost
Copy link

ghost commented Jun 29, 2019

Addressed most of the feedback, but this still does not work when testing enabling a flag within an ember data file. I tested with the following in internal model's constructor:

import { SAMPLE_FEATURE_FLAG } from '@ember-data/canary-features';
// ...
 if (SAMPLE_FEATURE_FLAG) {
   console.log('hi')
}

I think I'm missing how exactly debug macros correctly serializes the environment / variables from features.js into a module the browser can understand.

@igorT
Copy link
Member Author

igorT commented Jun 29, 2019

@efx I tested it and it actually worked for me

@igorT igorT merged commit b4ba675 into emberjs:master Jun 29, 2019
igorT added a commit that referenced this pull request Jun 29, 2019
* mimic @ember/canary-features

Mostly copied that structure and have the parsing of terminal
environment variable working. Need bridge the addon snippet that
populates the flag variables for runtime consumption.
igorT added a commit that referenced this pull request Jun 29, 2019
* mimic @ember/canary-features

Mostly copied that structure and have the parsing of terminal
environment variable working. Need bridge the addon snippet that
populates the flag variables for runtime consumption.
Copy link
Member

rwjblue commented Jun 29, 2019

FYI - Igor and I did some more work on the feature flagging setup over in #6197. AFAICT the main thing left is parsing out the default features and values from @ember-data/canary-features's addon/index.js instead of hard coding the list in both places, there is a pending TODO in the file for that though...

@ghost ghost deleted the topic-feature-flag-env-var branch June 29, 2019 12:49
pete-the-pete pushed a commit to pete-the-pete/data that referenced this pull request Jul 4, 2019
* mimic @ember/canary-features

Mostly copied that structure and have the parsing of terminal
environment variable working. Need bridge the addon snippet that
populates the flag variables for runtime consumption.
pete-the-pete pushed a commit to pete-the-pete/data that referenced this pull request Jul 23, 2019
* mimic @ember/canary-features

Mostly copied that structure and have the parsing of terminal
environment variable working. Need bridge the addon snippet that
populates the flag variables for runtime consumption.
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.

3 participants