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

Enhance decorator completion #908

Merged
merged 2 commits into from
Feb 1, 2024
Merged
Show file tree
Hide file tree
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@

## master

#### :nail_care: Polish

Enhance decorator completion. https://github.com/rescript-lang/rescript-vscode/pull/908

## 1.38.0

#### :nail_care: Polish
Expand Down
45 changes: 40 additions & 5 deletions analysis/src/CompletionBackEnd.ml
Original file line number Diff line number Diff line change
Expand Up @@ -1746,6 +1746,36 @@ let rec processCompletable ~debug ~full ~scope ~env ~pos ~forHover completable =
&& (forHover || not (List.mem name identsSeen)))
|> List.map mkLabel)
@ keyLabels
| CdecoratorPayload (JsxConfig {prefix; nested}) -> (
let mkField ~name ~primitive =
{
stamp = -1;
fname = {loc = Location.none; txt = name};
optional = true;
typ = Ctype.newconstr (Path.Pident (Ident.create primitive)) [];
docstring = [];
deprecated = None;
}
in
let typ : completionType =
Trecord
{
env;
definition = `NameOnly "jsxConfig";
fields =
[
mkField ~name:"version" ~primitive:"int";
mkField ~name:"module_" ~primitive:"string";
mkField ~name:"mode" ~primitive:"string";
];
}
in
match typ |> TypeUtils.resolveNested ~env ~full ~nested with
| None -> []
| Some (typ, _env, completionContext, typeArgContext) ->
typ
|> completeTypedValue ?typeArgContext ~rawOpens ~mode:Expression ~full
~prefix ~completionContext)
| CdecoratorPayload (Module prefix) ->
let packageJsonPath =
Utils.findPackageJson (full.package.rootPath |> Uri.fromPath)
Expand Down Expand Up @@ -1824,8 +1854,13 @@ let rec processCompletable ~debug ~full ~scope ~env ~pos ~forHover completable =
~kind:(Label (if isLocal then "Local file" else "Package"))
~env)
| Cdecorator prefix ->
let mkDecorator (name, docstring) =
{(Completion.create name ~kind:(Label "") ~env) with docstring}
let mkDecorator (name, docstring, maybeInsertText) =
{
(Completion.createWithSnippet ~name ~kind:(Label "") ~env
?insertText:maybeInsertText ())
with
docstring;
}
in
let isTopLevel = String.starts_with ~prefix:"@" prefix in
let prefix =
Expand All @@ -1837,16 +1872,16 @@ let rec processCompletable ~debug ~full ~scope ~env ~pos ~forHover completable =
else CompletionDecorators.local
in
decorators
|> List.filter (fun (decorator, _) -> Utils.startsWith decorator prefix)
|> List.map (fun (decorator, doc) ->
|> List.filter (fun (decorator, _, _) -> Utils.startsWith decorator prefix)
|> List.map (fun (decorator, maybeInsertText, doc) ->
let parts = String.split_on_char '.' prefix in
let len = String.length prefix in
let dec2 =
if List.length parts > 1 then
String.sub decorator len (String.length decorator - len)
else decorator
in
(dec2, doc))
(dec2, doc, maybeInsertText))
|> List.map mkDecorator
| CnamedArg (cp, prefix, identsSeen) ->
let labels =
Expand Down
42 changes: 42 additions & 0 deletions analysis/src/CompletionDecorators.ml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
let local =
[
( "as",
Some "as(\"$0\")",
[
{|The `@as` decorator is commonly used on record types to alias record field names to a different JavaScript attribute name.

Expand All @@ -11,6 +12,7 @@ It is also possible to map a ReScript record to a JavaScript array by passing in
[Read more and see examples in the documentation](https://rescript-lang.org/syntax-lookup#as-decorator).|};
] );
( "dead",
None,
[
{|The `@dead` decorator is for reanalyze, a static analysis tool for ReScript that can do dead code analysis.

Expand All @@ -21,12 +23,14 @@ It is also possible to map a ReScript record to a JavaScript array by passing in
> Hint: Did you know you can run an interactive code analysis in your project by running the command `> ReScript: Start Code Analyzer`? Try it!|};
] );
( "deriving",
Some "deriving($0)",
[
{|When the `@deriving` decorator is applied to a record type, it expands the type into a factory function plus a set of getter/setter functions for its fields.

[Read more and see examples in the documentation](https://rescript-lang.org/syntax-lookup#deriving-decorator).|};
] );
( "deprecated",
Some "deprecated(\"$0\")",
[
{|The `@deprecated` decorator is used to add deprecation notes to types, values and submodules. The compiler and editor tooling will yield a warning whenever a deprecated entity is being used.

Expand All @@ -35,6 +39,7 @@ Alternatively, use the `@@deprecated` decorator to add a deprecation warning to
[Read more and see examples in the documentation](https://rescript-lang.org/syntax-lookup#expression-deprecated-decorator).|};
] );
( "doesNotRaise",
None,
[
{|The `@doesNotRaise` decorator is for reanalyze, a static analysis tool for ReScript that can perform exception analysis.

Expand All @@ -46,54 +51,63 @@ could potentially raise.
> Hint: Did you know you can run an interactive code analysis in your project by running the command `> ReScript: Start Code Analyzer`? Try it!|};
] );
( "genType",
None,
[
{|The @genType decorator may be used to export ReScript values and types to JavaScript, and import JavaScript values and types into ReScript. It allows seamless integration of compiled ReScript modules in existing TypeScript, Flow, or plain JavaScript codebases, without loosing type information across different type systems.

[Read more and see examples in the documentation](https://rescript-lang.org/syntax-lookup#gentype-decorator).|};
] );
( "genType.as",
Some "genType.as(\"$0\")",
[
{|The @genType decorator may be used to export ReScript values and types to JavaScript, and import JavaScript values and types into ReScript. It allows seamless integration of compiled ReScript modules in existing TypeScript, Flow, or plain JavaScript codebases, without loosing type information across different type systems.

[Read more and see examples in the documentation](https://rescript-lang.org/docs/gentype/latest/usage).|};
] );
( "genType.import",
None,
[
{|The @genType decorator may be used to export ReScript values and types to JavaScript, and import JavaScript values and types into ReScript. It allows seamless integration of compiled ReScript modules in existing TypeScript, Flow, or plain JavaScript codebases, without loosing type information across different type systems.

[Read more and see examples in the documentation](https://rescript-lang.org/docs/gentype/latest/usage).|};
] );
( "genType.opaque",
None,
[
{|The @genType decorator may be used to export ReScript values and types to JavaScript, and import JavaScript values and types into ReScript. It allows seamless integration of compiled ReScript modules in existing TypeScript, Flow, or plain JavaScript codebases, without loosing type information across different type systems.

[Read more and see examples in the documentation](https://rescript-lang.org/docs/gentype/latest/usage).|};
] );
( "get",
None,
[
{|The `@get` decorator is used to bind to a property of an object.

[Read more and see examples in the documentation](https://rescript-lang.org/syntax-lookup#get-decorator).|};
] );
( "get_index",
None,
[
{|The `@get_index` decorator is used to access a dynamic property on an object, or an index of an array.

[Read more and see examples in the documentation](https://rescript-lang.org/syntax-lookup#get-index-decorator).|};
] );
( "inline",
None,
[
{|The `@inline` decorator tells the compiler to inline its value in every place the binding is being used, rather than use a variable.

[Read more and see examples in the documentation](https://rescript-lang.org/syntax-lookup#inline-decorator).|};
] );
( "int",
None,
[
{|The `@int` decorator can be used with polymorphic variants and the @as decorator on externals to modify the compiled JavaScript to use integers for the values instead of strings.

[Read more and see examples in the documentation](https://rescript-lang.org/syntax-lookup#int-decorator).|};
] );
( "live",
None,
[
{|The `@live` decorator is for reanalyze, a static analysis tool for ReScript that can do dead code analysis.

Expand All @@ -104,31 +118,36 @@ could potentially raise.
Hint: Did you know you can run an interactive code analysis in your project by running the command `> ReScript: Start Code Analyzer`? Try it!|};
] );
( "meth",
None,
[
{|The `@meth` decorator is used to call a function on a JavaScript object, and avoid issues with currying.

[Read more and see examples in the documentation](https://rescript-lang.org/syntax-lookup#meth-decorator).|};
] );
( "module",
Some "module(\"$0\")",
[
{|The `@module` decorator is used to bind to a JavaScript module.

[Read more and see examples in the documentation](https://rescript-lang.org/syntax-lookup#module-decorator).|};
] );
( "new",
None,
[
{|
The `@new` decorator is used whenever you need to bind to a JavaScript class constructor that requires the new keword for instantiation.|

[Read more and see examples in the documentation](https://rescript-lang.org/syntax-lookup#new-decorator).|};
] );
( "obj",
None,
[
{|The `@obj` decorator is used to create functions that return JavaScript objects with properties that match the function's parameter labels.

[Read more and see examples in the documentation](https://rescript-lang.org/syntax-lookup#obj-decorator).|};
] );
( "raises",
Some "raises(\"$0\")",
[
{|The `@raises` decorator is for reanalyze, a static analysis tool for ReScript that can perform exception analysis.

Expand All @@ -139,6 +158,7 @@ Example `@raises(Exn)` or `@raises([E1, E2, E3])` for multiple exceptions.
> Hint: Did you know you can run an interactive code analysis in your project by running the command `> ReScript: Start Code Analyzer`? Try it!|};
] );
( "react.component",
None,
[
{|The `@react.component` decorator is used to annotate functions that are RescriptReact components.

Expand All @@ -149,72 +169,84 @@ Note: The `@react.component` decorator requires the react-jsx config to be set i
[Read more and see examples in the documentation](https://rescript-lang.org/syntax-lookup#react-component-decorator).|};
] );
( "return",
Some "return(${1:nullable})",
[
{|The `@return` decorator is used to control how `null` and `undefined` values are converted to option types in ReScript.

[Read more and see examples in the documentation](https://rescript-lang.org/syntax-lookup#return-decorator).|};
] );
( "scope",
Some "scope(\"$0\")",
[
{|The `@scope` decorator is used with other decorators such as `@val` and `@module` to declare a parent scope for the binding.

[Read more and see examples in the documentation](https://rescript-lang.org/syntax-lookup#scope-decorator).|};
] );
( "send",
None,
[
{|The `@send` decorator is used to bind to a method on an object or array.

[Read more and see examples in the documentation](https://rescript-lang.org/syntax-lookup#send-decorator).|};
] );
( "set",
None,
[
{|The `@set` decorator is used to set a property of an object.

[Read more and see examples in the documentation](https://rescript-lang.org/syntax-lookup#set-decorator).|};
] );
( "set_index",
None,
[
{|The `@set_index` decorator is used to set a dynamic property on an object, or an index of an array.

[Read more and see examples in the documentation](https://rescript-lang.org/syntax-lookup#set-index-decorator).|};
] );
( "string",
None,
[
{|The `@string` decorator can be used with polymorphic variants and the `@as` decorator on externals to modify the string values used for the variants in the compiled JavaScript.

[Read more and see examples in the documentation](https://rescript-lang.org/syntax-lookup#string-decorator).|};
] );
( "this",
None,
[
{|The `@this` decorator may be used to bind to an external callback function that require access to a this context.

[Read more and see examples in the documentation](https://rescript-lang.org/syntax-lookup#this-decorator).|};
] );
( "unboxed",
None,
[
{|The `@unboxed` decorator provides a way to unwrap variant constructors that have a single argument, or record objects that have a single field.

[Read more and see examples in the documentation](https://rescript-lang.org/syntax-lookup#unboxed-decorator).|};
] );
( "uncurry",
None,
[
{|The `@uncurry` decorator can be used to mark any callback argument within an external function as an uncurried function without the need for any explicit uncurried function syntax (`(.) => { ... }`).

[Read more and see examples in the documentation](https://rescript-lang.org/syntax-lookup#uncurry-decorator).|};
] );
( "unwrap",
None,
[
{|The `@unwrap` decorator may be used when binding to external functions that accept multiple types for an argument.

[Read more and see examples in the documentation](https://rescript-lang.org/syntax-lookup#unwrap-decorator).|};
] );
( "val",
None,
[
{|The `@val` decorator allows you to bind to JavaScript values that are on the global scope.

[Read more and see examples in the documentation](https://rescript-lang.org/syntax-lookup#val-decorator).|};
] );
( "variadic",
None,
[
{|The `@variadic` decorator is used to model JavaScript functions that take a variable number of arguments, where all arguments are of the same type.

Expand All @@ -225,22 +257,32 @@ Note: The `@react.component` decorator requires the react-jsx config to be set i
let toplevel =
[
( "deprecated",
Some "deprecated(\"$0\")",
[
{|The `@@deprecated` decorator is used to add a deprecation note to the file-level of a module. The compiler and editor tooling will yield a warning whenever a deprecated file module is being used.

[Read more and see examples in the documentation](https://rescript-lang.org/syntax-lookup#module-deprecated-decorator).|};
] );
( "directive",
Some "directive(\"$0\")",
[
{|The `@@directive` decorator will output that string verbatim at the very top of the generated JavaScript file, before any imports.

[Read more and see examples in the documentation](https://rescript-lang.org/syntax-lookup#directive-decorator).|};
] );
( "warning",
Some "warning(\"$0\")",
[
{|The `@@warning` decorator is used to modify the enabled compiler warnings for the current module. See here for all available warning numbers.

[Read more and see examples in the documentation](https://rescript-lang.org/syntax-lookup#module-warning-decorator).
|};
] );
( "jsxConfig",
Some "jsxConfig({$0})",
[
{|The `@@jsxConfig` decorator is used to change the config for JSX on the fly.

[Read more and see examples in the documentation](https://rescript-lang.org/docs/manual/latest/jsx#file-level-configuration).|};
] );
]
Loading