From 610823bcfedda0e0c928736659fa8bd4b5751c53 Mon Sep 17 00:00:00 2001 From: Adam Ernst Date: Wed, 7 Dec 2016 19:55:40 -0800 Subject: [PATCH] Update rcomponents command for ComponentKit changes See https://github.com/facebook/componentkit/pull/691 --- commands/FBComponentCommands.py | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/commands/FBComponentCommands.py b/commands/FBComponentCommands.py index c51ef6b..179f55e 100644 --- a/commands/FBComponentCommands.py +++ b/commands/FBComponentCommands.py @@ -64,17 +64,7 @@ def name(self): return 'rcomponents' def description(self): - return 'Synchronously reflow and update root components found starting from .' - - def options(self): - return [ fb.FBCommandArgument(short='-u', long='--up', arg='upwards', boolean=True, default=False, help='Reflow only the root components found on the first superview that has them, carrying the search up to its window.') ] - - def args(self): - return [ fb.FBCommandArgument(arg='aView', type='UIView*', help='The view to from which the search for the root components begins.', default='(id)[[UIApplication sharedApplication] keyWindow]') ] + return 'Synchronously reflow and update all components.' def run(self, arguments, options): - upwards = 'NO' - if options.upwards: - upwards = 'YES' - - fb.evaluateEffect('[CKComponentDebugController reflowComponentsForView:(UIView *)' + arguments[0] + ' searchUpwards:' + upwards + ']') + fb.evaluateEffect('[CKComponentDebugController reflowComponents]')