Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-native-ueno-css-modules

Package Overview
Dependencies
Maintainers
6
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-ueno-css-modules

React Native CSS Modules with variables and theme support

  • 1.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
3
increased by50%
Maintainers
6
Weekly downloads
 
Created
Source

react-native-ueno-css-modules

React Native CSS Modules with variables and theme support

yarn add react-native-ueno-css-modules

# And optional pre-processors
yarn add node-sass
yarn add stylus
yarn add less

Transformer

const upstreamTransformer = require('metro/src/reactNativeTransformer');
const uenoCssModulesTransformer = require('react-native-ueno-css-modules/transformer');

module.exports.transform = ({ src, filename, options }) => {

  if (filename.endsWith('.css') || filename.endsWith('.styl') || filename.endsWith('.scss') || filename.endsWith('.sass') || filename.endsWith('.less')) {
    return uenoCssModulesTransformer.transform({ src, filename, options });
  }

  return upstreamTransformer.transform({ src, filename, options });
};

Add themes and variables

import { setThemeVars, setVars } from 'react-native-ueno-css-modules';

setThemeVars('light', { '--background-color': 'orange' });

setVars({
  '--hairline-width': StyleSheet.hairlineWidth,
  '--mobx-value': [MobxStore, 'propertyName'],
});

Change theme

import { setTheme } from 'react-native-ueno-css-modules';

setTheme('dark');

Usage in styles

Refer to the classNames documentation

const styles = require('mystyle.css');

styles.foo;
styles({ foo: true });
styles('foo', 'bar', { baz: true });

How this works

Consider the following

// styles.css
.sample {
  text-align: left;
  font-size: var(--font-size);
  color: var(--primary-color);
}
// Component.jsx
import { setTheme, setThemeVars, setVar } from 'react-native-ueno-css-modules';

// Set two themes: dark and light
setThemeVars('light', {
  '--primary-color': '#ffffff',
});
setThemeVars('dark', {
  '--primary-color': '#000000',
});

// Set current theme
setTheme('light');

// Themes have to be allocated before requiring css files
const styles = require('styles.css');

// console.log(styles)
{
  sample: {
    textAlign: 'left',
  },
  sample__theme__light: {
    color: '#ffffff',
  },
  sample__theme__dark: {
    color: '#000000',
  },
}

// Set dynamic variable
setVar('--font-size', 16);

// console.log(styles.sample)
[ styles.sample, styles.sample__theme__light, { fontSize: 16 } ];

// Update dynamic style
setVar('--font-size', 21);

// console.log(styles.sample)
[ styles.sample, styles.sample__theme__light, { fontSize: 21 } ];

// Change theme
setTheme('dark');

// console.log(styles.sample)
[ styles.sample, styles.sample__theme__dark, { fontSize: 21 } ];

FAQs

Package last updated on 07 Mar 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc