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

Update rcomponents command for ComponentKit changes #178

Merged
merged 1 commit into from
Dec 8, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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]')