@@ -47,9 +47,10 @@ jsi::Value HybridShadowRegistry::link(jsi::Runtime &rt, const jsi::Value &thisVa
47
47
// create unistyleData based on wrappers
48
48
for (size_t i = 0 ; i < unistyleWrappers.size (); i++) {
49
49
core::Unistyle::Shared& unistyle = unistyleWrappers[i];
50
+ core::Variants variants{};
50
51
std::shared_ptr<core::UnistyleData> unistyleData = std::make_shared<core::UnistyleData>(
51
52
unistyle,
52
- registry. getScopedVariants (),
53
+ variants, // todo pass real variants
53
54
arguments[i],
54
55
scopedTheme
55
56
);
@@ -91,22 +92,6 @@ jsi::Value HybridShadowRegistry::unlink(jsi::Runtime &rt, const jsi::Value &this
91
92
return jsi::Value::undefined ();
92
93
}
93
94
94
- jsi::Value HybridShadowRegistry::selectVariants (jsi::Runtime &rt, const jsi::Value &thisValue, const jsi::Value *args, size_t count) {
95
- helpers::assertThat (rt, count == 1 , " Unistyles: Invalid babel transform 'ShadowRegistry selectVariants' expected 1 arguments." );
96
-
97
- auto & registry = core::UnistylesRegistry::get ();
98
-
99
- if (args[0 ].isUndefined ()) {
100
- registry.setScopedVariants ({});
101
- }
102
-
103
- if (args[0 ].isObject ()) {
104
- registry.setScopedVariants (helpers::variantsToPairs (rt, args[0 ].asObject (rt)));
105
- }
106
-
107
- return jsi::Value::undefined ();
108
- }
109
-
110
95
jsi::Value HybridShadowRegistry::setScopedTheme (jsi::Runtime &rt, const jsi::Value &thisValue, const jsi::Value *args, size_t count) {
111
96
helpers::assertThat (rt, count == 1 , " Unistyles: setScopedTheme expected 1 argument." );
112
97
@@ -132,12 +117,3 @@ jsi::Value HybridShadowRegistry::getScopedTheme(jsi::Runtime &rt, const jsi::Val
132
117
? jsi::String::createFromUtf8 (rt, maybeScopedTheme.value ())
133
118
: jsi::Value::undefined ();
134
119
}
135
-
136
- jsi::Value HybridShadowRegistry::getVariants (jsi::Runtime &rt, const jsi::Value &thisValue, const jsi::Value *args, size_t count) {
137
- auto & registry = core::UnistylesRegistry::get ();
138
- auto maybeScopedVariants = registry.getScopedVariants ();
139
-
140
- return maybeScopedVariants.size () > 0
141
- ? helpers::variantsToValue (rt, maybeScopedVariants)
142
- : jsi::Value::undefined ();
143
- }
0 commit comments