Summary: Fixing a typo

Reviewed By: JoshuaGross

Differential Revision: D16434634

fbshipit-source-id: 72a6b698bcd0ba9c10dfbdf264011e0a31ea06b6
This commit is contained in:
Eli White 2019-07-24 12:41:12 -07:00 коммит произвёл Facebook Github Bot
Родитель 4eca2e226c
Коммит fbd5dee1e4
6 изменённых файлов: 30 добавлений и 12 удалений

Просмотреть файл

@ -129,15 +129,14 @@ function getCommandArgJavaType(param) {
}
function getCommandArguments(command: CommandTypeShape): string {
const commandArgs = command.typeAnnotation.params
.map((param, index) => {
return [
'view',
...command.typeAnnotation.params.map((param, index) => {
const commandArgJavaType = getCommandArgJavaType(param);
return `args.${commandArgJavaType}(${index})`;
})
.join(', ');
return `view, ${commandArgs}`;
}),
].join(', ');
}
function generateCommandCasesString(

Просмотреть файл

@ -107,15 +107,14 @@ function getCommandArguments(
command: CommandTypeShape,
componentName: string,
): string {
const commandArgs = command.typeAnnotation.params
.map(param => {
return [
'T view',
...command.typeAnnotation.params.map(param => {
const commandArgJavaType = getCommandArgJavaType(param);
return `${commandArgJavaType} ${param.name}`;
})
.join(', ');
return `T view, ${commandArgs}`;
}),
].join(', ');
}
function generateCommandsString(

Просмотреть файл

@ -921,6 +921,14 @@ const COMMANDS: SchemaType = {
events: [],
props: [],
commands: [
{
name: 'flashScrollIndicators',
optional: false,
typeAnnotation: {
type: 'FunctionTypeAnnotation',
params: [],
},
},
{
name: 'hotspotUpdate',
optional: false,

Просмотреть файл

@ -96,6 +96,9 @@ public class CommandNativeComponentViewManagerDelegate<T extends View> {
}
public void receiveCommand(CommandNativeComponentInterface<T> viewManager, T view, String commandName, ReadableArray args) {
case \\"flashScrollIndicators\\":
viewManager.flashScrollIndicators(view);
break;
case \\"hotspotUpdate\\":
viewManager.hotspotUpdate(view, args.getInt(0), args.getInt(1));
break;

Просмотреть файл

@ -61,6 +61,7 @@ import android.view.View;
public interface CommandNativeComponentViewManagerInterface<T extends View> {
// No props
void flashScrollIndicators(T view);
void hotspotUpdate(T view, int x, int y);
void scrollTo(T view, int y, boolean animated);
}

Просмотреть файл

@ -144,6 +144,14 @@ export const __INTERNAL_VIEW_CONFIG = CommandNativeComponentViewConfig;
export default nativeComponentName;
export const Commands = {
flashScrollIndicators(ref) {
UIManager.dispatchViewCommand(
findNodeHandle(ref),
UIManager.getViewManagerConfig(\\"CommandNativeComponent\\").Commands.flashScrollIndicators,
[]
);
},
hotspotUpdate(ref, x, y) {
UIManager.dispatchViewCommand(
findNodeHandle(ref),