mirror of
				https://github.com/Unleash/unleash.git
				synced 2025-10-27 11:02:16 +01:00 
			
		
		
		
	* refactor: extract InputCaption component * refactor: split up GeneralStrategy component * refactor: fill inn more default feature strategy parameter values * fix: validate feature strategy parameters * refactor: fix duplicate keys in strategy icon list * refactor: expand variable names * refactor: remove unnecessary useMemo * refactor: use captions instead of tooltips for boolean parameter descriptions * refactor: improve strategy definition form spacing
		
			
				
	
	
		
			56 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import {
 | |
|     IStrategy,
 | |
|     IFeatureStrategy,
 | |
|     IFeatureStrategyParameters,
 | |
|     IStrategyParameter,
 | |
| } from 'interfaces/strategy';
 | |
| 
 | |
| // Create a new feature strategy with default values from a strategy definition.
 | |
| export const createFeatureStrategy = (
 | |
|     featureId: string,
 | |
|     strategyDefinition: IStrategy
 | |
| ): Omit<IFeatureStrategy, 'id'> => {
 | |
|     const parameters: IFeatureStrategyParameters = {};
 | |
| 
 | |
|     strategyDefinition.parameters.forEach((parameter: IStrategyParameter) => {
 | |
|         parameters[parameter.name] = createFeatureStrategyParameterValue(
 | |
|             featureId,
 | |
|             parameter
 | |
|         );
 | |
|     });
 | |
| 
 | |
|     return {
 | |
|         name: strategyDefinition.name,
 | |
|         constraints: [],
 | |
|         parameters,
 | |
|     };
 | |
| };
 | |
| 
 | |
| // Create default feature strategy parameter values from a strategy definition.
 | |
| const createFeatureStrategyParameterValue = (
 | |
|     featureId: string,
 | |
|     parameter: IStrategyParameter
 | |
| ): string => {
 | |
|     if (
 | |
|         parameter.name === 'rollout' ||
 | |
|         parameter.name === 'percentage' ||
 | |
|         parameter.type === 'percentage'
 | |
|     ) {
 | |
|         return '50';
 | |
|     }
 | |
| 
 | |
|     if (parameter.name === 'stickiness') {
 | |
|         return 'default';
 | |
|     }
 | |
| 
 | |
|     if (parameter.name === 'groupId') {
 | |
|         return featureId;
 | |
|     }
 | |
| 
 | |
|     if (parameter.type === 'boolean') {
 | |
|         return 'false';
 | |
|     }
 | |
| 
 | |
|     return '';
 | |
| };
 |