![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
@apicart/js-utils
Advanced tools
Website: https://apicart.net
Sign Up: https://accounts.apicart.net/
Content
<!-- Master version from Github -->
<script src="https://cdn.jsdelivr.net/gh/apicart/js-utils/dist/utils.min.js"></script>
<!-- v1.0.0-alpha1 from jsdelivr.net -->
<script src="https://cdn.jsdelivr.net/npm/@apicart/js-utils@1.0.0-alpha1/dist/utils.min.js" integrity="sha256-eo4u9fSxiYhrAT7PpLhbWEFHsiuBnTV0krDfY7VeQE4=" crossorigin="anonymous"></script>
npm i @apicart/js-utils
yarn add @apicart/js-utils
This component simplifies work with the XMLHttpRequest.
Parameters
Parameter | async | cache | data | headers | method | queryParameters | timeout | url | withCredentials | start | complete |
---|---|---|---|---|---|---|---|---|---|---|---|
Type | boolean | boolean | object | object | string | object | number | string | boolean | function | function |
Default value | true | true | {} | {} | get | {} | 5000 | '' | false | function() {} | function() {} |
get(url: string, parameters: any = {}): Promise<any>
post(url: string, parameters: any = {}): Promise<any>
request(parameters: any = {}): Promise<any>
Utils.Ajax.get('https://example.com', {
complete: function (response){
alert('Done');
}
});
Utils.Ajax.post('https://example.com', {
complete: function (response){
alert('Done');
}
});
Utils.Ajax.request({
url: 'https://example.com',
method: 'post',
complete: function (response){
alert('Done');
}
});
Wraps the default browser console and ensures the cross-browser compatibility.
error(...args: any[]): Console
Utils.Console.error('Some', 'Value');
log(...args: any[]): Console
Utils.Console.log('Some', 'Value');
warn(...args: any[]): this
Utils.Console.warn('Some', 'Value');
Simplifies work with Document Object Model.
addClass(element: Element, classes: string|string[]): Dom
Adds one or multiple classes to selected elements.
Utils.Dom.addClass(document.querySelector('.element'), 'first second third');
findParent(element: Element, selector: string): Element|null
Returns element parent based on selector. If the parent was not found, returns null.
Utils.Dom.findParent(Element $element, '.parent');
matches(element: Element, selector: string): boolean
Returns true if element matches selector. If not, returns false.
Utils.Dom.matches(document.querySelector('.element', '.selected');
on(eventTypes: string|string[], selectors: string|string[], callback: Function): this
Adds event listener to selected elements. Works even on dynamically added elements.
Utils.Dom.on('click', '.element', function() {...});
removeClass(element: Element, classes: string): Dom
Removes one or multiple classes from selected elements.
Utils.Dom.removeClass(document.querySelector('.element'), 'first second third');
trigger(element: any[], event: string): this
Triggers an event on selected element.
Utils.Dom.trigger(document.querySelector('.button'), 'click');
Event dispatcher allows you communicate between components based on events.
If for example a product was added into the cart, you can trigger productAddedIntoCart
event.
Listeners waiting for this event will be triggered with given values.
addListener(listenerKey: string, event: string|string[], callback: Function, singleAction: boolean = false): EventDispatcher
This method registers listener. If the singleAction
parameter is set to true, the listener will be triggered only once (it is useful for dynamically generated listeners).
Utils.EventDispatcher.addListener('number-dumper', 'send-number', function (number) {
console.log(number);
}, true); // Single action is set to true, so the listener will be triggered only once
Utils.EventDispatcher.addListener('product-popup', 'product-added-into-cart', function (parameters) {...});
removeListener(listenerKey: string, event: string|string[]): this
Removes listener from given event.
Utils.EventDispatcher.removeListener('listener', 'event1 event2');
Utils.EventDispatcher.removeListener('listener', ['event1', 'event2']);
Utils.EventDispatcher.removeListener('number-dumper', 'send-number');
dispatchEvent(event: string|string[], parameters: any|null = []): EventDispatcher
Triggers selected event. Given parameters are provided to the listeners.
Utils.EventDispatcher.dispatchEvent('event1 event2');
Utils.EventDispatcher.dispatchEvent(['event1', 'event2']);
Utils.EventDispatcher.dispatchEvent('rozesli-cislo', 1);
isJson(content: any|null): boolean
Checks if the provided data are json. If not returns false.
Utils.Json.isJson('{a: "b"}'); // true
Utils.Json.isJson('Text'); // false
parse(content: any|null): any
Converts json to object. If the provided data are not json, returns an empty object.
Utils.Json.parse('{a: "b"}'); // {a: "b"}
stringify(object: any): string
Converts javascript object into json.
Utils.Json.stringify({a: "b"}); // "{a: "b"}"
clear(): this
Clears local storage
Utils.LocalStorage.clear();
getItem(key: string): any | null
Returns item parsed as json
Utils.LocalStorage.getItem('someItem');
setItem(key: string, value: any, expiration: number | null = null): this
Saves item into local storage. Automatically converts any possible type into json and stringifies it.
Utils.LocalStorage.setItem('someItem', {a: 1});
removeItem(key: string): this
Removes item from local storage.
Utils.LocalStorage.removeItem('someItem');
hasItem(key: string): boolean
Returns true if given key exists in the local storage
Utils.LocalStorage.hasItem('someItem');
getActualTimestamp(): number
Returns actual time in timestamp
Utils.LocalStorage.getActualTimestamp();
forEach(iterable: any | null, callback: Function): Loops
Function that is able to iterate over objects and arrays. Inside this function the this
object is an object containing counter, iterableLength parameters and isFirst, isLast, isEven, isOdd functions.
Utils.Loops.forEach([1, 2, 3], function(value, key) {...});
Utils.Loops.forEach([1, 2, 3], function(value, key) {console.log(this.counter, this.isFirst());...});
Utils.Loops.forEach(document.querySelectorAll('.element'), function(element, key) {...});
assign(object: Object, keyPath: string|string[], value: any): void
Polyfill of the Object.assign for older browsers. Is able to assign nested properties.
var a = {x: 1};
Utils.Objects.assign(a, 'y.z', 2); // {x: 1, y: {z: 2}}
copy(object: Object): Object
Returns a new copy of the provided object. Object copy is without a reference to copied object.
Utils.Objects.copy({a: "b"}); // {a: "b"}
delete(object: Object, keyPath: string|string[]): void
Removes keys from object. Is able to remove nested keys.
Utils.Objects.delete({a: {b: {c: "1", d: "2"}}}, 'a.b.c'); // {a: {b: {d: "2"}}}
find(object: Object, keyPath: string|string[]): any | null
This method is able to find a value according to provided key. The key can be arbitrarily nested. If the key doesnt exists, returns null.
Utils.Objects.find({a: {b: {c: "1"}}}, 'a.b.c'); // 1
keyExists(object: Object, keyPath: string|string[]): boolean
Returns true if given path exists
Utils.Objects.keyExists('some.nested.key');
isObject(data: any): boolean
Checks if the provided data are object.
Utils.Objects.isObject({a: "b"}); // true
Utils.Objects.isObject(null); // false
Utils.Objects.isObject([]); // false
merge(...args: Object[]): Object
Merges two or more objects into a new one. The new object is without reference to the merged objects.
Utils.Objects.merge({a: "1"}, {b: "2"}); // {a: "1", b: "2"}
Utils.Objects.merge({a: {b: "1"}}, {a: {c: "2"}}); // {a: {b: "1", c: "2"}}
values(object: Object): any[]
Removes keys from provided object and returns its data. Odstraní klíče daného objektu a vrátí jejich data.
Utils.Objects.values({a: "b", c: "d"}): // ["b", "d"]
firstToUpper(string: string): string
Converts first letter of the given string to upper case.
Utils.Strings.firstToUpper('test') // Test
generateHash(length: number, characters = 'abcdefghijklmnopqrstuvwxyz0123456789'): string
Generates hash from given characters and length. Vytvoří hash o dané délce ze zadaných znaků.
Utils.Strings.generateHash(32) // 32 characters long hash
sprintf(content: string, parameters: any[]): string
Replaces placeholders by given values.
Utils.Strings.sprintf('%0% je %1%', ['Apicart', 'nejlepší']) // Apicart je nejlepší
Utils.Strings.sprintf('%spolecnost% je %hodnoceni%', {spolecnost: 'Apicart', hodnoceni: 'nejlepší'}) // Apicart je nejlepší
getQueryParameter(name: string, url: string = (<any>window).location.href): string|null
Returns query parameter from the given url. If the parameter was not found, returns null.
Utils.Url.getQueryParameter('number', 'https://example.com?number=1') // 1
isEmpty(data: any): boolean
Returns true if the provided data are empty. Otherwise returns false.
Utils.Validators.isEmpty([]) // true
Utils.Validators.isEmpty({}) // true
Utils.Validators.isEmpty('') // true
Flash messages allows you to persist messages through redirects.
addMessage(content: any, type: string | null = null): this
Adds message. You can provide a custom type.
Utils.FlashMessages.addMessage('Text');
Utils.FlashMessages.addMessage('Warning!', 'warning');
getMessages(): Object
Returns messages.
Utils.FlashMessages.getMessages();
hasMessages(type: string | null = null): boolean
Returns true if there are some persisted messages.
Utils.FlashMessages.hasMessages();
processMessages(callback: Function, type: string | null = null): this
Iterates over messages. If the type is set, the iteration is done only over the messages of the given type.
Utils.FlashMessages.processMessages(function (message, type) { ... }); // Processes all messages
Utils.FlashMessages.processMessages(function (message, typ) { ... }, 'info'); // Processes only the info messages
FAQs
A small set of useful utilities for easier development
The npm package @apicart/js-utils receives a total of 0 weekly downloads. As such, @apicart/js-utils popularity was classified as not popular.
We found that @apicart/js-utils demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.