123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- import React from 'react';
- import './ablt.less';
- import { Tag, Input, Tooltip, Button, Spin } from 'antd';
- class EditableTagGroup extends React.Component {
- constructor(props) {
- super(props);
- this.state = {
- tags: ['我的标签:', '标签1', '标签2'],
- inputVisible: false,
- inputValue: '',
- }
- }
- handleClose(removedTag) {
- const tags = this.state.tags.filter(tag => tag !== removedTag);
- this.props.tagsArr(tags);
- this.setState({ tags });
- }
-
- showInput() {
- this.setState({ inputVisible: true }, () => this.input.focus());
- }
- handleInputChange(e) {
- this.setState({ inputValue: e.target.value });
- }
- handleInputConfirm() {
- const state = this.state;
- const inputValue = state.inputValue;
- let tags = state.tags;
- if (inputValue && tags.indexOf(inputValue) === -1) {
- tags = [...tags, inputValue];
- }
- this.props.tagsArr(tags);
- this.setState({
- tags,
- inputVisible: false,
- inputValue: '',
- });
- }
- render() {
- const { tags, inputVisible, inputValue } = this.state;
- return (
- <div className="ablt-tips">
- {tags.map((tag, index) => {
- const isLongTag = tag.length > 20;
- const tagElem = (
- <Tag key={tag} closable={index !== 0} afterClose={() => this.handleClose(tag)}>
- {isLongTag ? `${tag.slice(0, 20)}...` : tag}
- </Tag>
- );
- return isLongTag ? <Tooltip title={tag}>{tagElem}</Tooltip> : tagElem;
- })}
- {inputVisible && (
- <Input
- ref={input => this.input = input}
- type="text"
- style={{ width: 78 }}
- value={inputValue}
- onChange={this.handleInputChange.bind(this)}
- onBlur={this.handleInputConfirm.bind(this)}
- onPressEnter={this.handleInputConfirm.bind(this)}
- />
- )}
- {!inputVisible && <Button className="addtips" type="dashed" onClick={this.showInput.bind(this)}>+ 新标签</Button>}
- </div>
- );
- }
- };
- const Base = React.createClass({
- getInitialState() {
- return {
- loading: false
- };
- },
- tagsArr(e){
- this.state.tags = e.slice(1);
- },
- submit() {
- console.log(this.state.tags);
- },
- render() {
- return (
- <Spin spinning={this.state.loading} className='spin-box'>
- <div className="set-ablt">
- <div className="acc-detail">
- <p className="acc-title">能力标签</p>
- <p className="tips-title">最多可设置10个标签。请用简洁明确的关键词来展示你的职业能力。</p>
- <EditableTagGroup tagsArr={this.tagsArr}/>
- <Button className="set-submit" type="primary" onClick={this.submit}>保存</Button>
- </div>
- </div>
- </Spin>
- )
- }
- });
- export default Base;
|