progress.js 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
  2. var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
  3. if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
  4. else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
  5. return c > 3 && r && Object.defineProperty(target, key, r), r;
  6. };
  7. import { SuperComponent, wxComponent } from '../common/src/index';
  8. import config from '../common/config';
  9. import props from './props';
  10. import { getBackgroundColor } from './utils';
  11. import { unitConvert, getRect } from '../common/utils';
  12. const { prefix } = config;
  13. const name = `${prefix}-progress`;
  14. let Progress = class Progress extends SuperComponent {
  15. constructor() {
  16. super(...arguments);
  17. this.externalClasses = [`${prefix}-class`, `${prefix}-class-bar`, `${prefix}-class-label`];
  18. this.options = {
  19. multipleSlots: true,
  20. };
  21. this.properties = props;
  22. this.data = {
  23. prefix,
  24. classPrefix: name,
  25. colorBar: '',
  26. heightBar: '',
  27. computedStatus: '',
  28. computedProgress: 0,
  29. };
  30. this.observers = {
  31. percentage(percentage) {
  32. percentage = Math.max(0, Math.min(percentage, 100));
  33. this.setData({
  34. computedStatus: percentage === 100 ? 'success' : '',
  35. computedProgress: percentage,
  36. });
  37. },
  38. color(color) {
  39. this.setData({
  40. colorBar: getBackgroundColor(color),
  41. colorCircle: typeof color === 'object' ? '' : color,
  42. });
  43. },
  44. strokeWidth(strokeWidth) {
  45. if (!strokeWidth) {
  46. return '';
  47. }
  48. this.setData({
  49. heightBar: unitConvert(strokeWidth),
  50. });
  51. },
  52. theme(theme) {
  53. if (theme === 'circle') {
  54. this.getInnerDiameter();
  55. }
  56. },
  57. trackColor(trackColor) {
  58. this.setData({
  59. bgColorBar: trackColor,
  60. });
  61. },
  62. };
  63. this.methods = {
  64. getInnerDiameter() {
  65. const { strokeWidth } = this.properties;
  66. const wrapID = `.${name}__canvas--circle`;
  67. if (strokeWidth) {
  68. getRect(this, wrapID).then((wrapRect) => {
  69. this.setData({
  70. innerDiameter: wrapRect.width - unitConvert(strokeWidth) * 2,
  71. });
  72. });
  73. }
  74. },
  75. };
  76. }
  77. };
  78. Progress = __decorate([
  79. wxComponent()
  80. ], Progress);
  81. export default Progress;