ablt.jsx 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. import React from 'react';
  2. import './ablt.less';
  3. import { Tag, Input, Tooltip, Button, Spin } from 'antd';
  4. class EditableTagGroup extends React.Component {
  5. constructor(props) {
  6. super(props);
  7. this.state = {
  8. tags: ['我的标签:', '标签1', '标签2'],
  9. inputVisible: false,
  10. inputValue: '',
  11. }
  12. }
  13. handleClose(removedTag) {
  14. const tags = this.state.tags.filter(tag => tag !== removedTag);
  15. this.props.tagsArr(tags);
  16. this.setState({ tags });
  17. }
  18. showInput() {
  19. this.setState({ inputVisible: true }, () => this.input.focus());
  20. }
  21. handleInputChange(e) {
  22. this.setState({ inputValue: e.target.value });
  23. }
  24. handleInputConfirm() {
  25. const state = this.state;
  26. const inputValue = state.inputValue;
  27. let tags = state.tags;
  28. if (inputValue && tags.indexOf(inputValue) === -1) {
  29. tags = [...tags, inputValue];
  30. }
  31. this.props.tagsArr(tags);
  32. this.setState({
  33. tags,
  34. inputVisible: false,
  35. inputValue: '',
  36. });
  37. }
  38. render() {
  39. const { tags, inputVisible, inputValue } = this.state;
  40. return (
  41. <div className="ablt-tips">
  42. {tags.map((tag, index) => {
  43. const isLongTag = tag.length > 20;
  44. const tagElem = (
  45. <Tag key={tag} closable={index !== 0} afterClose={() => this.handleClose(tag)}>
  46. {isLongTag ? `${tag.slice(0, 20)}...` : tag}
  47. </Tag>
  48. );
  49. return isLongTag ? <Tooltip title={tag}>{tagElem}</Tooltip> : tagElem;
  50. })}
  51. {inputVisible && (
  52. <Input
  53. ref={input => this.input = input}
  54. type="text"
  55. style={{ width: 78 }}
  56. value={inputValue}
  57. onChange={this.handleInputChange.bind(this)}
  58. onBlur={this.handleInputConfirm.bind(this)}
  59. onPressEnter={this.handleInputConfirm.bind(this)}
  60. />
  61. )}
  62. {!inputVisible && <Button className="addtips" type="dashed" onClick={this.showInput.bind(this)}>+ 新标签</Button>}
  63. </div>
  64. );
  65. }
  66. };
  67. const Base = React.createClass({
  68. getInitialState() {
  69. return {
  70. loading: false
  71. };
  72. },
  73. tagsArr(e){
  74. this.state.tags = e.slice(1);
  75. },
  76. submit() {
  77. console.log(this.state.tags);
  78. },
  79. render() {
  80. return (
  81. <Spin spinning={this.state.loading} className='spin-box'>
  82. <div className="set-ablt">
  83. <div className="acc-detail">
  84. <p className="acc-title">能力标签</p>
  85. <p className="tips-title">最多可设置10个标签。请用简洁明确的关键词来展示你的职业能力。</p>
  86. <EditableTagGroup tagsArr={this.tagsArr}/>
  87. <Button className="set-submit" type="primary" onClick={this.submit}>保存</Button>
  88. </div>
  89. </div>
  90. </Spin>
  91. )
  92. }
  93. });
  94. export default Base;