From a50999093716d8ce6db47a47b9290395456985de Mon Sep 17 00:00:00 2001
From: taehoon
Date: Wed, 3 Apr 2019 21:13:25 -0400
Subject: add checkbox component
---
src/components/checkbox/checkbox.js | 44 +++++++++++++++++++++++++++++++++++++
1 file changed, 44 insertions(+)
create mode 100644 src/components/checkbox/checkbox.js
(limited to 'src/components/checkbox/checkbox.js')
diff --git a/src/components/checkbox/checkbox.js b/src/components/checkbox/checkbox.js
new file mode 100644
index 00000000..76e7e4f4
--- /dev/null
+++ b/src/components/checkbox/checkbox.js
@@ -0,0 +1,44 @@
+// TODO: Template-based functional component is supported in vue-loader 13.3.0+.
+// Also, somehow, props are not provided through 'context' even though they are defined.
+// Need to upgrade vue-loader
+
+import './checkbox.scss'
+
+export default {
+ functional: true,
+ name: 'Checkbox',
+ model: {
+ prop: 'checked',
+ event: 'change'
+ },
+ render (createElement, { data, children }) {
+ const { props = {}, attrs = {}, on = {}, ...rest } = data
+ const { name, checked, disabled, readonly, ...restAttrs } = attrs
+ const { change, ...restListeners } = on
+ const wrapperProps = {
+ attrs: restAttrs,
+ on: restListeners,
+ ...rest
+ }
+ const inputProps = {
+ attrs: {
+ name,
+ checked,
+ disabled,
+ readonly,
+ ...props
+ },
+ on: {}
+ }
+ if (change) {
+ inputProps.on.change = e => change(e.target.checked)
+ }
+ return (
+
+ )
+ }
+}
--
cgit v1.2.3-70-g09d2