基于Draftjs實(shí)現(xiàn)的Electron富文本聊天輸入框(一) —— 群@功能

@功能

會(huì)話是群組時(shí),輸入框提供@功能荆永,用戶是當(dāng)前群的群主時(shí),suggestionsList包含@全體成員;

@組件使用Draft plugins提供的mention plugin

主要code:

import Editor from 'draft-js-plugins-editor';
import createMentionPlugin, {defaultSuggestionsFilter} from 'draft-js-mention-plugin';

import createLinkifyPlugin from 'draft-js-linkify-plugin';
import 'draft-js-mention-plugin/lib/plugin.css';
import 'draft-js-linkify-plugin/lib/plugin.css';

import MentionEntry from './Mention';

// 自定義mention彈出的位置
const positionSuggestions = ({decoratorRect, state, props}) => {
  const editorWrapper = document.getElementsByClassName('chat-draft-editor')[0];
  const wrapperRect = editorWrapper.getBoundingClientRect();
  let left = decoratorRect.left - wrapperRect.left;
  const newDecoratorRight = decoratorRect.left + 170;
  if (newDecoratorRight >= wrapperRect.right) {
    left = left - (newDecoratorRight - wrapperRect.right) - 10;
  }
  const bottom = wrapperRect.height + 25 - (decoratorRect.bottom - wrapperRect.top);
  console.log('editor', decoratorRect);

  let transform;
  let transition;

  if (state.isActive & props.suggestions.size > 0) {
    transform = 'scale(1)';
    transition = 'all 0.25s cubic-bezier(.3,1.2,.2,1)';
  } else if (state.isActive) {
    transform = 'scale(0)';
    transition = 'all 0.35s cubic-bezier(.3,1,.2,1)';
  }

  return {
    position: 'absolute',
    left: `${left}px`,
    bottom: `${bottom}px`,
    minWidth: '170px',
    maxHeight: '230px',
    overflowY: 'scroll',
    border: '1px solid #E6E6E6',
    borderRadius: '6px',
    transform,
    transformOrigin: '1em 0%',
    transition,
  };
};
const defaultSuggestions = [];

export default class ChatDraftEditor extends React.Component {
  constructor(props) {
    super(props);
    this.state = {
      editorState: EditorState.createEmpty(),
      suggestions: [],
    };
    this.mentionPlugin = createMentionPlugin({
      defaultSuggestions,
      entityMutability: 'IMMUTABLE',
      positionSuggestions,
      mentionPrefix: '@',
    });
  }
}

onSearchChange = ({value}) => {
    const userList = this.props.userList;
    const filterSuggestions = value === ''? userList : defaultSuggestionsFilter(value, userList);
    this.setState({
      suggestions: filterSuggestions,
    });
  };

render() {
    const {MentionSuggestions} = this.mentionPlugin;
    const plugins = [this.mentionPlugin];
    return (
      <div
        className="chat-draft-editor"
        onClick={()=> {
          this.focus(0);
        }}
      >
        <Editor
          ref={(e) => {
            this.editor = e;
          }}
          plugins={plugins}
          decorators={draftDecorator}
          editorState={this.state.editorState}
          onChange={this.onChange.bind(this)}
          onBlur={this.handleBlur.bind(this)}
          blockRendererFn={this.blockRendererFn.bind(this)}
          handleKeyCommand={this.handleKeyCommand.bind(this)}
          keyBindingFn={this.keyBindingFn}
        />
        <MentionSuggestions
          onSearchChange={this.onSearchChange.bind(this)}
          suggestions={this.state.suggestions}
          entryComponent={MentionEntry}
          // onOpen={this.handleMentionOpen.bind(this)}
          // onClose={this.handleMentionClose.bind(this)}
        />
      </div>
    );
  }
  1. <MetionSuggestions />是@列表組件柏锄,其屬性suggestions為數(shù)組對(duì)象消请,格式可以自定義..如果格式自定義了的話,最好同時(shí)修改entryComponent

  2. entryComponent用來(lái)傳入自定義的mention列表中item的組件樣式森渐,意味著可以根據(jù)你的mention對(duì)象格式定制組件樣式:

    import React from 'react';
    import Avatar from '../common/Avatar';
    
    const MentionEntry = (props) => {
      const {
        mention,
        ...parentProps
      } = props;
      const isAll = mention.get('uid') == 'upcgroupatall' ? true: false;
      const avatarType = mention.get('gender') == '2'? 'women': 'men';
    
      const suggestionEntry = isAll? (
        <div className="mention-all">{mention.get('name')}</div>
      ): (
        <div className="mention-entry">
          <Avatar
            icon={mention.get('avatar')}
            shape="square"
            size="min"
            type={avatarType}
          />
          <div className="mention-text">{mention.get('name')}</div>
        </div>
      );
      return (
        <div {...parentProps}>
          <div className="mention-suggestion" >
            {suggestionEntry}
          </div>
        </div>
      );
    };
    
    module.exports = MentionEntry;
    
    
  3. onSearchChange綁定@時(shí)的關(guān)鍵字filter方法:

    onSearchChange = ({value}) => {
        const userList = this.props.userList;
        const filterSuggestions = value === ''? userList : defaultSuggestionsFilter(value, userList);
        this.setState({
          suggestions: filterSuggestions,
        });
      };
    

    這里原本按照官網(wǎng)demo寫(xiě)做入,會(huì)導(dǎo)致一個(gè)bug,即第一次觸發(fā)@同衣,value為''時(shí)竟块,filter方法并未返回整個(gè)list。因此添加判斷如上耐齐。

  4. mention插件目前仍有些未解決的影響體驗(yàn)的問(wèn)題:會(huì)影響輸入框up/down arrow事件的正常處理浪秘;mention選擇時(shí),滾輪不會(huì)隨著up/down arrow滾動(dòng)

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末埠况,一起剝皮案震驚了整個(gè)濱河市耸携,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌询枚,老刑警劉巖违帆,帶你破解...
    沈念sama閱讀 206,311評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異金蜀,居然都是意外死亡刷后,警方通過(guò)查閱死者的電腦和手機(jī)的畴,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,339評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門(mén),熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)尝胆,“玉大人丧裁,你說(shuō)我怎么就攤上這事『危” “怎么了煎娇?”我有些...
    開(kāi)封第一講書(shū)人閱讀 152,671評(píng)論 0 342
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)贪染。 經(jīng)常有香客問(wèn)我缓呛,道長(zhǎng),這世上最難降的妖魔是什么杭隙? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 55,252評(píng)論 1 279
  • 正文 為了忘掉前任哟绊,我火速辦了婚禮,結(jié)果婚禮上痰憎,老公的妹妹穿的比我還像新娘票髓。我一直安慰自己,他們只是感情好铣耘,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,253評(píng)論 5 371
  • 文/花漫 我一把揭開(kāi)白布洽沟。 她就那樣靜靜地躺著,像睡著了一般蜗细。 火紅的嫁衣襯著肌膚如雪裆操。 梳的紋絲不亂的頭發(fā)上,一...
    開(kāi)封第一講書(shū)人閱讀 49,031評(píng)論 1 285
  • 那天炉媒,我揣著相機(jī)與錄音跷车,去河邊找鬼。 笑死橱野,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的善玫。 我是一名探鬼主播水援,決...
    沈念sama閱讀 38,340評(píng)論 3 399
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼茅郎!你這毒婦竟也來(lái)了蜗元?” 一聲冷哼從身側(cè)響起,我...
    開(kāi)封第一講書(shū)人閱讀 36,973評(píng)論 0 259
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤系冗,失蹤者是張志新(化名)和其女友劉穎奕扣,沒(méi)想到半個(gè)月后,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體掌敬,經(jīng)...
    沈念sama閱讀 43,466評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡惯豆,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,937評(píng)論 2 323
  • 正文 我和宋清朗相戀三年池磁,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片楷兽。...
    茶點(diǎn)故事閱讀 38,039評(píng)論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡地熄,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出芯杀,到底是詐尸還是另有隱情端考,我是刑警寧澤,帶...
    沈念sama閱讀 33,701評(píng)論 4 323
  • 正文 年R本政府宣布揭厚,位于F島的核電站却特,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏筛圆。R本人自食惡果不足惜裂明,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,254評(píng)論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望顽染。 院中可真熱鬧漾岳,春花似錦、人聲如沸粉寞。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,259評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)唧垦。三九已至捅儒,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間振亮,已是汗流浹背巧还。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 31,485評(píng)論 1 262
  • 我被黑心中介騙來(lái)泰國(guó)打工, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留坊秸,地道東北人麸祷。 一個(gè)月前我還...
    沈念sama閱讀 45,497評(píng)論 2 354
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像褒搔,于是被迫代替她去往敵國(guó)和親阶牍。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,786評(píng)論 2 345

推薦閱讀更多精彩內(nèi)容