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

feat: stateless variants #462

Merged
merged 29 commits into from
Jan 15, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
ee7d92d
feat: redesign variants
jpudysz Dec 20, 2024
0b6b0f5
Merge branch 'main' into feature/variants
jpudysz Dec 20, 2024
8d49b77
feat: remove Variants deprecated logic
jpudysz Dec 20, 2024
d32a535
chore: allow and filter multiple expressions
jpudysz Dec 20, 2024
fcf2354
chore: add nullopt for no variants
jpudysz Dec 20, 2024
f8a137e
feat: resolve unistyle not bound
jpudysz Dec 21, 2024
b3b10c4
feat: copy variants to stylesheet
Brentlok Dec 22, 2024
90b2de8
feat: restore babel style arrays
jpudysz Dec 22, 2024
90a0b53
chore: add arguments to secrets, generate hash
jpudysz Jan 13, 2025
8ab8f15
feat: remove arrays from babel
jpudysz Jan 13, 2025
58eb4eb
feat: remove arrays from babel
jpudysz Jan 13, 2025
ca416d4
feat: allow user to specify own imports for babel plugin
jpudysz Jan 13, 2025
2e01a5a
feat: accept any styles in shadow registry
jpudysz Jan 13, 2025
738b4f3
feat: allow for passing nested array
jpudysz Jan 13, 2025
4086beb
chore: upgrade expo example
jpudysz Jan 13, 2025
d40e26d
feat: remove unistyle not bound crash, replace it with warning
jpudysz Jan 13, 2025
d492819
Merge branch 'main' into feature/variants
Brentlok Jan 14, 2025
c3ec7aa
feat: redesign web variants
Brentlok Jan 14, 2025
9f282e5
fix: add fallback getClassName for native
Brentlok Jan 14, 2025
548df50
feat: deletect dependencies withUnistyles
jpudysz Jan 14, 2025
dfa2a31
feat: pass variants to shadow registry
jpudysz Jan 14, 2025
91ced41
fix: native components unmount
Brentlok Jan 15, 2025
089b7d6
feat: align withUnistyles
jpudysz Jan 15, 2025
0ead677
feat: regression useVariants
jpudysz Jan 15, 2025
ea58b22
chore: make unistyle properties hidden on the web
Brentlok Jan 15, 2025
043fb9e
fix: unmount native elements
Brentlok Jan 15, 2025
46ba6c6
feat: regression for unistyles not bound warning
jpudysz Jan 15, 2025
19f914f
fix: improve multiple style warnings
Brentlok Jan 15, 2025
7706539
Merge branch 'feature/variants' of github.com:jpudysz/react-native-un…
Brentlok Jan 15, 2025
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
3 changes: 2 additions & 1 deletion components/native/ActivityIndicator/package.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"main": "../../../lib/commonjs/components/native/ActivityIndicator.js",
"module": "../../../lib/module/components/native/ActivityIndicator.js"
"module": "../../../lib/module/components/native/ActivityIndicator.js",
"react-native": "../../../src/components/native/ActivityIndicator.tsx"
}
3 changes: 2 additions & 1 deletion components/native/FlatList/package.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"main": "../../../lib/commonjs/components/native/FlatList.js",
"module": "../../../lib/module/components/native/FlatList.js"
"module": "../../../lib/module/components/native/FlatList.js",
"react-native": "../../../src/components/native/FlatList.tsx"
}
3 changes: 2 additions & 1 deletion components/native/Image/package.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"main": "../../../lib/commonjs/components/native/Image.js",
"module": "../../../lib/module/components/native/Image.js"
"module": "../../../lib/module/components/native/Image.js",
"react-native": "../../../src/components/native/Image.tsx"
}
3 changes: 2 additions & 1 deletion components/native/ImageBackground/package.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"main": "../../../lib/commonjs/components/native/ImageBackground.js",
"module": "../../../lib/module/components/native/ImageBackground.js"
"module": "../../../lib/module/components/native/ImageBackground.js",
"react-native": "../../../src/components/native/ImageBackground.native.tsx"
}
3 changes: 2 additions & 1 deletion components/native/KeyboardAvoidingView/package.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"main": "../../../lib/commonjs/components/native/KeyboardAvoidingView.js",
"module": "../../../lib/module/components/native/KeyboardAvoidingView.js"
"module": "../../../lib/module/components/native/KeyboardAvoidingView.js",
"react-native": "../../../src/components/native/KeyboardAvoidingView.tsx"
}
2 changes: 1 addition & 1 deletion components/native/Pressable/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"main": "../../../lib/commonjs/components/native/Pressable.js",
"module": "../../../lib/module/components/native/Pressable.js",
"react-native": "../../../lib/commonjs/components/native/Pressable.native.js"
"react-native": "../../../src/components/native/Pressable.native.tsx"
}
3 changes: 2 additions & 1 deletion components/native/RefreshControl/package.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"main": "../../../lib/commonjs/components/native/RefreshControl.js",
"module": "../../../lib/module/components/native/RefreshControl.js"
"module": "../../../lib/module/components/native/RefreshControl.js",
"react-native": "../../../src/components/native/RefreshControl.tsx"
}
3 changes: 2 additions & 1 deletion components/native/ScrollView/package.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"main": "../../../lib/commonjs/components/native/ScrollView.js",
"module": "../../../lib/module/components/native/ScrollView.js"
"module": "../../../lib/module/components/native/ScrollView.js",
"react-native": "../../../src/components/native/ScrollView.tsx"
}
3 changes: 2 additions & 1 deletion components/native/SectionList/package.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"main": "../../../lib/commonjs/components/native/SectionList.js",
"module": "../../../lib/module/components/native/SectionList.js"
"module": "../../../lib/module/components/native/SectionList.js",
"react-native": "../../../src/components/native/SectionList.tsx"
}
3 changes: 2 additions & 1 deletion components/native/Switch/package.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"main": "../../../lib/commonjs/components/native/Switch.js",
"module": "../../../lib/module/components/native/Switch.js"
"module": "../../../lib/module/components/native/Switch.js",
"react-native": "../../../src/components/native/Switch.tsx"
}
3 changes: 2 additions & 1 deletion components/native/Text/package.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"main": "../../../lib/commonjs/components/native/Text.js",
"module": "../../../lib/module/components/native/Text.js"
"module": "../../../lib/module/components/native/Text.js",
"react-native": "../../../src/components/native/Text.tsx"
}
3 changes: 2 additions & 1 deletion components/native/TextInput/package.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"main": "../../../lib/commonjs/components/native/TextInput.js",
"module": "../../../lib/module/components/native/TextInput.js"
"module": "../../../lib/module/components/native/TextInput.js",
"react-native": "../../../src/components/native/TextInput.tsx"
}
3 changes: 2 additions & 1 deletion components/native/TouchableHighlight/package.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"main": "../../../lib/commonjs/components/native/TouchableHighlight.js",
"module": "../../../lib/module/components/native/TouchableHighlight.js"
"module": "../../../lib/module/components/native/TouchableHighlight.js",
"react-native": "../../../src/components/native/TouchableHighlight.tsx"
}
3 changes: 2 additions & 1 deletion components/native/TouchableOpacity/package.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"main": "../../../lib/commonjs/components/native/TouchableOpacity.js",
"module": "../../../lib/module/components/native/TouchableOpacity.js"
"module": "../../../lib/module/components/native/TouchableOpacity.js",
"react-native": "../../../src/components/native/TouchableOpacity.tsx"
}
3 changes: 2 additions & 1 deletion components/native/View/package.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"main": "../../../lib/commonjs/components/native/View.js",
"module": "../../../lib/module/components/native/View.js"
"module": "../../../lib/module/components/native/View.js",
"react-native": "../../../src/components/native/View.tsx"
}
3 changes: 2 additions & 1 deletion components/native/VirtualizedList/package.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"main": "../../../lib/commonjs/components/native/VirtualizedList.js",
"module": "../../../lib/module/components/native/VirtualizedList.js"
"module": "../../../lib/module/components/native/VirtualizedList.js",
"react-native": "../../../src/components/native/VirtualizedList.tsx"
}
8 changes: 4 additions & 4 deletions cxx/common/Constants.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@

namespace margelo::nitro::unistyles::helpers {

static const std::string UNISTYLES_ID = "__unid";
static const std::string STYLESHEET_ID = "__stylesheetID";
static const std::string UNISTYLE_ID = "__unistyleID";
static const std::string ADD_VARIANTS_FN = "useVariants";
static const std::string STYLE_DEPENDENCIES = "uni__dependencies";
static const std::string STYLE_VARIANTS = "uni__variants";
static const std::string STYLESHEET_VARIANTS = "__stylesheetVariants";
static const std::string WEB_STYLE_KEY = "_web";
static const std::string EXOTIC_STYLE_KEY = "_exotic";
static const std::string NAME_STYLE_KEY = "__unistyles_name";
static const std::string SECRETS = "__uni__secrets";
static const std::string ARGUMENTS = "__uni__args";
static const std::string GET_STYLES = "uni__getStyles";

}
2 changes: 1 addition & 1 deletion cxx/common/Helpers.h
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ inline jsi::Object variantsToValue(jsi::Runtime& rt, Variants& variants) {
return rawVariants;
}

inline std::vector<folly::dynamic> parseDynamicFunctionArguments(jsi::Runtime& rt, jsi::Array&& arguments) {
inline std::vector<folly::dynamic> parseDynamicFunctionArguments(jsi::Runtime& rt, jsi::Array& arguments) {
std::vector<folly::dynamic> parsedArgument{};
size_t count = arguments.size(rt);

Expand Down
30 changes: 30 additions & 0 deletions cxx/core/HashGenerator.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
#include <string>
#include <sstream>
#include <iomanip>
#include <atomic>
#include <iostream>
#include <functional>

namespace margelo::nitro::unistyles::helpers {


struct HashGenerator {
static std::atomic<unsigned int> count;

static std::string generateHash(const std::string& input) {
std::hash<std::string> stringHasher;
uint64_t inputHash = stringHasher(input);

unsigned int counterValue = count.fetch_add(1, std::memory_order_relaxed);
uint64_t combinedHash = inputHash ^ (static_cast<uint64_t>(counterValue) << 32);

std::stringstream ss;
ss << std::hex << std::setfill('0') << std::setw(8) << (combinedHash & 0xFFFFFFFF);

return "unistyles-" + ss.str();
}
};

std::atomic<unsigned int> HashGenerator::count(0);

}
73 changes: 0 additions & 73 deletions cxx/core/HostStyle.cpp

This file was deleted.

34 changes: 0 additions & 34 deletions cxx/core/HostStyle.h

This file was deleted.

73 changes: 73 additions & 0 deletions cxx/core/HostUnistyle.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
#include "HostUnistyle.h"

using namespace margelo::nitro::unistyles::core;
using namespace facebook;

std::vector<jsi::PropNameID> HostUnistyle::getPropertyNames(jsi::Runtime& rt) {
auto propertyNames = std::vector<jsi::PropNameID> {};

propertyNames.reserve(8);

for (const auto& pair : this->_stylesheet->unistyles) {
propertyNames.emplace_back(jsi::PropNameID::forUtf8(rt, pair.first));
}

propertyNames.emplace_back(jsi::PropNameID::forUtf8(rt, helpers::ADD_VARIANTS_FN.c_str()));

return propertyNames;
}

jsi::Value HostUnistyle::get(jsi::Runtime& rt, const jsi::PropNameID& propNameId) {
auto propertyName = propNameId.utf8(rt);

if (propertyName == helpers::STYLESHEET_ID.c_str()) {
return jsi::Value(this->_stylesheet->tag);
}

if (propertyName == helpers::STYLESHEET_VARIANTS.c_str()) {
return helpers::variantsToValue(rt, this->_variants);
}

if (propertyName == helpers::ADD_VARIANTS_FN.c_str()) {
return this->createAddVariantsProxyFunction(rt);
}

if (!this->_stylesheet->unistyles.contains(propertyName)) {
return jsi::Value::undefined();
}

return valueFromUnistyle(rt, this->_unistylesRuntime, this->_stylesheet->unistyles[propertyName], this->_variants);
}

void HostUnistyle::set(jsi::Runtime& rt, const jsi::PropNameID& propNameId, const jsi::Value& value) {}

jsi::Function HostUnistyle::createAddVariantsProxyFunction(jsi::Runtime& rt) {
auto useVariantsFnName = jsi::PropNameID::forUtf8(rt, helpers::ADD_VARIANTS_FN);
auto parser = parser::Parser(this->_unistylesRuntime);

return jsi::Function::createFromHostFunction(rt, useVariantsFnName, 1, [this, &parser](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *arguments, size_t count){
helpers::assertThat(rt, count == 1, "Unistyles: useVariants expected to be called with one argument.");
helpers::assertThat(rt, arguments[0].isObject(), "Unistyles: useVariants expected to be called with object.");

Variants variants = helpers::variantsToPairs(rt, arguments[0].asObject(rt));

helpers::enumerateJSIObject(rt, thisVal.asObject(rt), [this, &parser, &rt, &variants](const std::string& name, jsi::Value& value){
if (name == helpers::ADD_VARIANTS_FN || !this->_stylesheet->unistyles.contains(name)) {
return;
}

auto unistyle = this->_stylesheet->unistyles[name];

if (unistyle->dependsOn(UnistyleDependency::VARIANTS)) {
parser.rebuildUnistyle(rt, unistyle, variants, std::nullopt);
}
});

this->_variants = variants;

auto style = std::make_shared<core::HostUnistyle>(this->_stylesheet, this->_unistylesRuntime, variants);
auto styleHostObject = jsi::Object::createFromHostObject(rt, style);

return styleHostObject;
});
}
27 changes: 27 additions & 0 deletions cxx/core/HostUnistyle.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
#pragma once

#include <jsi/jsi.h>
#include "Parser.h"
#include "UnistyleWrapper.h"

namespace margelo::nitro::unistyles::core {

using Variants = std::vector<std::pair<std::string, std::string>>;

struct JSI_EXPORT HostUnistyle : public jsi::HostObject {
HostUnistyle(std::shared_ptr<StyleSheet> stylesheet, std::shared_ptr<HybridUnistylesRuntime> unistylesRuntime, Variants& variants)
: _stylesheet(stylesheet), _unistylesRuntime{unistylesRuntime}, _variants{std::move(variants)} {};

std::vector<jsi::PropNameID> getPropertyNames(jsi::Runtime& rt);
jsi::Value get(jsi::Runtime& rt, const jsi::PropNameID& propNameId);
void set(jsi::Runtime& rt, const jsi::PropNameID& propNameId, const jsi::Value& value);

jsi::Function createAddVariantsProxyFunction(jsi::Runtime& rt);

private:
Variants _variants;
std::shared_ptr<StyleSheet> _stylesheet;
std::shared_ptr<HybridUnistylesRuntime> _unistylesRuntime;
};

}
Loading
Loading