3.8.5 • Published 4 days ago

@open-stock/stock-counter-client v3.8.5

Weekly downloads
-
License
ISC
Repository
-
Last release
4 days ago

@open-stock/stock-counter-client

A universial inventory management library for Javascript on browser with user state management. This only works with (https://github.com/BrianPollar/@open-stock/stock-counter-server) the server library.

Features

stock-cpounter-client implements a full authentication system. It consists of:

  • a Javascript client library (this repository)
  • a Node Js Server for Node.js.

Its main features are:

Reliability

The libarary uses standard encryption for data protection:

Simple and convenient API

Sample code:

import { createStockCounter } from "@open-stock/stock-counter-client";
import Axios from "axios-observable";

// then create an instance
const instance = Axios.create({
  baseURL: "https://yourapi.com",
  timeout: 1000,
  headers: {
    "X-Custom-Header": "foobar",
    Authorization: "auth-token",
  },
});

const { stockCounterClient } = createStockCounter(instance);

Installation

// with npm
npm install @open-stock/stock-counter-client

// with yarn
yarn add @open-stock/stock-counter-client

How to use

The following example gets user from stock-auth-client and gets the chat client and chat controller instances.

import { createStockCounter } from "@open-stock/stock-counter-client";
import Axios from "axios-observable";

// then create an instance
const instance = Axios.create({
  baseURL: "https://yourapi.com",
  timeout: 1000,
  headers: {
    "X-Custom-Header": "foobar",
    Authorization: "auth-token",
  },
});

const { stockCounterClient } = createStockCounter(instance);

Extra Features

Here are the features of the stock-counter-client library

NOTE

Most of the features below are automatically implememnted by the library. But If you want to use the classes and functions provided by the library, you can do so by importing them from the library. Some of them are elaborated below.

transformFaqToNameOrImage

transformFaqToNameOrImage is a function that is used to transform a faq to a name or image.

usage

import { transformFaqToNameOrImage } from "@open-stock/stock-counter-client";

const faq: Faq ={
// ...
};
const type = 'img' || 'name';

const nameOrImage = transformFaqToNameOrImage(faq, type);

transformEstimateId

transformEstimateId is a function that is used to transform an estimate id.

usage

import { transformEstimateId } from "@open-stock/stock-counter-client";

const result = transformEstimateId('123');

transformInvoice

transformInvoice is a function that is used to transform an invoice.

usage

import { transformInvoice } from "@open-stock/stock-counter-client";

const result = transformInvoice('123');

transformUrId

transformUrId is a function that is used to transform a user id.

usage

import { transformUrId } from "@open-stock/stock-counter-client";

const result = transformUrId('123', 'CAR');

likeFn

likeFn is a function that is used to like an item.

usage

import { likeFn, Item } from "@open-stock/stock-counter-client";
import { User } from '@open-stock/stock-auth-client';

const currentUser: User = {
// ...
};
const item: Item = {
// ...
};

const { success } = await likeFn('companyId', currentUser, item);

unLikeFn

unLikeFn is a function that is used to unlike an item.

usage

import { unLikeFn, Item } from "@open-stock/stock-counter-client";
import { User } from '@open-stock/stock-auth-client';

const currentUser: User = {
// ...
};
const item: Item = {
// ...
};

const { success } = await unLikeFn('companyId', currentUser, item);

determineLikedFn

determineLikedFn is a function that is used to determine if an item is liked.

usage

import { determineLikedFn, Item } from "@open-stock/stock-counter-client";
import { User } from '@open-stock/stock-auth-client';

const currentUser: User = {
// ...
};
const item: Item = {
// ...
};

const res = await determineLikedFn(item, currentUser);

markInvStatusAsFn

markInvStatusAsFn is a function that is used to change an invoice status.

usage

import { markInvStatusAsFn, Invoice } from "@open-stock/stock-counter-client";
import { TinvoiceStatus } from '@open-stock/stock-universal';

const invoice: Invoice = {
// ...
};
const status: TinvoiceStatus = 'pending';

const { success } = await markInvStatusAsFn('companyId', invoice, status);

deleteInvoiceFn

deleteInvoiceFn is a function that is used to delete an invoice.

usage

import { deleteInvoiceFn, Invoice } from "@open-stock/stock-counter-client";

const invoices: Invoice[] = [
// ...
];

const { success } = await deleteInvoiceFn('companyId', '_id', invoices);

toggleSelectionFn

toggleSelectionFn is a function that is used to toggle selection.

usage

import { toggleSelectionFn } from "@open-stock/stock-counter-client";

const id = '123';
const selections = ['123', '456'];

toggleSelectionFn(id, selections);

deleteManyInvoicesFn

deleteManyInvoicesFn is a function that is used to delete many invoices.

usage

import { deleteManyInvoicesFn, Invoice } from "@open-stock/stock-counter-client";

const invoices: Invoice[] = [
// ...
];
const selections = ['123', '456'];

const { success } = await deleteManyInvoicesFn('companyId', invoices, selections);

openBoxFn

openBoxFn is a function that is used to open a box.

usage

import { openBoxFn } from "@open-stock/stock-counter-client";

const val = '123';
const boxes = ['123', '456'];

openBoxFn(val, boxes);

transformNoInvId

transformNoInvId is a function that is used to transform a no invoice id.

usage

import { transformNoInvId } from "@open-stock/stock-counter-client";

const suffix = 'ABC';
const val = 123;

const result = transformNoInvId(suffix, val);

applyBlockDateSelect

Applies a block date select filter to the given data array based on the specified condition.

usage

import { applyBlockDateSelect, Estimate } from "@open-stock/stock-counter-client";

const estimates: Estimate[] = [
// ...
];

const result = applyBlockDateSelect(estimates, 'pending');

CalculationsController

CalculationsController is a class that is used to manage calculations. It is used by the StockCounterClient to manage calculations.

usage

import { CalculationsController } from "@open-stock/stock-counter-client";

const calculationsController = new CalculationsController();

// see file definition for all methods descriptions

InventoryController

InventoryController is a class that is used to manage inventory. It is used by the StockCounterClient to manage inventory.

usage

import { InventoryController } from "@open-stock/stock-counter-client";

const inventoryController = new InventoryController();

// see file definition for all methods descriptions

PaymentController

PaymentController is a class that is used to manage payments. It is used by the StockCounterClient to manage payments.

usage

import { PaymentController } from "@open-stock/stock-counter-client";

const paymentController = new PaymentController();

// see file definition for all methods descriptions
```ts

Documentation

The source code of the website can be found here. Contributions are welcome!

Sponsors

Become a sponsor and get your logo on our README on Github with a link to your site.

License

MIT

3.7.5

5 days ago

3.7.4

5 days ago

3.7.3

5 days ago

3.7.9

4 days ago

3.7.8

4 days ago

3.7.7

5 days ago

3.7.6

5 days ago

3.8.0

4 days ago

3.8.4

4 days ago

3.8.3

4 days ago

3.8.2

4 days ago

3.8.1

4 days ago

3.8.5

4 days ago

3.7.2

8 days ago

3.6.9

8 days ago

3.7.1

8 days ago

3.7.0

8 days ago

3.6.8

9 days ago

3.6.7

10 days ago

3.6.6

10 days ago

3.6.5

11 days ago

3.6.4

12 days ago

3.6.3

16 days ago

3.6.2

17 days ago

3.6.1

17 days ago

3.6.0

18 days ago

3.5.7

18 days ago

3.5.6

18 days ago

3.5.9

18 days ago

3.5.8

18 days ago

3.5.3

18 days ago

3.5.2

18 days ago

3.5.1

18 days ago

3.5.0

18 days ago

3.5.5

18 days ago

3.5.4

18 days ago

3.4.4

18 days ago

3.4.3

18 days ago

3.4.2

18 days ago

3.4.1

18 days ago

3.4.8

18 days ago

3.4.7

18 days ago

3.4.6

18 days ago

3.4.5

18 days ago

3.4.9

18 days ago

3.3.9

23 days ago

3.3.8

23 days ago

3.3.7

23 days ago

3.2.6

23 days ago

3.2.9

23 days ago

3.2.8

23 days ago

3.2.7

23 days ago

3.4.0

23 days ago

3.3.1

23 days ago

3.3.0

23 days ago

3.3.5

23 days ago

3.3.4

23 days ago

3.3.3

23 days ago

3.3.2

23 days ago

3.2.4

24 days ago

3.2.2

29 days ago

3.2.3

29 days ago

3.2.1

29 days ago

3.2.0

29 days ago

3.1.3

30 days ago

3.1.2

30 days ago

3.1.1

30 days ago

3.1.0

30 days ago

3.1.7

29 days ago

3.1.6

30 days ago

3.1.5

30 days ago

3.1.4

30 days ago

3.1.9

29 days ago

3.1.8

29 days ago

3.0.4

30 days ago

3.0.8

30 days ago

3.0.7

30 days ago

3.0.6

30 days ago

3.0.9

30 days ago

3.0.3

1 month ago

2.8.1

1 month ago

2.8.0

1 month ago

2.9.2

1 month ago

2.9.1

1 month ago

2.9.4

1 month ago

2.9.3

1 month ago

2.9.6

1 month ago

2.9.5

1 month ago

2.7.2

1 month ago

2.7.1

1 month ago

2.8.3

1 month ago

2.8.2

1 month ago

2.8.5

1 month ago

2.8.4

1 month ago

2.8.7

1 month ago

2.8.6

1 month ago

2.8.9

1 month ago

2.8.8

1 month ago

3.0.2

1 month ago

3.0.1

1 month ago

2.7.4

1 month ago

2.7.3

1 month ago

2.7.5

1 month ago

3.0.0

1 month ago

2.7.8

1 month ago

2.7.7

1 month ago

2.9.0

1 month ago

2.7.0

1 month ago

2.6.9

1 month ago

2.6.8

1 month ago

2.6.7

1 month ago

2.6.6

1 month ago

2.6.1

2 months ago

2.6.3

2 months ago

2.6.2

2 months ago

2.6.5

2 months ago

2.6.4

2 months ago

2.6.0

2 months ago

2.5.8

2 months ago

2.5.7

2 months ago

2.5.9

2 months ago

2.5.6

2 months ago

2.5.5

2 months ago

2.5.0

2 months ago

2.5.2

2 months ago

2.5.1

2 months ago

2.5.4

2 months ago

2.5.3

2 months ago

2.4.8

5 months ago

2.4.1

5 months ago

2.4.3

5 months ago

2.4.2

5 months ago

2.4.5

5 months ago

2.4.4

5 months ago

2.4.7

5 months ago

2.4.6

5 months ago

2.4.0

5 months ago

2.3.2

6 months ago

2.3.6

6 months ago

2.3.5

6 months ago

2.3.7

6 months ago

2.3.1

6 months ago

2.3.0

6 months ago

2.1.2

7 months ago

2.0.3

8 months ago

2.0.2

8 months ago

2.1.4

7 months ago

2.2.2

7 months ago

2.1.3

7 months ago

2.0.4

8 months ago

2.2.5

6 months ago

2.1.6

7 months ago

2.0.7

8 months ago

2.2.4

6 months ago

2.1.5

7 months ago

2.0.6

8 months ago

2.1.8

7 months ago

2.1.7

7 months ago

2.0.8

8 months ago

2.1.0

8 months ago

2.0.1

8 months ago

2.0.0

10 months ago

2.2.9

6 months ago

2.2.8

6 months ago

2.1.9

7 months ago

1.4.5

11 months ago

1.3.5

11 months ago

1.4.0

11 months ago

1.3.4

11 months ago

1.3.3

11 months ago

1.3.2

11 months ago

1.3.1

11 months ago

1.3.0

11 months ago

1.2.5

11 months ago

1.2.4

11 months ago

1.2.2

11 months ago

1.1.4

12 months ago

1.1.3

12 months ago

1.1.2

12 months ago

1.1.1

12 months ago

1.1.0

12 months ago

1.0.1

1 year ago

1.0.0

1 year ago