diff --git a/build.dev.js b/build.dev.js
index 8b6a3a1..45ad9db 100644
--- a/build.dev.js
+++ b/build.dev.js
@@ -64,7 +64,7 @@ function mkWCFile({ style, html, js }) {
.slice(1, -1)
.map(it => {
var tmp = it.split(':')
- return tmp[0].trim()
+ return tmp[0].trim().replace(/^['"]|['"]$/g, '')
})
return `
diff --git a/build.prod.js b/build.prod.js
index 4164ddf..5baab49 100644
--- a/build.prod.js
+++ b/build.prod.js
@@ -78,7 +78,7 @@ function mkWCFile({ style, html, js }) {
.slice(1, -1)
.map(it => {
var tmp = it.split(':')
- return tmp[0].trim()
+ return tmp[0].trim().replace(/^['"]|['"]$/g, '')
})
return `
diff --git a/src/form/index.js b/src/form/index.js
index b2b1300..92449e1 100644
--- a/src/form/index.js
+++ b/src/form/index.js
@@ -8,4 +8,3 @@ import './checkbox'
import './switch'
import './select'
import './star'
-import './progress'
diff --git a/src/form/progress.wc b/src/form/progress.wc
deleted file mode 100644
index 1d79647..0000000
--- a/src/form/progress.wc
+++ /dev/null
@@ -1,143 +0,0 @@
-
-
-
-
-
-
-
diff --git a/src/form/switch.wc b/src/form/switch.wc
index a8bdcad..9356093 100644
--- a/src/form/switch.wc
+++ b/src/form/switch.wc
@@ -193,6 +193,7 @@ export default class Switch {
break
case 'active-text':
case 'inactive-text':
+ console.log('------------->>>')
this.props[name] = val + ''
break
}
diff --git a/src/progress/canvas.js b/src/progress/canvas.js
new file mode 100644
index 0000000..1ec795f
--- /dev/null
+++ b/src/progress/canvas.js
@@ -0,0 +1,142 @@
+/**
+ *
+ * @author yutent
+ * @date 2021/03/08 14:25:13
+ */
+
+export function drawLine(el, size, opt) {
+ var ctx = el.getContext('2d')
+ var { width, height } = size
+ var {
+ colors,
+ value,
+ 'show-text': showText,
+ 'default-color': bg,
+ 'line-size': line,
+ 'font-size': font
+ } = opt
+ var color = colors[0]
+ var half
+
+ if (colors.length > 1) {
+ let idx = Math.floor(value / (100 / colors.length))
+ if (idx === colors.length) {
+ idx--
+ }
+ color = colors[idx]
+ }
+
+ //
+ line = line || 10
+ font = font || 10
+ half = line / 2
+
+ el.width = width
+ el.height = height
+
+ ctx.clearRect(0, 0, width, height)
+
+ ctx.strokeStyle = bg
+ ctx.lineWidth = line
+ ctx.lineCap = 'round'
+
+ ctx.beginPath()
+ ctx.moveTo(half, half)
+ ctx.lineTo(width - half, half)
+ ctx.stroke()
+ ctx.closePath()
+
+ if (value > 0) {
+ ctx.strokeStyle = color
+ ctx.beginPath()
+ ctx.moveTo(half, half)
+ ctx.lineTo(((width - half) * value) / 100, half)
+ ctx.stroke()
+ ctx.closePath()
+
+ if (showText) {
+ ctx.fillStyle = '#fff'
+ ctx.font = `bold ${font}px Arial`
+ ctx.textBaseline = 'middle'
+ ctx.textAlign = 'right'
+ ctx.fillText(
+ (value < 100 ? value.toFixed(1) : 100) + '%',
+ ((width - half) * value) / 100,
+ half
+ )
+ }
+ }
+}
+
+export function drawCircle(el, size, opt, start = -90, end = 270) {
+ var ctx = el.getContext('2d')
+ var { width } = size
+ var {
+ colors,
+ value,
+ 'show-text': showText,
+ 'default-color': bg,
+ 'line-size': line,
+ 'font-size': font
+ } = opt
+ var color = colors[0]
+ var half = width / 2
+
+ if (width === 0) {
+ return
+ }
+
+ if (colors.length > 1) {
+ let idx = Math.floor(value / (100 / colors.length))
+ if (idx === colors.length) {
+ idx--
+ }
+ color = colors[idx]
+ }
+
+ //
+ line = line || 10
+ font = font || 32
+ el.width = width
+ el.height = width
+
+ ctx.clearRect(0, 0, width, width)
+
+ ctx.strokeStyle = bg
+ ctx.lineWidth = line
+ ctx.lineCap = 'round'
+
+ ctx.beginPath()
+ ctx.arc(
+ half,
+ half,
+ half - line / 2,
+ (Math.PI / 180) * start,
+ (Math.PI / 180) * end,
+ false
+ ) //整圆
+ ctx.stroke()
+ ctx.closePath()
+
+ if (value > 0) {
+ ctx.strokeStyle = color
+ ctx.beginPath()
+ ctx.arc(
+ half,
+ half,
+ half - line / 2,
+ (Math.PI / 180) * start,
+ (Math.PI / 180) * (((end - start) * value) / 100 + start),
+ false
+ ) //整圆
+ ctx.stroke()
+ ctx.closePath()
+ }
+ if (showText) {
+ ctx.fillStyle = color
+ ctx.font = `${font}px Arial`
+ ctx.textBaseline = 'middle'
+ ctx.textAlign = 'center'
+ ctx.fillText((value < 100 ? value.toFixed(1) : 100) + '%', half, half)
+ }
+}
diff --git a/src/progress/index.wc b/src/progress/index.wc
new file mode 100644
index 0000000..eb88431
--- /dev/null
+++ b/src/progress/index.wc
@@ -0,0 +1,127 @@
+
+
+
+
+
+
+