Jade / Pug中更清晰的混合物

时间:2017-05-26 09:08:47

标签: javascript pug mixins

我正在寻找在Jade / Pug中显式显示mixin参数的方法。

这是一些伪代码来说明我的意思:

// Current situation
+c-button('Button label', 'overstated', 'large')

// Here we can see what the mixin expects
+c-button(btnLabel: 'Button label', btnType: 'overstated', btnSize: 'large')

这样mixin公开了“API”。这为那些不了解代码的每个内部机制的人提供了copy / pastable / modifiable代码。

(我发现这实际上是在哈巴狗的故事中实现的,这是一个pug的PHP实现 - > https://sandbox.pug.talesoft.codes/?example=named-mixin-parameters

我所追求的是清晰的混合物。只要最终结果易于使用,我不关心它是如何实现的。

另一个想法是将一个选项对象添加到mixin。

现在,我编写的这段代码根本不起作用。寻找一位Javascript专家来解释一下:)

mixin c-button({options})
    - { 
         [
           option1: true
         ]
      }
    a.c-button(href="#") #{btnLabel}

// Code does not actually work because mixins can't take objects?
+c-button({ option1: false })

1 个答案:

答案 0 :(得分:4)

您可以使用选项对象来模拟命名参数。您还可以使用Object.assign()将选项与预定义的选项对象合并,以模拟选项默认值:

mixin button (options)
  - var DEFAULT_OPTIONS = { type: 'button', variant: 'default' };
  - options = Object.assign({}, DEFAULT_OPTIONS, options || {});
  button(class='btn--' + options.variant, type=options.type)= options.label

+button({ label: 'foo' })

请参阅https://codepen.io/thomastuts/pen/JNVWYX上的工作示例。