Skip to content

Commit a2c57d9

Browse files
monicatangfacebook-github-bot
authored andcommitted
consolidate __relay_model_instance definitions
Summary: The `"__relay_model_instance"` field is defined in several different places in the compiler code. This diff defines it in `relay/oss/crates/docblock-shared/src/lib.rs` as the source of truth, where related fields also reside e.g. `RELAY_RESOLVER_MODEL_DIRECTIVE_NAME`. Reviewed By: alunyov Differential Revision: D51376238 fbshipit-source-id: 0b5c5481bc1500b4ebc166efcbe204722befb614
1 parent 45ed255 commit a2c57d9

File tree

3 files changed

+11
-16
lines changed

3 files changed

+11
-16
lines changed

compiler/crates/docblock-shared/src/lib.rs

+3
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@ lazy_static! {
4242
pub static ref EDGE_TO_FIELD: StringKey = "edgeTo".intern();
4343
pub static ref DEPRECATED_FIELD: StringKey = "deprecated".intern();
4444
pub static ref LIVE_FIELD: StringKey = "live".intern();
45+
// Using a longer name version for this "special" field
46+
// help us avoid potential collision with product code (__self, __instance can be used for something else)
47+
pub static ref RELAY_RESOLVER_MODEL_INSTANCE_FIELD: StringKey = "__relay_model_instance".intern();
4548
pub static ref ROOT_FRAGMENT_FIELD: StringKey = "rootFragment".intern();
4649
pub static ref OUTPUT_TYPE_FIELD: StringKey = "outputType".intern();
4750
pub static ref WEAK_FIELD: StringKey = "weak".intern();

compiler/crates/relay-docblock/src/ir.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ use docblock_shared::KEY_RESOLVER_ID_FIELD;
3030
use docblock_shared::LIVE_ARGUMENT_NAME;
3131
use docblock_shared::RELAY_RESOLVER_DIRECTIVE_NAME;
3232
use docblock_shared::RELAY_RESOLVER_MODEL_DIRECTIVE_NAME;
33+
use docblock_shared::RELAY_RESOLVER_MODEL_INSTANCE_FIELD;
3334
use docblock_shared::RELAY_RESOLVER_SOURCE_HASH;
3435
use docblock_shared::RELAY_RESOLVER_SOURCE_HASH_VALUE;
3536
use docblock_shared::RELAY_RESOLVER_WEAK_OBJECT_DIRECTIVE;
@@ -84,7 +85,6 @@ lazy_static! {
8485
static ref DEPRECATED_RESOLVER_DIRECTIVE_NAME: DirectiveName =
8586
DirectiveName("deprecated".intern());
8687
static ref DEPRECATED_REASON_ARGUMENT_NAME: ArgumentName = ArgumentName("reason".intern());
87-
static ref RESOLVER_MODEL_INSTANCE_FIELD_NAME: StringKey = "__relay_model_instance".intern();
8888
static ref MODEL_CUSTOM_SCALAR_TYPE_SUFFIX: StringKey = "Model".intern();
8989
}
9090

@@ -1518,13 +1518,13 @@ fn get_root_fragment_for_object(
15181518
project_name
15191519
.generate_name_for_object_and_field(
15201520
object.unwrap().name.item.0,
1521-
*RESOLVER_MODEL_INSTANCE_FIELD_NAME,
1521+
*RELAY_RESOLVER_MODEL_INSTANCE_FIELD,
15221522
)
15231523
.intern(),
15241524
)),
15251525
generated: true,
15261526
inject_fragment_data: Some(FragmentDataInjectionMode::Field(
1527-
*RESOLVER_MODEL_INSTANCE_FIELD_NAME,
1527+
*RELAY_RESOLVER_MODEL_INSTANCE_FIELD,
15281528
)),
15291529
})
15301530
} else {
@@ -1556,7 +1556,7 @@ fn generate_model_instance_field(
15561556
});
15571557

15581558
FieldDefinition {
1559-
name: string_key_as_identifier(*RESOLVER_MODEL_INSTANCE_FIELD_NAME),
1559+
name: string_key_as_identifier(*RELAY_RESOLVER_MODEL_INSTANCE_FIELD),
15601560
type_: TypeAnnotation::NonNull(Box::new(NonNullTypeAnnotation {
15611561
span,
15621562
type_: TypeAnnotation::Named(NamedTypeAnnotation {

compiler/crates/relay-transforms/src/generate_relay_resolvers_model_fragments.rs

+4-12
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ use common::NamedItem;
1111
use common::WithLocation;
1212
use docblock_shared::ResolverSourceHash;
1313
use docblock_shared::RELAY_RESOLVER_MODEL_DIRECTIVE_NAME;
14+
use docblock_shared::RELAY_RESOLVER_MODEL_INSTANCE_FIELD;
1415
use docblock_shared::RELAY_RESOLVER_SOURCE_HASH;
1516
use docblock_shared::RELAY_RESOLVER_SOURCE_HASH_VALUE;
1617
use graphql_ir::associated_data_impl;
@@ -21,19 +22,10 @@ use graphql_ir::Program;
2122
use graphql_ir::ScalarField;
2223
use graphql_ir::Selection;
2324
use intern::string_key::Intern;
24-
use intern::string_key::StringKey;
25-
use lazy_static::lazy_static;
2625
use relay_config::ProjectName;
2726
use relay_config::SchemaConfig;
2827
use schema::Schema;
2928

30-
lazy_static! {
31-
// Using a longer name version for this "special" field
32-
// help us avoid potential collision with product code (__self, __instance can be used for something else)
33-
static ref RESOLVER_MODEL_INSTANCE_FIELD_NAME: StringKey =
34-
"__relay_model_instance".intern();
35-
}
36-
3729
/// Currently, this is a wrapper of the hash of the resolver source code.
3830
/// But we can change this `ArtifactSourceKeyData` to be an
3931
/// enum and also represent the `fragment` or `operation` names.
@@ -61,19 +53,19 @@ pub fn generate_relay_resolvers_model_fragments(
6153
let object_type = program.schema.get_type(object.name.item.0).unwrap();
6254
let model_instance_field_id = program
6355
.schema
64-
.named_field(object_type, *RESOLVER_MODEL_INSTANCE_FIELD_NAME)
56+
.named_field(object_type, *RELAY_RESOLVER_MODEL_INSTANCE_FIELD)
6557
.unwrap_or_else(|| {
6658
panic!(
6759
"Objects with directive @{} expected to have field `{}`.",
68-
*RELAY_RESOLVER_MODEL_DIRECTIVE_NAME, *RESOLVER_MODEL_INSTANCE_FIELD_NAME
60+
*RELAY_RESOLVER_MODEL_DIRECTIVE_NAME, *RELAY_RESOLVER_MODEL_INSTANCE_FIELD
6961
)
7062
});
7163

7264
let model_fragment_name = FragmentDefinitionName(
7365
project_name
7466
.generate_name_for_object_and_field(
7567
object.name.item.0,
76-
*RESOLVER_MODEL_INSTANCE_FIELD_NAME,
68+
*RELAY_RESOLVER_MODEL_INSTANCE_FIELD,
7769
)
7870
.intern(),
7971
);

0 commit comments

Comments
 (0)