Blame view

src/wxcomponents/vant/wxs/bem.wxs 788 Bytes
289f85d9e   Adam   提交
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
  var array = require('./array.wxs');
  var object = require('./object.wxs');
  var PREFIX = 'van-';
  
  function join(name, mods) {
    name = PREFIX + name;
    mods = mods.map(function(mod) {
      return name + '--' + mod;
    });
    mods.unshift(name);
    return mods.join(' ');
  }
  
  function traversing(mods, conf) {
    if (!conf) {
      return;
    }
  
    if (typeof conf === 'string' || typeof conf === 'number') {
      mods.push(conf);
    } else if (array.isArray(conf)) {
      conf.forEach(function(item) {
        traversing(mods, item);
      });
    } else if (typeof conf === 'object') {
      object.keys(conf).forEach(function(key) {
        conf[key] && mods.push(key);
      });
    }
  }
  
  function bem(name, conf) {
    var mods = [];
    traversing(mods, conf);
    return join(name, mods);
  }
  
  module.exports.bem = bem;