npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@dooboo-ui/gifted-chat

v0.0.1

Published

> [GiftedChat] component contains essential features to be implemented in `Chat` screen.

Downloads

6

Readme

GiftedChat

[GiftedChat] component contains essential features to be implemented in Chat screen.

gifted_chat

Props

| | necessary | types | default | | -------------------- | --------- | ------------------- | ------- | | chats | | any[] | | | borderColor | | string | | | backgroundColor | | string | | | fontColor | | string | | | keyboardOffset | | number | | | renderItem | | ListRenderItem | | | emptyItem | | ReactElement | | | renderViewMenu | | () => ReactElement | | | optionView | | ReactElement | | | onChangeMessage | | Function | | | placeholder | | string | | | placeholderTextColor | | string | | | renderSendButton | | () => ReactElement | |

Installation

yarn add @dooboo-ui/core

or

yarn add @dooboo-ui/gifted-chat

Getting started

  • Import

    import { GiftedChat } from '@dooboo-ui/core';
  • Usage

    import { Image, Platform, TouchableOpacity, View } from 'react-native';
    import {
      NavigationParams,
      NavigationScreenProp,
      NavigationState,
    } from 'react-navigation';
    import React, { useState } from 'react';
    import styled, {
      DefaultTheme,
      ThemeProps,
    } from 'styled-components/native';
    
    import Button from '../shared/Button';
    import { Chat } from '../../types';
    import ChatListItem from '../shared/ChatListItem';
    import Constants from 'expo-constants';
    import EmptyListItem from '../shared/EmptyListItem';
    import GiftedChat from '../shared/GiftedChat';
    import { Header } from 'react-navigation-stack';
    import { IC_SMILE } from '../../utils/Icons';
    import { Ionicons } from '@expo/vector-icons';
    import { getString } from '../../../STRINGS';
    
    const StyledContainer = styled.SafeAreaView`
      flex: 1;
      background-color: ${({ theme }): string => theme.background};
      flex-direction: column;
      align-items: center;
    `;
    
    interface Props extends ThemeProps<DefaultTheme> {
      navigation: NavigationScreenProp<NavigationState, NavigationParams>;
    }
    
    interface State {
      isLoading: boolean;
      showMenu: boolean;
      message: string;
      chats: Chat[];
    }
    
    function Screen(props: Props): React.ReactElement {
      const { theme } = props;
    
      const [isSending, setIsSending] = useState<boolean>(false);
      const [message, setMessage] = useState<string>('');
      const [chats, setChats] = useState<Chat[]>([
        {
          id: '',
          sender: {
            uid: '0',
            displayName: 'sender111',
            thumbURL: '',
            photoURL: '',
            statusMsg: '',
          },
          message: 'hello1',
        },
        {
          id: '',
          sender: {
            uid: '2',
            displayName: 'sender111',
            thumbURL: '',
            photoURL: '',
            statusMsg: '',
          },
          message:
            'Hello2. This is long message. This is long message.This is long message.' +
            'This is long message. This is long message. This is long message.' +
            'This is long message. This is long message.' +
            'This is long message. This is long message. This is long message.',
        },
        {
          id: '',
          sender: {
            uid: '0',
            displayName: 'sender111',
            thumbURL: '',
            photoURL: '',
            statusMsg: '',
          },
          message: 'hello',
        },
        {
          id: '',
          sender: {
            uid: '0',
            displayName: 'sender111',
            thumbURL: '',
            photoURL: '',
            statusMsg: '',
          },
          message: 'hello2',
        },
      ]);
    
      const onSubmit = (): void => {
        setIsSending(true);
      };
    
      return (
        <StyledContainer>
          <GiftedChat
            chats={chats}
            borderColor={theme.lineColor}
            backgroundColor={theme.background}
            fontColor={theme.fontColor}
            keyboardOffset={Constants.statusBarHeight + Header.HEIGHT}
            message={message}
            placeholder={getString('WRITE_MESSAGE')}
            placeholderTextColor={theme.status}
            onChangeMessage={(text: string): void => setMessage(text)}
            renderItem={({
              item,
              index,
            }: {
              item: Chat;
              index: number;
            }): React.ReactElement => {
              return (
                <ChatListItem
                  prevItem={index > 0 ? chats[index - 1] : undefined}
                  item={item}
                />
              );
            }}
            optionView={
              <Image
                style={{
                  width: 20,
                  height: 20,
                }}
                source={IC_SMILE}
              />
            }
            emptyItem={<EmptyListItem>{getString('NO_CONTENT')}</EmptyListItem>}
            renderViewMenu={(): React.ReactElement => (
              <View
                style={{
                  flexDirection: 'row',
                  marginTop: 10,
                }}
              >
                <TouchableOpacity
                  style={{
                    marginLeft: 16,
                    marginTop: 2,
                    width: 60,
                    height: 60,
                    justifyContent: 'center',
                    alignItems: 'center',
                  }}
                >
                  <Ionicons
                    name="ios-camera"
                    size={36}
                    color={theme ? theme.fontColor : '#3d3d3d'}
                  />
                </TouchableOpacity>
                <TouchableOpacity
                  style={{
                    marginLeft: 16,
                    marginTop: 4,
                    width: 60,
                    height: 60,
                    justifyContent: 'center',
                    alignItems: 'center',
                  }}
                >
                  <Ionicons
                    name="md-images"
                    size={36}
                    color={theme ? theme.fontColor : '#3d3d3d'}
                  />
                </TouchableOpacity>
              </View>
            )}
            renderSendButton={(): React.ReactElement => (
              <Button
                testID="btn_chat"
                height={Platform.OS === 'android' ? 40 : undefined}
                isLoading={isSending}
                onPress={onSubmit}
              >
                {getString('SEND')}
              </Button>
            )}
          />
        </StyledContainer>
      );
    }
    
    export default Screen;