king
2020-07-14 f36141f3075edf9d41928d64f759ad6bd1b1ac60
src/mob/controller/index.jsx
@@ -65,61 +65,60 @@
    return !is(fromJS(this.state), fromJS(nextState))
  }
  updateStyle = (style) => {
    const { card } = this.state
    this.props.updateStyle({componentId: card.componentId, classId: card.classId, uuid: card.uuid, style})
  }
  /**
   * @description 字体大小切换,超出范围忽略
   */
  changeFontSize = (val) => {
    const { card } = this.state
    let value = parseInt(val)
    if (isNaN(value) || value < 12 || value > 100) return
    this.props.updateStyle({componentId: card.componentId, uuid: card.uuid, style: {fontSize: `${value}px`}})
    this.updateStyle({fontSize: `${value}px`})
  }
  /**
   * @description 修改行间距,超出范围忽略
   */
  changeLineHeight = (val) => {
    const { card } = this.state
    let value = parseFloat(val)
    if (isNaN(value) || value < 1 || value > 10) return
    this.props.updateStyle({componentId: card.componentId, uuid: card.uuid, style: {lineHeight: value}})
    this.updateStyle({lineHeight: value})
  }
  /**
   * @description 字体间距修改,超出范围忽略
   */
  changeLetterSpacing = (val) => {
    const { card } = this.state
    let value = parseFloat(val)
    if (isNaN(value) || value < 0 || value > 100) return
    this.props.updateStyle({componentId: card.componentId, uuid: card.uuid, style: {letterSpacing: `${value}px`}})
    this.updateStyle({letterSpacing: `${value}px`})
  }
  /**
   * @description 修改字体粗细
   */
  boldChange = (val) => {
    const { card } = this.state
    this.props.updateStyle({componentId: card.componentId, uuid: card.uuid, style: {fontWeight: val}})
    this.updateStyle({fontWeight: val})
  }
  /**
   * @description 修改字体颜色 ,颜色控件
   */
  changeFontColor = (val) => {
    const { card } = this.state
    this.setState({
      fontColor: val
    })
    this.props.updateStyle({componentId: card.componentId, uuid: card.uuid, style: {color: val}})
    this.updateStyle({color: val})
  }
  /**
@@ -135,39 +134,31 @@
   * @description 字体对齐
   */
  changeTextAlign = (e) => {
    const { card } = this.state
    this.props.updateStyle({componentId: card.componentId, uuid: card.uuid, style: {textAlign: e.target.value}})
    this.updateStyle({textAlign: e.target.value})
  }
  /**
   * @description 字体样式,倾斜
   */
  changeFontStyle = (e) => {
    const { card } = this.state
    this.props.updateStyle({componentId: card.componentId, uuid: card.uuid, style: {fontStyle: e.target.value}})
    this.updateStyle({fontStyle: e.target.value})
  }
  /**
   * @description 字体装饰,下划线、贯穿线、上划线
   */
  changeTextDecoration = (e) => {
    const { card } = this.state
    this.props.updateStyle({componentId: card.componentId, uuid: card.uuid, style: {textDecoration: e.target.value}})
    this.updateStyle({textDecoration: e.target.value})
  }
  /**
   * @description 修改背景颜色 ,颜色控件
   */
  changeBackgroundColor = (val) => {
    const { card } = this.state
    this.setState({
      backgroundColor: val
    })
    this.props.updateStyle({componentId: card.componentId, uuid: card.uuid, style: {backgroundColor: val}})
    this.updateStyle({backgroundColor: val})
  }
  /**
@@ -180,14 +171,12 @@
  }
  imgChange = (list) => {
    const { card } = this.state
    if (list[0] && list[0].response) {
      this.setState({
        bgimages: [],
        backgroundImage: list[0].response
      })
      this.props.updateStyle({componentId: card.componentId, uuid: card.uuid, style: {backgroundImage: `url(${list[0].response})`}})
      this.updateStyle({backgroundImage: `url(${list[0].response})`})
    } else {
      this.setState({bgimages: list})
    }
@@ -200,7 +189,6 @@
  }
  submitBackgroundImage = (e) => {
    const { card } = this.state
    let val = e.target.value
    val = val.replace(/^\s*|\s*$/ig, '')
@@ -210,22 +198,19 @@
      val = `linear-gradient(${val})`
    }
    this.props.updateStyle({componentId: card.componentId, uuid: card.uuid, style: {backgroundImage: val}})
    this.updateStyle({backgroundImage: val})
  }
  submitBorder = (val, type) => {
    const { card } = this.state
    this.props.updateStyle({componentId: card.componentId, uuid: card.uuid, style: {[type]: val}})
    this.updateStyle({[type]: val})
  }
  changeBorderRadius = (val) => {
    const { card } = this.state
    let value = parseFloat(val)
    if (isNaN(value) || value < 0 || value > 500) return
    this.props.updateStyle({componentId: card.componentId, uuid: card.uuid, style: {borderRadius: `${value}px`}})
    this.updateStyle({borderRadius: `${value}px`})
  }
  changeMarginTop = (e) => {
@@ -244,12 +229,10 @@
  }
  submitMarginTop = (val) => {
    const { card } = this.state
    this.props.updateStyle({componentId: card.componentId, uuid: card.uuid, style: {marginTop: val}})
    this.setState({
      marginTop: val
    })
    this.updateStyle({marginTop: val})
  }
  changeMarginBottom = (e) => {
@@ -268,12 +251,10 @@
  }
  submitMarginBottom = (val) => {
    const { card } = this.state
    this.props.updateStyle({componentId: card.componentId, uuid: card.uuid, style: {marginBottom: val}})
    this.setState({
      marginBottom: val
    })
    this.updateStyle({marginBottom: val})
  }
  render () {