cra-template-firebase-crm

1.0.0 • Public • Published

⚛️ cra-template-firebase-crm

Contains the most advanced Firebase CRM starter kit which you ever seen!

npm

screenshot

Usage

yarn create react-app --template cra-template-firebase-crm .

or

npx create-react-app . --template=firebase-crm

What's inside

  1. TypeScript
  2. MUI
  3. Mobx
  4. tss-react
  5. react-declarative
  6. firebase

Code sample

import { useState } from 'react';
import {
    FetchView,
    RecordView,
    ActionTrigger,
    useReloadTrigger,
    IActionTrigger,
} from 'react-declarative';

import ioc from '../../lib/ioc';

interface ITodoOnePageProps {
    id: string;
}

const actions: IActionTrigger[] = [
    {
        label: 'Mark as complete',
        action: 'complete-action',
    }
];

export const TodoOnePage = ({
    id,
}: ITodoOnePageProps) => {

    const { reloadTrigger, doReload } = useReloadTrigger();
    
    const [search, setSearch] = useState('');

    const state = async () => await ioc.todoDbService.findById(id);

    const handleAction = async (action: string) => {
        if (action === 'complete-action') {
            await ioc.todoDbService.update(id, {
                completed: true,
            });
            doReload();
        }
    };

    return (
        <>
            <ActionTrigger
                actions={actions}
                onAction={handleAction}
            />
            <FetchView state={state} deps={[reloadTrigger]}>
                {(data) => (
                    <RecordView
                        onSearchChanged={(search) => setSearch(search)}
                        search={search}
                        data={data}
                    />
                )}
            </FetchView>
        </>
    );
};

export default TodoOnePage;

Package Sidebar

Install

npm i cra-template-firebase-crm

Weekly Downloads

2

Version

1.0.0

License

ISC

Unpacked Size

39.6 kB

Total Files

45

Last publish

Collaborators

  • tripolskypetr