欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Vue+ElementUI實現(xiàn)動態(tài)更換任意主題色(動態(tài)換膚)的全過程

 更新時間:2023年02月13日 10:00:41   作者:趣果有間  
眾所周知Element-UI有換膚功能,下面這篇文章主要給大家介紹了關于Vue+ElementUI實現(xiàn)動態(tài)更換任意主題色(動態(tài)換膚)的相關資料,文中通過實例代碼介紹的非常詳細,需要的朋友可以參考下

前言

最近基于 ElementUI 的項目上需要實現(xiàn)動態(tài)換膚的功能,這里提供兩種方式:

  • vue-element-admin 官方實現(xiàn)的方式
  • webpack-theme-color-replacer 插件的實現(xiàn)方式

vue-element-admin 官方實現(xiàn)的方式

簡單說明一下它的原理: element-ui 2.0 版本之后所有的樣式都是基于 SCSS 編寫的,所有的顏色都是基于幾個基礎顏色變量來設置的,所以就不難實現(xiàn)動態(tài)換膚了,只要找到那幾個顏色變量修改它就可以了。 首先我們需要拿到通過 package.json 拿到 element-ui 的版本號,根據(jù)該版本號去請求相應的樣式。拿到樣式之后將樣色,通過正則匹配和替換,將顏色變量替換成你需要的,之后動態(tài)添加 style 標簽來覆蓋原有的 css 樣式。

1、這里無腦參考 vue-element-admin 的源碼,首先現(xiàn)在 styles 文件夾下創(chuàng)建一個名為 element-variables.scss 文件,并在 main.js 中引入該文件。

/* src/styles/element-variables.scss */

/* 改變主題色變量 */
$--color-primary: #256DCB;
$--color-success: #7AC800;
$--color-danger: #EC4242;
$--color-info: #999999;

/* 改變 icon 字體路徑變量,必需 */
$--font-path: '~element-ui/lib/theme-chalk/fonts';

@import "~element-ui/packages/theme-chalk/src/index";

/* 如遇到導出的變量值為 undefined 則本文件名需要改成 element-variables.module.scss */
:export {
  theme: $--color-primary
}
/* main.js */

import Vue from 'vue'
import Element from 'element-ui'
import './element-variables.scss'
 
Vue.use(Element)

2、通過以上方式已經能夠實現(xiàn) ElementUI 主題替換了,但是想要做到自定義顏色還是遠遠不夠的,考慮到主題色在整個項目中都有應用,所以我們將它存到 Vuex 中,接下來要做的就是在 store/modules 下新建 settings.js 。

/* src/store/modules/settings.js */

import variables from '@/styles/element-variables.module.scss'
import * as Types from '../mutation-types'

const state = {
  theme: variables.theme
}

const mutations = {
  CHANGE_SETTING: (state, { key, value }) => {
    localStorage.setItem('theme', value) // 緩存起來,刷新的時候重新取用
    // eslint-disable-next-line no-prototype-builtins
    if (state.hasOwnProperty(key)) {
      state[key] = value
    }
  }
}

const actions = {
  changeSetting ({ commit }, data) {
    commit('CHANGE_SETTING', data)
  }
}

export default {
  namespaced: true,
  state,
  mutations,
  actions
}

3、這一步也是無腦 copy vue-element-admin 的源碼,新建一個名為 ThemePicker 的組件,代碼如下:

/* src/components/ThemePicker/index.vue */

<template>
  <el-color-picker
    v-model="theme"
    :predefine="['#256DCB', '#409EFF', '#1890ff', '#304156','#212121','#11a983', '#13c2c2', '#6959CD', '#f5222d', '#F80', ]"
    class="theme-picker"
    popper-class="theme-picker-dropdown"
  />
</template>

<script>

import { chalkCss } from './chalk.js' // 就是 getCSSString 接口中獲取的 css,這里我將版本號固定并且把 css 緩存到本地,記得處理 \ 轉義問題

// const version = require('element-ui/package.json').version // element-ui version from node_modules
const ORIGINAL_THEME = '#409EFF' // default color  chalk.js 中的 primary color,根據(jù)此顏色計算出一系列顏色進行正則替換

export default {
  name: 'ThemePicker',
  data () {
    return {
      chalk: '', // content of theme-chalk css
      theme: ''
    }
  },
  computed: {
    defaultTheme () {
      return this.$store.state.settings.theme
    }
  },
  watch: {
    defaultTheme: {
      handler: function (val, oldVal) {
        this.theme = val
      },
      immediate: true
    },
    async theme (val) {
      const oldVal = this.chalk ? this.theme : ORIGINAL_THEME
      if (typeof val !== 'string') return
      const themeCluster = this.getThemeCluster(val.replace('#', ''))
      const originalCluster = this.getThemeCluster(oldVal.replace('#', ''))
      console.log(themeCluster, originalCluster)

      const $message = this.$message({
        message: this.$t('theme_compiling'),
        customClass: 'theme-message',
        type: 'success',
        duration: 0,
        iconClass: 'el-icon-loading'
      })

      const getHandler = (variable, id) => {
        return () => {
          const originalCluster = this.getThemeCluster(ORIGINAL_THEME.replace('#', ''))
          const newStyle = this.updateStyle(this[variable], originalCluster, themeCluster)

          let styleTag = document.getElementById(id)
          if (!styleTag) {
            styleTag = document.createElement('style')
            styleTag.setAttribute('id', id)
            document.head.appendChild(styleTag)
          }
          styleTag.innerText = newStyle
        }
      }

      if (!this.chalk) {
        // const url = `https://unpkg.com/element-ui@${version}/lib/theme-chalk/index.css`
        // await this.getCSSString(url, 'chalk')
        this.chalk = chalkCss.replace(/@font-face{[^}]+}/, '') // 本地緩存,如果需要獲取線上的就用上面那種方式,優(yōu)點:切換無延遲,缺點:需要手動維護 css string
      }

      const chalkHandler = getHandler('chalk', 'chalk-style')

      chalkHandler()

      const styles = [].slice.call(document.querySelectorAll('style'))
        .filter(style => {
          const text = style.innerText
          return new RegExp(oldVal, 'i').test(text) && !/Chalk Variables/.test(text)
        })
      styles.forEach(style => {
        const { innerText } = style
        if (typeof innerText !== 'string') return
        style.innerText = this.updateStyle(innerText, originalCluster, themeCluster)
      })

      this.$emit('change', val)

      $message.close()
    }
  },

  methods: {
    updateStyle (style, oldCluster, newCluster) {
      let newStyle = style
      oldCluster.forEach((color, index) => {
        newStyle = newStyle.replace(new RegExp(color, 'ig'), newCluster[index])
      })
      return newStyle
    },

    getCSSString (url, variable) {
      return new Promise(resolve => {
        const xhr = new XMLHttpRequest()
        xhr.onreadystatechange = () => {
          if (xhr.readyState === 4 && xhr.status === 200) {
            this[variable] = xhr.responseText.replace(/@font-face{[^}]+}/, '')
            resolve()
          }
        }
        xhr.open('GET', url)
        xhr.send()
      })
    },

    getThemeCluster (theme) {
      const tintColor = (color, tint) => {
        let red = parseInt(color.slice(0, 2), 16)
        let green = parseInt(color.slice(2, 4), 16)
        let blue = parseInt(color.slice(4, 6), 16)

        if (tint === 0) { // when primary color is in its rgb space
          return [red, green, blue].join(',')
        } else {
          red += Math.round(tint * (255 - red))
          green += Math.round(tint * (255 - green))
          blue += Math.round(tint * (255 - blue))

          red = red.toString(16)
          green = green.toString(16)
          blue = blue.toString(16)

          return `#${red}${green}${blue}`
        }
      }

      const shadeColor = (color, shade) => {
        let red = parseInt(color.slice(0, 2), 16)
        let green = parseInt(color.slice(2, 4), 16)
        let blue = parseInt(color.slice(4, 6), 16)

        red = Math.round((1 - shade) * red)
        green = Math.round((1 - shade) * green)
        blue = Math.round((1 - shade) * blue)

        red = red.toString(16)
        green = green.toString(16)
        blue = blue.toString(16)

        return `#${red}${green}${blue}`
      }

      const clusters = [theme]
      for (let i = 0; i <= 9; i++) {
        clusters.push(tintColor(theme, Number((i / 10).toFixed(2))))
      }
      clusters.push(shadeColor(theme, 0.1))
      return clusters
    }
  }
}
</script>

<style>
.theme-message,
.theme-picker-dropdown {
  z-index: 99999 !important;
}

.theme-picker .el-color-picker__trigger {
  height: 26px !important;
  width: 26px !important;
  padding: 2px;
}

.theme-picker-dropdown .el-color-dropdown__link-btn {
  display: none;
}
</style>

4、最后在頁面中使用 ThemePicker 組件,我這里是放到 header 里。

// template
<theme-picker @change="themeChange" />
// js
import ThemePicker from '@/components/ThemePicker'
// methods
themeChange (val) {
  this.$store.dispatch('settings/changeSetting', {
    key: 'theme',
    value: val
  })
}

到這里為止就已經實現(xiàn)了全部動態(tài)換膚的功能,不過還有一個問題就是刷新頁面之后,主題色會重置,所以在切換的時候需要將主題色緩存到 localStore 中去,為了在任意頁面刷新都可以加載主題色,我選擇在 App.vue 頁面也增加一個 ThemePicker 組件,具體實現(xiàn)見如下代碼:

/* src/App.vue */

<template>
  <div id="app" :style="{'--color': defaultTheme}">
    <theme-picker @change="themeChange" v-show="false" />
    <router-view />
  </div>
</template>

<script>
import ThemePicker from '@/components/ThemePicker'

export default {
  name: 'App',
  components: { ThemePicker },
  computed: {
    defaultTheme () {
      return this.$store.state.settings.theme
    }
  },
  mounted () {
    if (localStorage.getItem('theme')) {
      this.themeChange(localStorage.getItem('theme'))
    }
  },
  methods: {
    themeChange (val) {
      this.$store.dispatch('settings/changeSetting', {
        key: 'theme',
        value: val
      })
    }
  }
}
</script>

另外一些自己定義的樣式如果需要用到主題色可以用 css 變量,但需要預先在 root 上定義好變量,我這里使用 vue 雙向綁定將主題色綁定到 :style="{'--color': defaultTheme}" (具體用法見上面代碼),這樣就能在任何組件下使用該主題色了(注意:該方法 IE 瀏覽器不支持),代碼如下:

<div class="box"></div>
.box {
  width: 100px;
  height: 100px;
  background-color: var(--color);
}

提示:

  1. 如果 scss 文件導出的是空對象,則需要將 scss 文件名稱改成 xxx.module.scss 的形式,CSS Modules。
  2. 如果需要緩存 chalkCss 的,css string 中的 \ 會被轉義,記得手動改成 \\,不然 ElementUI 自帶的 icon 展示不出來。

參考文檔:

webpack-theme-color-replacer 插件的實現(xiàn)方式

此方式親測可用,本質上也是顏色的替換,但是跟 ElementUI 稍稍有點兼容性問題,具體實現(xiàn)方式見 webpack-theme-color-replacer 的使用,我這里就不做過多贅述了。

總結

到此這篇關于Vue+ElementUI實現(xiàn)動態(tài)更換任意主題色(動態(tài)換膚)的文章就介紹到這了,更多相關Vue ElementUI動態(tài)更換任意主題色內容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關文章希望大家以后多多支持腳本之家!

相關文章

最新評論