react-icons/hi#HiBell JavaScript Examples

The following examples show how to use react-icons/hi#HiBell. 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: Changelog.js    From hackertab.dev with Apache License 2.0 4 votes vote down vote up
function Changelog({}) {
  const tooltipId = 'tl-1'
  const [changelogMarkdown, setChangelogMarkdown] = useState([])
  const [loading, setLoading] = useState(true)
  const [error, setError] = useState(null)
  const [localAppVersion, setLocalAppVersion] = useState('')
  const preferences = useContext(PreferencesContext)
  const { dispatcher, changelogMeta } = preferences
  const [isChangelogRead, setIsChangelogRead] = useState(false)

  const afterShow = () => {
    if (changelogMarkdown.length === 0) {
      dispatcher({ type: 'setChangelogMeta', value: { shown: true, version: localAppVersion } })
      fetchChangelog()
    }
  }

  useEffect(() => {
    setIsChangelogRead(changelogMeta?.shown == true && changelogMeta?.version == localAppVersion)
  }, [localAppVersion, changelogMeta])

  useEffect(() => {
    try {
      setLocalAppVersion(chrome.runtime.getManifest().version)
    } catch (e) {
      setLocalAppVersion('')
    }
  }, [])

  const fetchChangelog = async () => {
    setLoading(true)
    setError(null)
    setChangelogMarkdown([])

    try {
      const response = await axios.get(APP.changeLogLink)
      const data = response.data

      let sameLocalVersionIndex = 0

      if (localAppVersion) {
        sameLocalVersionIndex = data.findIndex(
          (item) => localAppVersion == item.name.replace(/[^\d.-]/g, '')
        )
      }

      if (sameLocalVersionIndex == -1) {
        sameLocalVersionIndex = 0
      }

      const mappedVersions = data.slice(sameLocalVersionIndex, data.length).map((item) => {
        return {
          version: item.name,
          date: item.published_at,
          body: item.body,
          url: item.html_url,
        }
      })
      setChangelogMarkdown(mappedVersions)
    } catch (e) {
      setError(e)
    } finally {
      setLoading(false)
    }
  }

  return (
    <>
      <ReactTooltip
        id={tooltipId}
        event="click"
        scrollHide={false}
        afterShow={afterShow}
        place="bottom"
        className="changelogTooltip scrollable"
        globalEventOff="click">
        {loading ? (
          <div className="tooltipLoading">
            <BeatLoader color={'#A9B2BD'} loading={loading} size={15} className="loading" />
          </div>
        ) : error ? (
          <p className="tooltipErrorMsg">Failed to load the changelog</p>
        ) : (
          changelogMarkdown.map((item) => {
            return (
              <div key={item.version}>
                <div className="tooltipHeader">
                  <a className="tooltipVersion" onClick={(e) => window.open(item.url, '_blank')}>
                    {item.version}
                  </a>
                  <span className="tooltipDate">{format(new Date(item.date))}</span>
                </div>
                <div className="tooltipContent">
                  <ReactMarkdown children={item.body} />
                </div>
              </div>
            )
          })
        )}
      </ReactTooltip>
      <span
        data-tip
        data-for={tooltipId}
        className={'changelogButton' + (!isChangelogRead ? ' active' : '')}>
        <HiBell style={{ width: 14 }} />
      </span>
    </>
  )
}