📅 You're Invited: Meet the Socket team at RSAC (April 28 – May 1).RSVP
Socket
Sign inDemoInstall
Socket

gfdu

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gfdu

Global Frontend Developer Utils - Created by Muthukumar D

1.0.2
latest
Source
npm
Version published
Maintainers
1
Created
Source

gfdu

Global Frontend Developer Utils - Created by Muthukumar D

Commonly used plugins for Javascript based frameworks.

Install

with npm

npm install --save gfdu

Usage

For Api Calls

To Initialize Headers and Base Url for Api Calls, call the below method to initialize.

initializeApiCall(
    {
    "Content-Type":"application/json", // Remove or Change value for Content Type whatever you need
    "Authorization":"Bearer Token", // Remove or Change value for Authorization whatever you need
    "YOUR_CUSTOM_HEADERS" : "YOUR_CUSTOM_HEADERS_VALUE" // Add your Headers whatever you need
    }, 
    "BASEURL_STRING", // Must be your Base URL
    "WITH_CREDENTIALS", // With Credentials must be Boolean - true | false
    [{ 
        status_code : "401", // Kindly pass the status code to run the function mentioned in func key for all Api's
        func: "YOUR_FUNCTIONS" // Call your functions based on Status Code (status_code)
    },
    {
        status_code : "406", // Kindly pass the status code to run the function mentioned in func key for all Api's
        func: "YOUR_FUNCTIONS" // Call your functions based on Status Code (status_code)
    }]
);

For Example,

import {initializeApiCall} from "gfdu";
initializeApiCall(
    {
        "Content-Type":"application/json",
        "Authorization":"Bearer Token",
    }, 
    "BASE_URL",
    false,
    [
        {
            status_code:'401',
            func: () => (your_function1(),your_function2(),...)
        },
        {
            status_code:'406',
            func: () => (your_function1(),your_function2(),...)
        }
    ]
);

For Get Method, call getApiCall method to make the request and get the respsonse.

getApiCall('PART_OF_URL_STRING', (response) => {
    console.log(response);
});

For Post Method, call postApiCall method to make the request and get the respsonse.

var data = {} // Your POST Data's
postApiCall('PART_OF_URL_STRING', {data}, (response) => {
    console.log(response);
});

For Put Method, call putApiCall method to make the request and get the respsonse.

var data = {} // Your Data's
putApiCall('PART_OF_URL_STRING', {data}, (response) => {
    console.log(response);
});

For Patch Method, call patchApiCall method to make the request and get the respsonse.

var data = {} // Your Data's
patchApiCall('PART_OF_URL_STRING', {data}, (response) => {
    console.log(response);
});

For Delete Method, call deleteApiCall method to make the request and get the respsonse.

var data = {} // Your Data's
deleteApiCall('PART_OF_URL_STRING', {data}, (response) => {
    console.log(response);
});

For set item, use below to set the item to store in Cookie.

setCookie(name, value);

For set item with expiry, use below to set the item to store in Cookie with Expiry.

setCookieWithExpiry(name, value, no_of_expiry_days);

For get item, use below to get the item stored in Cookie.

getCookie(name);

For remove item, use below to remove the item stored in Cookie.

removeCookie(name);

For remove all items, use below to remove all the items stored in Cookie.

deleteAllCookies();

For storing items locally, Use set, get and remove Storage items.

For set item, use below to set the item to store in local storage.

storageSetItem(key, value);

For get item, use below to get the item stored in local storage.

storageGetItem(key);

For remove item, use below to remove the item stored in local storage.

storageRemoveItem(key);

For remove all items, use below to remove all items stored in local storage.

storageRemoveAll(key);

For storing items in session, Use set, get and remove Storage items in session.

For set item, use below to set the item to store in session storage.

sessionStorageSetItem(key, value);

For get item, use below to get the item stored in session storage.

sessionStorageGetItem(key);

For remove item, use below to remove the item stored in session storage.

sessionStorageRemoveItem(key);

For remove all items, use below to remove all items stored in session storage.

sessionStorageRemoveAll(key);

To Format Currency with Amount, Use the below to format currency.

currencyFormatter(amount, code);

For Example

currencyFormatter('120','INR'); // Returns ₹120

To Format Date with Time, Use the below to format.

showTimeZoneDate(full_date_with_time);

To Format Date and return only Date, Use the below to format.

showZoneDate(full_date_with_time);

To Format Time and return only Time, Use the below to format.

showZoneTime(date);

To capitalize the given text, Use the below to change the text to capitalized.

textCapitalize(text);

To return the value from Object.

To return the First Object Value from Object.

returnFirstDegreeObjValue(obj, key);

To return the Second Object Value from Object.

returnSecondDegreeObjValue(obj, key, postion);

To return the Third Object Value from Object.

returnThirdDegreeObjValue(masterobj, obj, key, postion);

To return the Fourth Object Value from Object.

returnFourthDegreeObjValue(masterobj, obj, key, postion, fourthObj);

To return the Fifth Object Value from Object.

returnFifthDegreeObjValue(masterobj, obj, key, postion, fourthObj, fifthObj);

To parse the Object.

parseJson(obj);

To stringify the JSON Object.

stringifyJson(obj);

To reload the window.

reloadWindow();

To reload the window to certain path.

reloadWindowToPath(path_to_load);

Author

This component is written by Muthukumar D.

License

Muthukumar D, 2023 © All Rights Reserved. [Muthukumar D]

Keywords

React

FAQs

Package last updated on 31 Jan 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts