grid.js 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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 { isObject, SuperComponent, wxComponent } from '../common/src/index';
  8. import config from '../common/config';
  9. import props from './props';
  10. const { prefix } = config;
  11. const name = `${prefix}-grid`;
  12. let Grid = class Grid extends SuperComponent {
  13. constructor() {
  14. super(...arguments);
  15. this.externalClasses = ['t-class'];
  16. this.relations = {
  17. '../grid-item/grid-item': {
  18. type: 'descendant',
  19. },
  20. };
  21. this.properties = props;
  22. this.data = {
  23. prefix,
  24. classPrefix: name,
  25. contentStyle: '',
  26. };
  27. this.observers = {
  28. 'column,hover,align'() {
  29. this.updateContentStyle();
  30. },
  31. 'gutter,border'() {
  32. this.updateContentStyle();
  33. this.doForChild((child) => child.updateStyle());
  34. },
  35. };
  36. this.lifetimes = {
  37. attached() {
  38. this.updateContentStyle();
  39. },
  40. };
  41. this.methods = {
  42. doForChild(action) {
  43. this.$children.forEach(action);
  44. },
  45. updateContentStyle() {
  46. const contentStyles = [];
  47. const marginStyle = this.getContentMargin();
  48. marginStyle && contentStyles.push(marginStyle);
  49. this.setData({
  50. contentStyle: contentStyles.join(';'),
  51. });
  52. },
  53. getContentMargin() {
  54. const { gutter } = this.properties;
  55. let { border } = this.properties;
  56. if (!border)
  57. return `margin-left:-${gutter}rpx; margin-top:-${gutter}rpx`;
  58. if (!isObject(border))
  59. border = {};
  60. const { width = 2 } = border;
  61. return `margin-left:-${width}rpx; margin-top:-${width}rpx`;
  62. },
  63. };
  64. }
  65. };
  66. Grid = __decorate([
  67. wxComponent()
  68. ], Grid);
  69. export default Grid;