theme.js 586 字节
Newer Older
D
DCloud_LXH 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
import { normallizeStyles } from 'uni-shared'
import { getTheme } from '../service/api/base/get-browser-info'
import {
  ON_THEME_CHANGE
} from 'uni-helpers/constants'

export function onThemeChange (callback = () => { }) {
  if (__uniConfig.darkmode) {
    UniServiceJSBridge.on('api.' + ON_THEME_CHANGE, callback)
  }
}

export function parseTheme (pageStyle) {
  let parsedStyle = {}
  if (__uniConfig.darkmode) {
    const theme = getTheme()
    parsedStyle = normallizeStyles(pageStyle, __uniConfig.themeConfig, theme)
  }
  return __uniConfig.darkmode ? parsedStyle : pageStyle
}