package reactjs-jsx-ppx
ReactJS JSX PPX
Install
Dune Dependency
Authors
Maintainers
Sources
melange-1.0.0.tbz
sha256=01ff3a2711b3812889313288f9e0c8bfe2e17464b6b85282c5113cfc3b740968
sha512=db9ac4554d0c9a8deabbdcd2ae05653964184916982c746ca794df6e2061444adaa6a0367bc1840825a007be3941643abd824aaff737a431b0e5347f7c558378
doc/src/reactjs_jsx_ppx_v3/reactjs_jsx_ppx_v3.ml.html
Source file reactjs_jsx_ppx_v3.ml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316
open Ppxlib open Ast_helper open Asttypes open Parsetree let rec find_opt p = function | [] -> None | x :: l -> if p x then Some x else find_opt p l let nolabel = Nolabel let labelled str = Labelled str let optional str = Optional str let isOptional str = match str with Optional _ -> true | _ -> false let isLabelled str = match str with Labelled _ -> true | _ -> false let getLabel str = match str with Optional str | Labelled str -> str | Nolabel -> "" let optionIdent = Lident "option" let constantString ~loc str = Ast_helper.Exp.constant ~loc (Pconst_string (str, Location.none, None)) let safeTypeFromValue valueStr = let valueStr = getLabel valueStr in match String.sub valueStr 0 1 with "_" -> "T" ^ valueStr | _ -> valueStr [@@raises Invalid_argument] let keyType loc = Typ.constr ~loc { loc; txt = optionIdent } [ Typ.constr ~loc { loc; txt = Lident "string" } [] ] type 'a children = ListLiteral of 'a | Exact of 'a type componentConfig = { propsName : string } (* if children is a list, convert it to an array while mapping each element. If not, just map over it, as usual *) let transformChildrenIfListUpper ~ctxt ~loc ~mapper theList = let rec transformChildren_ theList accum = (* not in the sense of converting a list to an array; convert the AST reprensentation of a list to the AST reprensentation of an array *) match theList with | { pexp_desc = Pexp_construct ({ txt = Lident "[]" }, None) } -> ( match accum with | [ singleElement ] -> Exact singleElement | accum -> ListLiteral (Exp.array ~loc (List.rev accum))) | { pexp_desc = Pexp_construct ({ txt = Lident "::" }, Some { pexp_desc = Pexp_tuple [ v; acc ] }); } -> transformChildren_ acc (mapper#expression ctxt v :: accum) | notAList -> Exact (mapper#expression ctxt notAList) in transformChildren_ theList [] let transformChildrenIfList ~ctxt ~loc ~mapper theList = let rec transformChildren_ theList accum = (* not in the sense of converting a list to an array; convert the AST reprensentation of a list to the AST reprensentation of an array *) match theList with | { pexp_desc = Pexp_construct ({ txt = Lident "[]" }, None) } -> Exp.array ~loc (List.rev accum) | { pexp_desc = Pexp_construct ({ txt = Lident "::" }, Some { pexp_desc = Pexp_tuple [ v; acc ] }); } -> transformChildren_ acc (mapper#expression ctxt v :: accum) | notAList -> mapper#expression ctxt notAList in transformChildren_ theList [] let extractChildren ?(removeLastPositionUnit = false) ~loc propsAndChildren = let rec allButLast_ lst acc = match lst with | [] -> [] | [ (Nolabel, { pexp_desc = Pexp_construct ({ txt = Lident "()" }, None) }); ] -> acc | (Nolabel, _) :: _rest -> raise (Invalid_argument "JSX: found non-labelled argument before the last position") | arg :: rest -> allButLast_ rest (arg :: acc) [@@raises Invalid_argument] in let allButLast lst = allButLast_ lst [] |> List.rev [@@raises Invalid_argument] in match List.partition (fun (label, _) -> label = labelled "children") propsAndChildren with | [], props -> (* no children provided? Place a placeholder list *) ( Exp.construct ~loc { loc; txt = Lident "[]" } None, if removeLastPositionUnit then allButLast props else props ) | [ (_, childrenExpr) ], props -> (childrenExpr, if removeLastPositionUnit then allButLast props else props) | _ -> raise (Invalid_argument "JSX: somehow there's more than one `children` label") [@@raises Invalid_argument] let unerasableIgnore loc = { attr_name = { loc; txt = "warning" }; attr_payload = PStr [ Str.eval (Exp.constant (Pconst_string ("-16", Location.none, None))) ]; attr_loc = loc; } let merlinFocus = { attr_name = { loc = Location.none; txt = "merlin.focus" }; attr_payload = PStr []; attr_loc = Location.none; } (* Helper method to look up the [@react.component] attribute *) let hasAttr { attr_name = loc; _ } = loc.txt = "react.component" (* Helper method to filter out any attribute that isn't [@react.component] *) let otherAttrsPure { attr_name = loc; _ } = loc.txt <> "react.component" (* Iterate over the attributes and try to find the [@react.component] attribute *) let hasAttrOnBinding { pvb_attributes } = find_opt hasAttr pvb_attributes <> None (* Finds the name of the variable the binding is assigned to, otherwise raises Invalid_argument *) let getFnName binding = match binding with | { pvb_pat = { ppat_desc = Ppat_var { txt } } } -> txt | _ -> raise (Invalid_argument "react.component calls cannot be destructured.") [@@raises Invalid_argument] let makeNewBinding binding expression newName = match binding with | { pvb_pat = { ppat_desc = Ppat_var ppat_var } as pvb_pat } -> { binding with pvb_pat = { pvb_pat with ppat_desc = Ppat_var { ppat_var with txt = newName } }; pvb_expr = expression; pvb_attributes = [ merlinFocus ]; } | _ -> raise (Invalid_argument "react.component calls cannot be destructured.") [@@raises Invalid_argument] (* Lookup the value of `props` otherwise raise Invalid_argument error *) let getPropsNameValue _acc (loc, exp) = match (loc, exp) with | { txt = Lident "props" }, { pexp_desc = Pexp_ident { txt = Lident str } } -> { propsName = str } | { txt }, _ -> raise (Invalid_argument ("react.component only accepts props as an option, given: " ^ Longident.last_exn txt)) [@@raises Invalid_argument] (* Lookup the `props` record or string as part of [@react.component] and store the name for use when rewriting *) let getPropsAttr payload = let defaultProps = { propsName = "Props" } in match payload with | Some (PStr ({ pstr_desc = Pstr_eval ({ pexp_desc = Pexp_record (recordFields, None) }, _); } :: _rest)) -> List.fold_left getPropsNameValue defaultProps recordFields | Some (PStr ({ pstr_desc = Pstr_eval ({ pexp_desc = Pexp_ident { txt = Lident "props" } }, _); } :: _rest)) -> { propsName = "props" } | Some (PStr ({ pstr_desc = Pstr_eval (_, _) } :: _rest)) -> raise (Invalid_argument "react.component accepts a record config with props as an options.") | _ -> defaultProps [@@raises Invalid_argument] (* Plucks the label, loc, and type_ from an AST node *) let pluckLabelDefaultLocType (label, default, _, _, loc, type_) = (label, default, loc, type_) (* Lookup the filename from the location information on the AST node and turn it into a valid module identifier *) let filenameFromLoc ~ctxt (pstr_loc : Location.t) = let fileName = match pstr_loc.loc_start.pos_fname with | "" -> Expansion_context.Base.input_name ctxt | fileName -> fileName in let fileName = try Filename.chop_extension (Filename.basename fileName) with Invalid_argument _ -> fileName in let fileName = String.capitalize_ascii fileName in fileName (* Build a string representation of a module name with segments separated by $ *) let makeModuleName fileName nestedModules fnName = let fullModuleName = match (fileName, nestedModules, fnName) with (* TODO: is this even reachable? It seems like the fileName always exists *) | "", nestedModules, "make" -> nestedModules | "", nestedModules, fnName -> List.rev (fnName :: nestedModules) | fileName, nestedModules, "make" -> fileName :: List.rev nestedModules | fileName, nestedModules, fnName -> fileName :: List.rev (fnName :: nestedModules) in let fullModuleName = String.concat "$" fullModuleName in fullModuleName (* AST node builders These functions help us build AST nodes that are needed when transforming a [@react.component] into a constructor and a props external *) (* Build an AST node representing all named args for the `external` definition for a component's props *) let rec recursivelyMakeNamedArgsForExternal list args = match list with | (label, default, loc, interiorType) :: tl -> recursivelyMakeNamedArgsForExternal tl (Typ.arrow ~loc label (match (label, interiorType, default) with (* ~foo=1 *) | label, None, Some _ -> { ptyp_desc = Ptyp_var (safeTypeFromValue label); ptyp_loc = loc; ptyp_loc_stack = []; ptyp_attributes = []; } (* ~foo: int=1 *) | _label, Some type_, Some _ -> type_ (* ~foo: option(int)=? *) | ( label, Some { ptyp_desc = Ptyp_constr ({ txt = Lident "option" }, [ type_ ]); }, _ ) | ( label, Some { ptyp_desc = Ptyp_constr ({ txt = Ldot (Lident "*predef*", "option") }, [ type_ ]); }, _ ) (* ~foo: int=? - note this isnt valid. but we want to get a type error *) | label, Some type_, _ when isOptional label -> type_ (* ~foo=? *) | label, None, _ when isOptional label -> { ptyp_desc = Ptyp_var (safeTypeFromValue label); ptyp_loc = loc; ptyp_loc_stack = []; ptyp_attributes = []; } (* ~foo *) | label, None, _ -> { ptyp_desc = Ptyp_var (safeTypeFromValue label); ptyp_loc_stack = []; ptyp_loc = loc; ptyp_attributes = []; } | _label, Some type_, _ -> type_) args) | [] -> args [@@raises Invalid_argument] (* Build an AST node for the [@bs.obj] representing props for a component *) let makePropsValue fnName loc namedArgListWithKeyAndRef propsType = let propsName = fnName ^ "Props" in { pval_name = { txt = propsName; loc }; pval_type = recursivelyMakeNamedArgsForExternal namedArgListWithKeyAndRef (Typ.arrow nolabel { ptyp_desc = Ptyp_constr ({ txt = Lident "unit"; loc }, []); ptyp_loc = loc; ptyp_loc_stack = []; ptyp_attributes = []; } propsType); pval_prim = [ "" ]; pval_attributes = [ { attr_name = { txt = "bs.obj"; loc }; attr_payload = PStr []; attr_loc = loc; }; ]; pval_loc = loc; } [@@raises Invalid_argument] (* Build an AST node representing an `external` with the definition of the [@bs.obj] *) let makePropsExternal fnName loc namedArgListWithKeyAndRef propsType = { pstr_loc = loc; pstr_desc = Pstr_primitive (makePropsValue fnName loc namedArgListWithKeyAndRef propsType); } [@@raises Invalid_argument] (* Build an AST node for the signature of the `external` definition *) let makePropsExternalSig fnName loc namedArgListWithKeyAndRef propsType = { psig_loc = loc; psig_desc = Psig_value (makePropsValue fnName loc namedArgListWithKeyAndRef propsType); } [@@raises Invalid_argument] (* Build an AST node for the props name when converted to an object inside the function signature *) let makePropsName ~loc name = { ppat_desc = Ppat_var { txt = name; loc }; ppat_loc = loc; ppat_loc_stack = []; ppat_attributes = []; } let makeObjectField loc (str, attrs, type_) = { pof_desc = Otag ({ loc; txt = str }, type_); pof_loc = loc; pof_attributes = attrs; } (* Build an AST node representing a "closed" object representing a component's props *) let makePropsType ~loc namedTypeList = Typ.mk ~loc (Ptyp_constr ( { txt = Ldot (Lident "Js", "t"); loc }, [ { ptyp_desc = Ptyp_object (List.map (makeObjectField loc) namedTypeList, Closed); ptyp_loc = loc; ptyp_loc_stack = []; ptyp_attributes = []; }; ] )) (* Builds an AST node for the entire `external` definition of props *) let makeExternalDecl fnName loc namedArgListWithKeyAndRef namedTypeList = makePropsExternal fnName loc (List.map pluckLabelDefaultLocType namedArgListWithKeyAndRef) (makePropsType ~loc namedTypeList) [@@raises Invalid_argument] (* TODO: some line number might still be wrong *) let jsxMapper = let jsxVersion = ref None in let transformUppercaseCall3 ~caller modulePath ~ctxt mapper loc attrs _ callArguments = let children, argsWithLabels = extractChildren ~loc ~removeLastPositionUnit:true callArguments in let argsForMake = argsWithLabels in let childrenExpr = transformChildrenIfListUpper ~loc ~mapper ~ctxt children in let recursivelyTransformedArgsForMake = argsForMake |> List.map (fun (label, expression) -> (label, mapper#expression ctxt expression)) in let childrenArg = ref None in let args = recursivelyTransformedArgsForMake @ (match childrenExpr with | Exact children -> [ (labelled "children", children) ] | ListLiteral { pexp_desc = Pexp_array list } when list = [] -> [] | ListLiteral expression -> (* this is a hack to support react components that introspect into their children *) childrenArg := Some expression; [ ( labelled "children", Exp.ident ~loc { loc; txt = Ldot (Lident "React", "null") } ); ]) @ [ (nolabel, Exp.construct ~loc { loc; txt = Lident "()" } None) ] in let isCap str = let first = String.sub str 0 1 [@@raises Invalid_argument] in let capped = String.uppercase_ascii first in first = capped [@@raises Invalid_argument] in let ident = match modulePath with | Lident _ -> Ldot (modulePath, caller) | Ldot (_modulePath, value) as fullPath when isCap value -> Ldot (fullPath, caller) | modulePath -> modulePath in let propsIdent = match ident with | Lident path -> Lident (path ^ "Props") | Ldot (ident, path) -> Ldot (ident, path ^ "Props") | _ -> raise (Invalid_argument "JSX name can't be the result of function applications") in let props = Exp.apply ~attrs ~loc (Exp.ident ~loc { loc; txt = propsIdent }) args in (* handle key, ref, children *) (* React.createElement(Component.make, props, ...children) *) match !childrenArg with | None -> Exp.apply ~loc ~attrs (Exp.ident ~loc { loc; txt = Ldot (Lident "React", "createElement") }) [ (nolabel, Exp.ident ~loc { txt = ident; loc }); (nolabel, props) ] | Some children -> Exp.apply ~loc ~attrs (Exp.ident ~loc { loc; txt = Ldot (Lident "React", "createElementVariadic") }) [ (nolabel, Exp.ident ~loc { txt = ident; loc }); (nolabel, props); (nolabel, children); ] [@@raises Invalid_argument] in let transformLowercaseCall3 ~ctxt mapper loc attrs callArguments id = let children, nonChildrenProps = extractChildren ~loc callArguments in let componentNameExpr = constantString ~loc id in let childrenExpr = transformChildrenIfList ~loc ~ctxt ~mapper children in let createElementCall = match children with (* [@JSX] div(~children=[a]), coming from <div> a </div> *) | { pexp_desc = ( Pexp_construct ({ txt = Lident "::" }, Some { pexp_desc = Pexp_tuple _ }) | Pexp_construct ({ txt = Lident "[]" }, None) ); } -> "createDOMElementVariadic" (* [@JSX] div(~children= value), coming from <div> ...(value) </div> *) | _ -> raise (Invalid_argument "A spread as a DOM element's children don't make sense written \ together. You can simply remove the spread.") in let args = match nonChildrenProps with | [ _justTheUnitArgumentAtEnd ] -> [ (* "div" *) (nolabel, componentNameExpr); (* [|moreCreateElementCallsHere|] *) (nolabel, childrenExpr); ] | nonEmptyProps -> let propsCall = Exp.apply ~loc (Exp.ident ~loc { loc; txt = Ldot (Lident "ReactDOMRe", "domProps") }) (nonEmptyProps |> List.map (fun (label, expression) -> (label, mapper#expression ctxt expression))) in [ (* "div" *) (nolabel, componentNameExpr); (* ReactDOMRe.props(~className=blabla, ~foo=bar, ()) *) (labelled "props", propsCall); (* [|moreCreateElementCallsHere|] *) (nolabel, childrenExpr); ] in Exp.apply ~loc (* throw away the [@JSX] attribute and keep the others, if any *) ~attrs (* ReactDOMRe.createElement *) (Exp.ident ~loc { loc; txt = Ldot (Lident "ReactDOMRe", createElementCall) }) args [@@raises Invalid_argument] in let rec recursivelyTransformNamedArgsForMake ~ctxt mapper expr list = let expr = mapper#expression ctxt expr in match expr.pexp_desc with (* TODO: make this show up with a loc. *) | Pexp_fun (Labelled "key", _, _, _) | Pexp_fun (Optional "key", _, _, _) -> raise (Invalid_argument "Key cannot be accessed inside of a component. Don't worry - you \ can always key a component from its parent!") | Pexp_fun (Labelled "ref", _, _, _) | Pexp_fun (Optional "ref", _, _, _) -> raise (Invalid_argument "Ref cannot be passed as a normal prop. Please use `forwardRef` \ API instead.") | Pexp_fun (arg, default, pattern, expression) when isOptional arg || isLabelled arg -> let () = match (isOptional arg, pattern, default) with | true, { ppat_desc = Ppat_constraint (_, { ptyp_desc }) }, None -> ( match ptyp_desc with | Ptyp_constr ({ txt = Lident "option" }, [ _ ]) -> () | _ -> let currentType = match ptyp_desc with | Ptyp_constr ({ txt }, []) -> String.concat "." (Longident.flatten_exn txt) | Ptyp_constr ({ txt }, _innerTypeArgs) -> String.concat "." (Longident.flatten_exn txt) ^ "(...)" | _ -> "..." in Ocaml_common.Location.prerr_warning pattern.ppat_loc (Preprocessor (Printf.sprintf "ReasonReact: optional argument annotations must \ have explicit `option`. Did you mean \ `option(%s)=?`?" currentType))) | _ -> () in let alias = match pattern with | { ppat_desc = Ppat_alias (_, { txt }) | Ppat_var { txt } } -> txt | { ppat_desc = Ppat_any } -> "_" | _ -> getLabel arg in let type_ = match pattern with | { ppat_desc = Ppat_constraint (_, type_) } -> Some type_ | _ -> None in recursivelyTransformNamedArgsForMake ~ctxt mapper expression ((arg, default, pattern, alias, pattern.ppat_loc, type_) :: list) | Pexp_fun ( Nolabel, _, { ppat_desc = Ppat_construct ({ txt = Lident "()" }, _) | Ppat_any }, _expression ) -> (list, None) | Pexp_fun ( Nolabel, _, { ppat_desc = ( Ppat_var { txt } | Ppat_constraint ({ ppat_desc = Ppat_var { txt } }, _) ); }, _expression ) -> (list, Some txt) | Pexp_fun (Nolabel, _, pattern, _expression) -> Location.raise_errorf ~loc:pattern.ppat_loc "ReasonReact: react.component refs only support plain arguments and \ type annotations." | _ -> (list, None) [@@raises Invalid_argument] in let argToType types (name, default, _noLabelName, _alias, loc, type_) = match (type_, name, default) with | ( Some { ptyp_desc = Ptyp_constr ({ txt = Lident "option" }, [ type_ ]) }, name, _ ) when isOptional name -> ( getLabel name, [], { type_ with ptyp_desc = Ptyp_constr ({ loc = type_.ptyp_loc; txt = optionIdent }, [ type_ ]); } ) :: types | Some type_, name, Some _default -> ( getLabel name, [], { ptyp_desc = Ptyp_constr ({ loc; txt = optionIdent }, [ type_ ]); ptyp_loc = loc; ptyp_loc_stack = []; ptyp_attributes = []; } ) :: types | Some type_, name, _ -> (getLabel name, [], type_) :: types | None, name, _ when isOptional name -> ( getLabel name, [], { ptyp_desc = Ptyp_constr ( { loc; txt = optionIdent }, [ { ptyp_desc = Ptyp_var (safeTypeFromValue name); ptyp_loc = loc; ptyp_loc_stack = []; ptyp_attributes = []; }; ] ); ptyp_loc = loc; ptyp_loc_stack = []; ptyp_attributes = []; } ) :: types | None, name, _ when isLabelled name -> ( getLabel name, [], { ptyp_desc = Ptyp_var (safeTypeFromValue name); ptyp_loc = loc; ptyp_loc_stack = []; ptyp_attributes = []; } ) :: types | _ -> types [@@raises Invalid_argument] in let argToConcreteType types (name, loc, type_) = match name with | name when isLabelled name -> (getLabel name, [], type_) :: types | name when isOptional name -> (getLabel name, [], Typ.constr ~loc { loc; txt = optionIdent } [ type_ ]) :: types | _ -> types in let nestedModules = ref [] in let transformComponentDefinition ~ctxt mapper structure returnStructures = match structure with (* external *) | { pstr_loc; pstr_desc = Pstr_primitive ({ pval_name = { txt = fnName }; pval_attributes; pval_type } as value_description); } as pstr -> ( match List.filter hasAttr pval_attributes with | [] -> structure :: returnStructures | [ _ ] -> let rec getPropTypes types ({ ptyp_loc; ptyp_desc } as fullType) = match ptyp_desc with | Ptyp_arrow (name, type_, ({ ptyp_desc = Ptyp_arrow _ } as rest)) when isLabelled name || isOptional name -> getPropTypes ((name, ptyp_loc, type_) :: types) rest | Ptyp_arrow (Nolabel, _type, rest) -> getPropTypes types rest | Ptyp_arrow (name, type_, returnValue) when isLabelled name || isOptional name -> (returnValue, (name, returnValue.ptyp_loc, type_) :: types) | _ -> (fullType, types) in let innerType, propTypes = getPropTypes [] pval_type in let namedTypeList = List.fold_left argToConcreteType [] propTypes in let pluckLabelAndLoc (label, loc, type_) = (label, None (* default *), loc, Some type_) in let retPropsType = makePropsType ~loc:pstr_loc namedTypeList in let externalPropsDecl = makePropsExternal fnName pstr_loc ((optional "key", None, pstr_loc, Some (keyType pstr_loc)) :: List.map pluckLabelAndLoc propTypes) retPropsType in (* can't be an arrow because it will defensively uncurry *) let newExternalType = Ptyp_constr ( { loc = pstr_loc; txt = Ldot (Lident "React", "componentLike"); }, [ retPropsType; innerType ] ) in let newStructure = { pstr with pstr_desc = Pstr_primitive { value_description with pval_type = { pval_type with ptyp_desc = newExternalType }; pval_attributes = List.filter otherAttrsPure pval_attributes; }; } in externalPropsDecl :: newStructure :: returnStructures | _ -> raise (Invalid_argument "Only one react.component call can exist on a component at \ one time")) (* let component = ... *) | { pstr_loc; pstr_desc = Pstr_value (recFlag, valueBindings) } -> let fileName = filenameFromLoc ~ctxt pstr_loc in let emptyLoc = Location.in_file fileName in let mapBinding binding = if hasAttrOnBinding binding then let bindingLoc = binding.pvb_loc in let bindingPatLoc = binding.pvb_pat.ppat_loc in let binding = { binding with pvb_pat = { binding.pvb_pat with ppat_loc = emptyLoc }; pvb_loc = emptyLoc; } in let fnName = getFnName binding in let internalFnName = fnName ^ "$Internal" in let fullModuleName = makeModuleName fileName !nestedModules fnName in let modifiedBindingOld binding = let expression = binding.pvb_expr in (* TODO: there is a long-tail of unsupported features inside of blocks - Pexp_letmodule , Pexp_letexception , Pexp_ifthenelse *) let rec spelunkForFunExpression expression = match expression with (* let make = (~prop) => ... *) | { pexp_desc = Pexp_fun _ } -> expression (* let make = {let foo = bar in (~prop) => ...} *) | { pexp_desc = Pexp_let (_recursive, _vbs, returnExpression) } -> (* here's where we spelunk! *) spelunkForFunExpression returnExpression (* let make = React.forwardRef((~prop) => ...) *) | { pexp_desc = Pexp_apply (_wrapperExpression, [ (Nolabel, innerFunctionExpression) ]); } -> spelunkForFunExpression innerFunctionExpression | { pexp_desc = Pexp_sequence (_wrapperExpression, innerFunctionExpression); } -> spelunkForFunExpression innerFunctionExpression | _ -> raise (Invalid_argument "react.component calls can only be on function \ definitions or component wrappers (forwardRef, \ memo).") [@@raises Invalid_argument] in spelunkForFunExpression expression in let modifiedBinding binding = let hasApplication = ref false in let wrapExpressionWithBinding expressionFn expression = Vb.mk ~loc:bindingLoc ~attrs:(List.filter otherAttrsPure binding.pvb_attributes) (Pat.var ~loc:bindingPatLoc { loc = bindingPatLoc; txt = fnName }) (expressionFn expression) in let expression = binding.pvb_expr in let unerasableIgnoreExp exp = { exp with pexp_attributes = unerasableIgnore emptyLoc :: exp.pexp_attributes; } in (* TODO: there is a long-tail of unsupported features inside of blocks - Pexp_letmodule , Pexp_letexception , Pexp_ifthenelse *) let rec spelunkForFunExpression expression = match expression with (* let make = (~prop) => ... with no final unit *) | { pexp_desc = Pexp_fun ( ((Labelled _ | Optional _) as label), default, pattern, ({ pexp_desc = Pexp_fun _ } as internalExpression) ); } -> let wrap, hasUnit, exp = spelunkForFunExpression internalExpression in ( wrap, hasUnit, unerasableIgnoreExp { expression with pexp_desc = Pexp_fun (label, default, pattern, exp); } ) (* let make = (()) => ... *) (* let make = (_) => ... *) | { pexp_desc = Pexp_fun ( Nolabel, _default, { ppat_desc = Ppat_construct ({ txt = Lident "()" }, _) | Ppat_any; }, _internalExpression ); } -> ((fun a -> a), true, expression) (* let make = (~prop) => ... *) | { pexp_desc = Pexp_fun ( (Labelled _ | Optional _), _default, _pattern, _internalExpression ); } -> ((fun a -> a), false, unerasableIgnoreExp expression) (* let make = (prop) => ... *) | { pexp_desc = Pexp_fun (_nolabel, _default, pattern, _internalExpression); } -> if hasApplication.contents then ((fun a -> a), false, unerasableIgnoreExp expression) else Location.raise_errorf ~loc:pattern.ppat_loc "ReasonReact: props need to be labelled arguments.\n\ \ If you are working with refs be sure to wrap with \ React.forwardRef.\n\ \ If your component doesn't have any props use () or \ _ instead of a name." (* let make = {let foo = bar in (~prop) => ...} *) | { pexp_desc = Pexp_let (recursive, vbs, internalExpression) } -> (* here's where we spelunk! *) let wrap, hasUnit, exp = spelunkForFunExpression internalExpression in ( wrap, hasUnit, { expression with pexp_desc = Pexp_let (recursive, vbs, exp); } ) (* let make = React.forwardRef((~prop) => ...) *) | { pexp_desc = Pexp_apply (wrapperExpression, [ (Nolabel, internalExpression) ]); } -> let () = hasApplication := true in let _, hasUnit, exp = spelunkForFunExpression internalExpression in ( (fun exp -> Exp.apply wrapperExpression [ (nolabel, exp) ]), hasUnit, exp ) | { pexp_desc = Pexp_sequence (wrapperExpression, internalExpression); } -> let wrap, hasUnit, exp = spelunkForFunExpression internalExpression in ( wrap, hasUnit, { expression with pexp_desc = Pexp_sequence (wrapperExpression, exp); } ) | e -> ((fun a -> a), false, e) in let wrapExpression, hasUnit, expression = spelunkForFunExpression expression in (wrapExpressionWithBinding wrapExpression, hasUnit, expression) in let bindingWrapper, hasUnit, expression = modifiedBinding binding in let reactComponentAttribute = try Some (List.find hasAttr binding.pvb_attributes) with Not_found -> None in let _attr_loc, payload = match reactComponentAttribute with | Some { attr_name = loc; attr_payload = payload; _ } -> (loc.loc, Some payload) | None -> (emptyLoc, None) in let props = getPropsAttr payload in (* do stuff here! *) let namedArgList, forwardRef = recursivelyTransformNamedArgsForMake ~ctxt mapper (modifiedBindingOld binding) [] in let namedArgListWithKeyAndRef = ( optional "key", None, Pat.var { txt = "key"; loc = emptyLoc }, "key", emptyLoc, Some (keyType emptyLoc) ) :: namedArgList in let namedArgListWithKeyAndRef = match forwardRef with | Some _ -> ( optional "ref", None, Pat.var { txt = "key"; loc = emptyLoc }, "ref", emptyLoc, None ) :: namedArgListWithKeyAndRef | None -> namedArgListWithKeyAndRef in let namedArgListWithKeyAndRefForNew = match forwardRef with | Some txt -> namedArgList @ [ ( nolabel, None, Pat.var { txt; loc = emptyLoc }, txt, emptyLoc, None ); ] | None -> namedArgList in let pluckArg (label, _, _, alias, loc, _) = let labelString = match label with | label when isOptional label || isLabelled label -> getLabel label | _ -> "" in ( label, match labelString with | "" -> Exp.ident ~loc { txt = Lident alias; loc } | labelString -> Exp.apply ~loc (Exp.ident ~loc { txt = Lident "##"; loc }) [ ( nolabel, Exp.ident ~loc { txt = Lident props.propsName; loc } ); ( nolabel, Exp.ident ~loc { txt = Lident labelString; loc } ); ] ) in let namedTypeList = List.fold_left argToType [] namedArgList in let loc = emptyLoc in let externalDecl = makeExternalDecl fnName loc namedArgListWithKeyAndRef namedTypeList in let innerExpressionArgs = List.map pluckArg namedArgListWithKeyAndRefForNew @ if hasUnit then [ (Nolabel, Exp.construct { loc; txt = Lident "()" } None) ] else [] in let innerExpression = Exp.apply (Exp.ident { loc; txt = Lident (match recFlag with | Recursive -> internalFnName | Nonrecursive -> fnName); }) innerExpressionArgs in let innerExpressionWithRef = match forwardRef with | Some txt -> { innerExpression with pexp_desc = Pexp_fun ( nolabel, None, { ppat_desc = Ppat_var { txt; loc = emptyLoc }; ppat_loc = emptyLoc; ppat_loc_stack = []; ppat_attributes = []; }, innerExpression ); } | None -> innerExpression in let fullExpression = Exp.fun_ nolabel None { ppat_desc = Ppat_constraint ( makePropsName ~loc:emptyLoc props.propsName, makePropsType ~loc:emptyLoc namedTypeList ); ppat_loc = emptyLoc; ppat_loc_stack = []; ppat_attributes = []; } innerExpressionWithRef in let fullExpression = match fullModuleName with | "" -> fullExpression | txt -> Exp.let_ Nonrecursive [ Vb.mk ~loc:emptyLoc (Pat.var ~loc:emptyLoc { loc = emptyLoc; txt }) fullExpression; ] (Exp.ident ~loc:emptyLoc { loc = emptyLoc; txt = Lident txt }) in let bindings, newBinding = match recFlag with | Recursive -> ( [ bindingWrapper (Exp.let_ ~loc:emptyLoc Recursive [ makeNewBinding binding expression internalFnName; Vb.mk (Pat.var { loc = emptyLoc; txt = fnName }) fullExpression; ] (Exp.ident { loc = emptyLoc; txt = Lident fnName })); ], None ) | Nonrecursive -> ( [ { binding with pvb_expr = expression; pvb_attributes = [] }; ], Some (bindingWrapper fullExpression) ) in (Some externalDecl, bindings, newBinding) else (None, [ binding ], None) [@@raises Invalid_argument] in let structuresAndBinding = List.map mapBinding valueBindings in let otherStructures (extern, binding, newBinding) (externs, bindings, newBindings) = let externs = match extern with | Some extern -> extern :: externs | None -> externs in let newBindings = match newBinding with | Some newBinding -> newBinding :: newBindings | None -> newBindings in (externs, binding @ bindings, newBindings) in let externs, bindings, newBindings = List.fold_right otherStructures structuresAndBinding ([], [], []) in externs @ [ { pstr_loc; pstr_desc = Pstr_value (recFlag, bindings) } ] @ (match newBindings with | [] -> [] | newBindings -> [ { pstr_loc = emptyLoc; pstr_desc = Pstr_value (recFlag, newBindings); }; ]) @ returnStructures | structure -> structure :: returnStructures [@@raises Invalid_argument] in let reactComponentTransform ~ctxt mapper structures = List.fold_right (transformComponentDefinition ~ctxt mapper) structures [] [@@raises Invalid_argument] in let transformComponentSignature _mapper signature returnSignatures = match signature with | { psig_loc; psig_desc = Psig_value ({ pval_name = { txt = fnName }; pval_attributes; pval_type } as psig_desc); } as psig -> ( match List.filter hasAttr pval_attributes with | [] -> signature :: returnSignatures | [ _ ] -> let rec getPropTypes types ({ ptyp_loc; ptyp_desc } as fullType) = match ptyp_desc with | Ptyp_arrow (name, type_, ({ ptyp_desc = Ptyp_arrow _ } as rest)) when isOptional name || isLabelled name -> getPropTypes ((name, ptyp_loc, type_) :: types) rest | Ptyp_arrow (Nolabel, _type, rest) -> getPropTypes types rest | Ptyp_arrow (name, type_, returnValue) when isOptional name || isLabelled name -> (returnValue, (name, returnValue.ptyp_loc, type_) :: types) | _ -> (fullType, types) in let innerType, propTypes = getPropTypes [] pval_type in let namedTypeList = List.fold_left argToConcreteType [] propTypes in let pluckLabelAndLoc (label, loc, type_) = (label, None, loc, Some type_) in let retPropsType = makePropsType ~loc:psig_loc namedTypeList in let externalPropsDecl = makePropsExternalSig fnName psig_loc ((optional "key", None, psig_loc, Some (keyType psig_loc)) :: List.map pluckLabelAndLoc propTypes) retPropsType in (* can't be an arrow because it will defensively uncurry *) let newExternalType = Ptyp_constr ( { loc = psig_loc; txt = Ldot (Lident "React", "componentLike"); }, [ retPropsType; innerType ] ) in let newStructure = { psig with psig_desc = Psig_value { psig_desc with pval_type = { pval_type with ptyp_desc = newExternalType }; pval_attributes = List.filter otherAttrsPure pval_attributes; }; } in externalPropsDecl :: newStructure :: returnSignatures | _ -> raise (Invalid_argument "Only one react.component call can exist on a component at \ one time")) | signature -> signature :: returnSignatures [@@raises Invalid_argument] in let reactComponentSignatureTransform mapper signatures = List.fold_right (transformComponentSignature mapper) signatures [] [@@raises Invalid_argument] in let transformJsxCall ~ctxt mapper callExpression callArguments attrs = match callExpression.pexp_desc with | Pexp_ident caller -> ( match caller with | { txt = Lident "createElement" } -> raise (Invalid_argument "JSX: `createElement` should be preceeded by a module name.") (* Foo.createElement(~prop1=foo, ~prop2=bar, ~children=[], ()) *) | { loc; txt = Ldot (modulePath, ("createElement" | "make")) } -> ( match !jsxVersion with | None | Some 3 -> transformUppercaseCall3 ~ctxt ~caller:"make" modulePath mapper loc attrs callExpression callArguments | Some _ -> raise (Invalid_argument "JSX: the JSX version must be 3")) (* div(~prop1=foo, ~prop2=bar, ~children=[bla], ()) *) (* turn that into ReactDOMRe.createElement(~props=ReactDOMRe.props(~props1=foo, ~props2=bar, ()), [|bla|]) *) | { loc; txt = Lident id } -> ( match !jsxVersion with | None | Some 3 -> transformLowercaseCall3 ~ctxt mapper loc attrs callArguments id | Some _ -> raise (Invalid_argument "JSX: the JSX version must be 3")) (* Foo.bar(~prop1=foo, ~prop2=bar, ~children=[], ()) *) (* Not only "createElement" or "make". See https://github.com/reasonml/reason/pull/2541 *) | { loc; txt = Ldot (modulePath, anythingNotCreateElementOrMake) } -> ( match !jsxVersion with | None | Some 3 -> transformUppercaseCall3 ~ctxt ~caller:anythingNotCreateElementOrMake modulePath mapper loc attrs callExpression callArguments | Some _ -> raise (Invalid_argument "JSX: the JSX version must be 3")) | { txt = Lapply _ } -> (* don't think there's ever a case where this is reached *) raise (Invalid_argument "JSX: encountered a weird case while processing the code. \ Please report this!")) | _ -> raise (Invalid_argument "JSX: `createElement` should be preceeded by a simple, direct \ module name.") [@@raises Invalid_argument] in object (self) inherit [Expansion_context.Base.t] Ppxlib.Ast_traverse.map_with_context as super method! signature ctxt sig_ = super#signature ctxt (reactComponentSignatureTransform self sig_) [@@raises Invalid_argument] method! structure ctxt stru = super#structure ctxt (reactComponentTransform ~ctxt self stru) [@@raises Invalid_argument] method! expression ctxt expr = match expr with (* Does the function application have the @JSX attribute? *) | { pexp_desc = Pexp_apply (callExpression, callArguments); pexp_attributes; } -> ( let jsxAttribute, nonJSXAttributes = List.partition (fun { attr_name = attribute; _ } -> attribute.txt = "JSX") pexp_attributes in match (jsxAttribute, nonJSXAttributes) with (* no JSX attribute *) | [], _ -> super#expression ctxt expr | _, nonJSXAttributes -> transformJsxCall ~ctxt self callExpression callArguments nonJSXAttributes) (* is it a list with jsx attribute? Reason <>foo</> desugars to [@JSX][foo]*) | { pexp_desc = ( Pexp_construct ({ txt = Lident "::"; loc }, Some { pexp_desc = Pexp_tuple _ }) | Pexp_construct ({ txt = Lident "[]"; loc }, None) ); pexp_attributes; } as listItems -> ( let jsxAttribute, nonJSXAttributes = List.partition (fun { attr_name = attribute; _ } -> attribute.txt = "JSX") pexp_attributes in match (jsxAttribute, nonJSXAttributes) with (* no JSX attribute *) | [], _ -> super#expression ctxt expr | _, nonJSXAttributes -> let fragment = Exp.ident ~loc { loc; txt = Ldot (Lident "ReasonReact", "fragment") } in let childrenExpr = transformChildrenIfList ~loc ~ctxt ~mapper:self listItems in let args = [ (* "div" *) (nolabel, fragment); (* [|moreCreateElementCallsHere|] *) (nolabel, childrenExpr); ] in Exp.apply ~loc (* throw away the [@JSX] attribute and keep the others, if any *) ~attrs:nonJSXAttributes (* ReactDOMRe.createElement *) (Exp.ident ~loc { loc; txt = Ldot (Lident "ReactDOMRe", "createElement") }) args) (* Delegate to the default mapper, a deep identity traversal *) | e -> super#expression ctxt e [@@raises Invalid_argument] method! module_binding ctxt module_binding = (match module_binding.pmb_name.txt with | None -> () | Some name -> nestedModules := name :: !nestedModules); let mapped = super#module_binding ctxt module_binding in let _ = nestedModules := List.tl !nestedModules in mapped [@@raises Failure] end let () = Driver.V2.register_transformation "reactjs" ~impl:(fun ctxt str -> jsxMapper#structure ctxt str) ~intf:(fun ctxt sig_ -> jsxMapper#signature ctxt sig_)
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>