0.2.33 • Published 7 months ago

blockauth-lib-react v0.2.33

Weekly downloads
-
License
UNLICENSED
Repository
-
Last release
7 months ago

blockauth-lib-react

This is a LIB-react for the BlockAuth project. It is a React component library that uses the SDK to interact with the BlockAuth smart contracts and Websocket server.

pipeline status coverage report Latest Release

How to use?

Use the official documentation at block-auth.io to learn how to use the SDK.

Development

Install dependencies

  npm install

CI/CD

  npm run ci

Start the development server

  npm run dev

After making changes to the code, run the following command to format the code, run the linter, and start the development server:

  npm run css && npm run lint && npm run format && npm ci:compile

WARNING : Don't forget to remove unused css classes from the public/output.css file becase tailwind.css generates a lot of unused css classes.

NPM Scripts

ScriptDescription
devStarts the development server
cssBuilds the CSS
css:devBuilds the CSS in development mode
testRuns the tests and generates a coverage report
lintRuns the linter
lint:fixRuns the linter and fixes the errors
formatFormats the code
buildBuilds the app for production
previewBuilds the app for production and previews it locally
ciRuns the tests, linter, and code formatter
storiesStarts the Storybook server
stories:buildBuilds the Storybook app for production
docsStarts the documentation server
docs:buildBuilds the documentation app for production
cleanRemoves dist, dist-stories, dist-docs, package-lock.json, .coverage and node_modules

Usage/Examples

import 'blockauth-lib-react/public/output.css' // Import Tailwind CSS
import {
  BtnArrowDir,
  BtnBase,
  BtnClose,
  BtnSave,
  BtnSubmit,
  DividerBase,
  DropdownFlags,
  AnimatedSlideWrapper,
  EmptyBase,
  WrapperBase,
  ArrowIcon,
  BellIcon,
  CheckmarkIcon,
  LogoBAIcon,
  IconBase,
  Checkbox,
  CheckboxAnimated,
  MessageBase,
  HorizontalLoader,
  OvalSpinner,
  DropdownNotifications,
  NotificationItem,
  NotificationList,
  NotificationSentAt,
  Notifications,
  NotificationsBase,
  Switcher,
  Progressbar,
  SwitcherDarkMode,
  // helpers
  // hooks
  // services
  BrowserBase,
  // stores
  useStoreNotifications,
} from 'blockauth-lib-react'
import { useState } from 'react'

export default function App() {
  const [notifications, setNotifications] = useState([
    {
      id: '1',
      title: 'Notification 1',
      message: 'This is a notification message',
      sentAt: '2021-09-01T00:00:00Z',
    },
    {
      id: '2',
      title: 'Notification 2',
      message: 'This is a notification message',
      sentAt: '2021-09-01T00:00:00Z',
    },
    {
      id: '3',
      title: 'Notification 3',
      message: 'This is a notification message',
      sentAt: '2021-09-01T00:00:00Z',
    },
  ])

  return (
    <div>
      <BtnArrowDir />
      <BtnBase />
      <BtnClose />
      <BtnSave />
      <BtnSubmit />
      <DividerBase />
      <DropdownFlags />
      <AnimatedSlideWrapper />
      <EmptyBase />
      <WrapperBase />
      <ArrowIcon />
      <BellIcon />
      <CheckmarkIcon />
      <LogoBAIcon />
      <IconBase />
      <Checkbox />
      <CheckboxAnimated />
      <MessageBase />
      <HorizontalLoader />
      <OvalSpinner />
      <DropdownNotifications />
      <NotificationItem />
      <NotificationList />
      <NotificationSentAt />
      <Notifications />
      <NotificationsBase />
      <Switcher />
      <Progressbar />
      <SwitcherDarkMode />
      <BrowserBase />
      <NotificationsBase
        notifications={notifications}
        setNotifications={setNotifications}
      />
    </div>
  )
}

Authors

Block-Auth.io Team

0.2.33

7 months ago

0.2.32

7 months ago

0.2.31

7 months ago

0.2.29

8 months ago

0.2.28

8 months ago

0.2.27

8 months ago

0.2.26

9 months ago

0.2.25

9 months ago

0.2.24

9 months ago

0.2.16

9 months ago

0.2.15

9 months ago

0.2.14

9 months ago

0.2.23

9 months ago

0.2.22

9 months ago

0.2.21

9 months ago

0.2.19

9 months ago

0.2.18

9 months ago

0.2.17

9 months ago

0.2.13

10 months ago

0.2.12

10 months ago

0.2.11

10 months ago

0.2.9

10 months ago

0.2.8

11 months ago

0.2.7

11 months ago

0.2.6

11 months ago

0.2.5

11 months ago

0.2.4

11 months ago

0.2.3

12 months ago

0.2.2

12 months ago