File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 8
8
*/
9
9
10
10
using System ;
11
+ using System . Collections . Concurrent ;
11
12
using System . Linq ;
12
13
using System . Text . RegularExpressions ;
13
14
using JavaScriptEngineSwitcher . Core ;
@@ -21,6 +22,8 @@ namespace React
21
22
/// </summary>
22
23
public class ReactComponent : IReactComponent
23
24
{
25
+ private static readonly ConcurrentDictionary < string , bool > _componentNameValidCache = new ConcurrentDictionary < string , bool > ( StringComparer . Ordinal ) ;
26
+
24
27
/// <summary>
25
28
/// Regular expression used to validate JavaScript identifiers. Used to ensure component
26
29
/// names are valid.
@@ -220,13 +223,10 @@ protected virtual string GetComponentInitialiser()
220
223
/// <param name="componentName"></param>
221
224
internal static void EnsureComponentNameValid ( string componentName )
222
225
{
223
- var isValid = componentName . Split ( '.' ) . All ( segment => _identifierRegex . IsMatch ( segment ) ) ;
226
+ var isValid = _componentNameValidCache . GetOrAdd ( componentName , compName => compName . Split ( '.' ) . All ( segment => _identifierRegex . IsMatch ( segment ) ) ) ;
224
227
if ( ! isValid )
225
228
{
226
- throw new ReactInvalidComponentException ( string . Format (
227
- "Invalid component name '{0}'" ,
228
- componentName
229
- ) ) ;
229
+ throw new ReactInvalidComponentException ( $ "Invalid component name '{ componentName } '") ;
230
230
}
231
231
}
232
232
You can’t perform that action at this time.
0 commit comments