🎶 Sym - 一款用 Java 实现的现代化社区(论坛/BBS/社交网络/博客)平台

📕 思源笔记 - 一款桌面端笔记应用,支持 Windows、Mac 和 Linux

🎸 Solo - B3log 分布式社区的博客端节点,欢迎加入下一代社区网络

♏ Vditor - 一款浏览器端的 Markdown 编辑器

React Input - 单词个数限制

2019-09-11

描述

渲染一个带有单词个数限制功能的 textarea 组件。

  • 使用 React.useState() hook 创建 contentwordCount 状态变量,他们的值分别设为 value0
  • 创建一个 setFormattedContent 方法,使用 String.prototype.split(' ') 把输入的内容转换为一个单词数组并检查使用了 Array.prototype.filter(Boolean) 获取的 length 是否大于 limit
  • 如果上一步获取的 length 超出了 limit,就对输入进行截断,否则返回原始输入,在以上两种情况中需对 contentwordCount 进行更新
  • 使用 React.useEffect() hook 调用 setFormattedContent 方法,其参数为 content 状态变量
  • <textarea> 元素和展示单词数的 <p> 元素使用 <div> 进行包裹,<textarea> 绑定 onChange 事件,该事件调用参数为 event.target.valuesetFormattedContent 方法

实现

function LimitedWordTextarea({ rows, cols, value, limit }) {
  const [content, setContent] = React.useState(value);
  const [wordCount, setWordCount] = React.useState(0);

  const setFormattedContent = text => {
    let words = text.split(' ');
    if (words.filter(Boolean).length > limit) {
      setContent(
        text
          .split(' ')
          .slice(0, limit)
          .join(' ')
      );
      setWordCount(limit);
    } else {
      setContent(text);
      setWordCount(words.filter(Boolean).length);
    }
  };

  React.useEffect(() => {
    setFormattedContent(content);
  }, []);

  return (
    <div>
      <textarea
        rows={rows}
        cols={cols}
        onChange={event => setFormattedContent(event.target.value)}
        value={content}
      />
      <p>
        {wordCount}/{limit}
      </p>
    </div>
  );
}

使用

ReactDOM.render(
  <LimitedWordTextArea limit={5} value="Hello there!" />,
  document.getElementById('root')
);

返回总目录

每天 30 秒系列之 React


欢迎注册黑客派社区,开启你的博客之旅。让学习和分享成为一种习惯!

留下你的脚步