react-icons/fa#FaPen TypeScript Examples

The following examples show how to use react-icons/fa#FaPen. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: MessageContainer.tsx    From convoychat with GNU General Public License v3.0 4 votes vote down vote up
MessageContainer: React.FC<IMessage> = ({
  id,
  content,
  date,
  author,
  isAuthor,
}) => {
  const client = useApolloClient();
  const roomData = useRef<GetRoomQuery>();
  const { roomId } = useParams();
  const [isEditing, setIsEditing] = useState<boolean>(false);
  const {
    value,
    setValue,
    textareaRef,
    handleChange,
    handleEmojiClick,
  } = useMessageInput({
    defaultValue: content,
  });

  const [
    deleteMessage,
    { loading: isDeleting, error },
  ] = useDeleteMessageMutation({
    update: deleteMessageMutationUpdater,
  });

  const [
    editMessage,
    { loading: editLoading, error: editError },
  ] = useEditMessageMutation({
    onCompleted() {
      setIsEditing(false);
    },
  });

  const handleDelete = () => {
    deleteMessage({ variables: { messageId: id } });
  };

  const handleEdit = (event: React.FormEvent<HTMLFormElement>) => {
    editMessage({
      variables: {
        messageId: id,
        content: (event.target as any).message.value,
      },
    });
  };

  const handleCancel = () => {
    setIsEditing(false);
  };

  useEffect(() => {
    try {
      roomData.current = client.readQuery<GetRoomQuery>({
        query: GetRoomDocument,
        variables: { roomId: roomId, limit: MAX_MESSAGES },
      });
    } catch (err) {
      console.log(err);
    }
  }, [roomId]);

  return (
    <Message>
      <Message.MetaInfo author={author} date={date}>
        <Message.Actions isAuthor={isAuthor}>
          <Message.Action loading={editLoading}>
            <FaPen onClick={() => setIsEditing(true)} />
          </Message.Action>
          <Message.Action loading={isDeleting}>
            <FaTrash onClick={handleDelete} />
          </Message.Action>
        </Message.Actions>
      </Message.MetaInfo>
      <Message.Content
        isEditing={isEditing}
        onEditing={
          <MessageInput
            value={value}
            setValue={setValue}
            innerRef={textareaRef}
            onCancel={handleCancel}
            handleSubmit={handleEdit}
            handleChange={handleChange}
            onEmojiClick={handleEmojiClick}
            mentionSuggestions={roomData.current?.room?.members}
          />
        }
      >
        <MarkdownView
          markdown={content}
          sanitizeHtml={html => DOMPurify.sanitize(html)}
          options={markdownSettings}
        />
      </Message.Content>
    </Message>
  );
}