Skip to content

Commit

Permalink
Merge pull request #178 from adamjernst/rcomponents
Browse files Browse the repository at this point in the history
Update rcomponents command for ComponentKit changes
  • Loading branch information
kastiglione committed Dec 8, 2016
2 parents 54d8193 + 610823b commit d935730
Showing 1 changed file with 2 additions and 12 deletions.
14 changes: 2 additions & 12 deletions commands/FBComponentCommands.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,17 +64,7 @@ def name(self):
return 'rcomponents'

def description(self):
return 'Synchronously reflow and update root components found starting from <aView>.'

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]')

0 comments on commit d935730

Please sign in to comment.