vue3-makestyles

Allows you to write CSS in the form of writing js object, Applicable to vue3


Keywords
vue, vue3, stylis, css, css-in-js, vue-css-in-js, styled, styled-components, vue-styled-components
License
MIT
Install
npm install vue3-makestyles@1.2.7

Documentation

vue3-makestyles

Allows you to write CSS in the form of writing js object.
The api implementation draws on mui,Some tool functions are borrowed from vue3-styled-components.
Reading this document will help you use makeStyles. The following examples use jsx encoding.

English 中文文档

Install

$ npm install --save vue3-makestyles
$ yarn add vue3-makestyles

Usage

import makeStyles from "vue3-makestyles"

const useStyles = makeStyles({
  container: {
    width: 200,
    height: 200,
    backgroundColor: "red"
  }
})

// ...
export default defineComponent({
  setup() {
    const classes = useStyles()

    return () => <div class={classes.container}>vue3-makeStyles</div>
  }
})

You can write makeStyles like you would normally write less/scss

// ...

const useStyles = makeStyles({
  container: {
    width: 200,
    height: 200,
    "&.active": {
      backgroundColor: 'red',
      "& .children": {
        fontSize: 16,
        color: 'blue',
        "&:hover": {
          color: 'black'
        }
      }
    },
  }
})

// ...

Using state in components:

// ...

const useStyles = makeStyles((theme, props) => ({
  padding: theme.spacing(2),
  backgroundColor: props?.bgColor
  // ...
}))

export default defineComponent({
  setup(props) {
    const classes = useStyles(props)

    // ...
  }
})

Notice: The value passed to useStyles needs to be responsive, so that the CSS styles can be updated according to your state

Media Query

Supports media query hook functions, allowing you to write CSS code for different devices in makeStyles

// ...

const useStyles = makeStyles((theme) => ({
  container: {
    width: 200,
    height: 200,
    backgroundColor: "red",
    [theme.breakpoints.up('md')]: {
      width: 400,
      height: 400,
      backgroundColor: "blue"
    }
  }
}))

// ...

There are three methods for breakpoints: up, between, down
Enter the corresponding rule breakpoints for matching, xs, sm, md, lg, xl are default breakpoints, and the corresponding pixel difference values are as follows:

values = {
  xs: 0,
  sm: 600,
  md: 900,
  lg: 1200,
  xl: 1680,
}

It's worth noting that if you choose to call the between method, then you need to pass in two breakpoint parameters, and it will return true when only between your breakpoints

If you need to set custom breakpoints, you can customize them in the theme.ts file, and then pass the configuration to ThemeProvider, so that makeStyles can read the custom configuration.

// app.tsx / app.vue
import { ThemeProvider } from "vue3-makestyles"
import theme from "./theme.ts"
// ...

export default defineComponent({
  name: "App",
  setup() {

    return () => (
      <ThemeProvider theme={theme}>
        ...
      </ThemeProvider>
    );
  },
});

makeStyles also provides hook functions that you can use when writing components.

import { useMediaQuery } from "vue3-makestyles"
// ...

export default defintComponent({
  setup() {
    const mdUp = useMediaQuery((theme) => theme.breakpoints.up('md'))

    return () => mdUp.value ? "Test useMediaQuery" : null
  }
})

makeStyles provides the Hidden component, which is used to render the wrapped node in your template

import { Hidden } from "vue3-makestyles"
// ...

export default defineComponent({
  setup() {
    return () => (
      <>
        <Hidden mdUp>
          This is the node rendered by the small screen device
        </Hidden>
        <Hidden mdDown>
          This is the node rendered by the large screen device
        </Hidden>
      </>
    )
  }
})

Customize

makeStyles allows you to customize and globally set common CSS styles.
You can create a custom configuration file in your project directory, such as theme.ts, in which you can customize some of the configurations you need.

import { createBreakpoints, createTheme } from "vue3-makestyles";

export const initialBreakpoints = {
  values: {
    xs: 0,
    sm: 600,
    md: 900,
    lg: 1200,
    xl: 1680,
  },
  unit: "px",
  step: 5,
};

const breakpoints = createBreakpoints(initialBreakpoints)

export default createTheme({
  breakpoints,
  // ...
})

Then use ThemeProvider in your project App.jsx file to inject your custom configuration dependency into the project global, and then you can use the configuration in your configuration file anywhere in your project.

If you want to use the configuration you just defined in the configuration file, makeStyles provides a hook function useTheme that allows you to get the relevant configuration in the custom configuration file.

import { useTheme } from "vue3-makestyles"
// ...

export default defintComponent({
  setup() {
    const theme = useTheme()

    // ...
  }
})

Notice: Hook functions must be executed when the component is mounted for the first time, or when the custom hook function is executed for the first time, and can only be defined in the first layer of the component or custom hook function, otherwise There will be unexpected results.

You should:

// ...

export default defineComponent({
  setup() {
    const theme = useTheme() // Correct
    const mdUp = useMediaQuery((theme) => theme.breakpoints.up('md')) // Correct
    const classes = useStyles() // Correct

    // ...
  }
})

You should not:

// ...

export default defineComponent({
  setup() {
    const handleClick = () => {
      const theme = useTheme() // Incorrect

      // ... 
    }

    return () => <button onClick={handleClick}>Test</button>
  }
})

Style Isolation

The classes generated by makeStyles are randomly generated and unique. Of course, you can also pass the current component name to the second parameter of makeStyles, then the currently created class is only used in the current component.

// ...

const useStyles = makeStyles({
  // ...
}, {
  name: 'TestComponent', // This name is customizable
  // isHashClassName: false // Whether to generate a class name with a hash value The default is true
})

You can uniformly configure your css common styles in your theme.ts file, and bind with the name you define in name in the makeStyles function

export default createTheme({
  // ...
  css: {
    TestComponent: {
      width: 200,
      height: 200,
      backgroundColor: 'red'
    }
  }
})

Notice: The styles defined here take precedence over the ones you define in the component