Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mazeyqian/mazey
A functional library for daily front-end work/后除工作中使用的前端函数库
https://github.com/mazeyqian/mazey
javascript lib npm typescript
Last synced: 2 months ago
JSON representation
A functional library for daily front-end work/后除工作中使用的前端函数库
- Host: GitHub
- URL: https://github.com/mazeyqian/mazey
- Owner: mazeyqian
- License: mit
- Created: 2018-05-07T09:24:34.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2023-12-19T15:58:30.000Z (about 1 year ago)
- Last Synced: 2023-12-19T16:03:23.256Z (about 1 year ago)
- Topics: javascript, lib, npm, typescript
- Language: TypeScript
- Homepage: https://mazey.cn/t/m
- Size: 5.27 MB
- Stars: 3
- Watchers: 2
- Forks: 2
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
English | [简体中文](https://github.com/mazeyqian/mazey/blob/main/README_ZH.md)
# Mazey
[![npm version][npm-image]][npm-url]
[![l][l-image]][l-url][npm-image]: https://img.shields.io/npm/v/mazey
[npm-url]: https://npmjs.org/package/mazey
[l-image]: https://img.shields.io/npm/l/mazey
[l-url]: https://github.com/mazeyqian/mazeyMazey is a functional library for daily front-end work. There are already many excellent libraries for front-end development, but creating a file named `utils.js` or `common.js` is generally used to supply common functions in projects. It's boring to copy similar functions across multiple projects. That's why I've created this library and will keep updating it to serve as a reliable resource for front-end needs.
## Install
Use Mazey via [npm](https://www.npmjs.com/package/mazey).
```bash
npm install mazey --save
```Use Mazey from CDN.
```html
```
Of course, you can also download and serve the file [lib/mazey.min.js](https://cdn.jsdelivr.net/npm/mazey@latest/lib/mazey.min.js) yourself.
## Usage
Example: Use a function to verify if a value is a number suitable for standard calculations and comparisons.
Import from [npm](https://www.npmjs.com/package/mazey).
```javascript
import { isNumber } from 'mazey';const x = 123;
const y = Infinity;
// <=> typeof x === 'number' && !isNaN(x) && isFinite(x)
isNumber(x); // Output: true
isNumber(y); // Output: false
```Import from CDN.
```html
const x = Infinity;
// <=> typeof x === 'string' && !isNaN(x)
mazey.isNumber(x, { isInfinityAsNumber: true }); // Output: true```
## API Examples
There are some examples maintained by hand below. For more information, please check the [full documentation](https://mazey.cn/t/m).
### Table of Contents
- Generated with ❤️
- [Load Resource](#load-resource)
- [loadScript](#loadscript)
- [loadScriptIfUndefined](#loadscriptifundefined)
- [loadCSS](#loadcss)
- [loadImage](#loadimage)
- [windowLoaded](#windowloaded)
- [Util](#util)
- [isNumber](#isnumber)
- [isJSONString](#isjsonstring)
- [isValidData](#isvaliddata)
- [genRndNumString](#genrndnumstring)
- [formatDate](#formatdate)
- [debounce](#debounce)
- [throttle](#throttle)
- [convertCamelToKebab](#convertcameltokebab)
- [convertCamelToUnder](#convertcameltounder)
- [deepCopy](#deepcopy)
- [URL](#url)
- [getQueryParam](#getqueryparam)
- [getUrlParam](#geturlparam)
- [getHashQueryParam](#gethashqueryparam)
- [getDomain](#getdomain)
- [updateQueryParam](#updatequeryparam)
- [isValidUrl](#isvalidurl)
- [isValidHttpUrl](#isvalidhttpurl)
- [Store](#store)
- [Cookie](#cookie)
- [Storage](#storage)
- [DOM](#dom)
- [addStyle](#addstyle)
- [Class](#class)
- [newLine](#newline)
- [Calculate and Formula](#calculate-and-formula)
- [inRate](#inrate)
- [longestComSubstring](#longestcomsubstring)
- [longestComSubsequence](#longestcomsubsequence)
- [Browser Information](#browser-information)
- [getBrowserInfo](#getbrowserinfo)
- [isSafePWAEnv](#issafepwaenv)
- [Web Performance](#web-performance)
- [getPerformance](#getperformance)
- [Debug](#debug)
- [genCustomConsole](#gencustomconsole)### Load Resource
#### loadScript
Load a JavaScript file from the server and execute it.
Usage:
```javascript
loadScript(
'http://example.com/static/js/plugin-2.1.1.min.js',
{
id: 'iamid', // (Optional) script ID, default none
timeout: 5000, // (Optional) timeout, default `5000`
isDefer: false, // (Optional) defer, default `false`
}
)
.then(
res => {
console.log(`Load JavaScript script: ${res}`);
}
)
.catch(
err => {
console.error(`Load JavaScript script: ${err.message}`)
}
);
```Output:
```text
Load JavaScript script: loaded
```#### loadScriptIfUndefined
Load a script from the given URL if it (`window['attribute']`) has not already been loaded.
Usage:
```javascript
loadScriptIfUndefined('xyz', 'https://example.com/lib/xyz.min.js')
.then(() => {
console.log('xyz is loaded.');
})
.catch(err => {
console.log('Failed to load xyz.', err);
});
```Output:
```text
xyz is loaded.
```#### loadCSS
Load a CSS file from the server.
Usage:
```javascript
loadCSS(
'http://example.com/path/example.css',
{
id: 'iamid', // Optional, link ID, default none
}
)
.then(
res => {
console.log(`Load CSS Success: ${res}`);
}
)
.catch(
err => {
console.error(`Load CSS Fail: ${err.message}`)
}
);
```Output:
```text
Load CSS Success: loaded
```#### loadImage
Load an image from the given URL.
The target image will be loaded in the background, and the Promise status will change after the image is loaded. If the image fails to load, the Promise status will change to `reject` with the error object. If the image is loaded successfully, the Promise status will change to `resolve` with the image object. This method can be used to preload images and cache them in the browser. It can also be used to implement lazy loading of images.
Note that this method will not add the image to the DOM.
Usage:
```javascript
loadImage('https://example.com/example.png')
.then((img) => {
console.log(img);
})
.catch((err) => {
console.log(err);
});
```#### windowLoaded
Check whether the page is loaded successfully (Keep the compatibility if the browser's `load` event has been triggered).
Usage:
```javascript
windowLoaded()
.then(res => {
console.log(`Load Success: ${res}`);
})
.catch(err => {
console.log(`Load Timeout or Fail: ${err.message}`);
});
```Output:
```text
Load Success: load
```### Util
#### isNumber
Check whether it is a right number.
Usage:
```javascript
const ret1 = isNumber(123);
const ret2 = isNumber('123');
// Default: NaN, Infinity is not Number
const ret3 = isNumber(Infinity);
const ret4 = isNumber(Infinity, { isInfinityAsNumber: true });
const ret5 = isNumber(NaN);
const ret6 = isNumber(NaN, { isNaNAsNumber: true, isInfinityAsNumber: true });
console.log(ret1, ret2, ret3, ret4, ret5, ret6);
```Output:
```text
true false false true false true
```#### isJSONString
Check whether it is a valid JSON string.
Usage:
```javascript
const ret1 = isJSONString(`['a', 'b', 'c']`);
const ret2 = isJSONString(`["a", "b", "c"]`);
console.log(ret1);
console.log(ret2);
```Output:
```text
false
true
```#### isValidData
Determine the validity of the data.
Usage:
```javascript
const validData = {
a: {
b: {
c: 413
}
}
};
const isValidDataResA = isValidData(validData, ['a', 'b', 'c'], 2333);
const isValidDataResB = isValidData(validData, ['a', 'b', 'c'], 413);
const isValidDataResC = isValidData(validData, ['d', 'd'], 413);
console.log('isValidDataResA:', isValidDataResA);
console.log('isValidDataResB:', isValidDataResB);
console.log('isValidDataResC:', isValidDataResC);
```Output:
```text
isValidDataResA: false
isValidDataResB: true
isValidDataResC: false
```#### genRndNumString
Produce a random string of number, `genRndNumString(7)` => '7658495'.
Usage:
```javascript
const ret1 = genRndNumString(4);
const ret2 = genRndNumString(7);
console.log(ret1);
console.log(ret2);
```Output:
```text
9730
2262490
```#### formatDate
Return the formatted date string in the given format.
Usage:
```javascript
const ret1 = formatDate();
const ret2 = formatDate('Tue Jan 11 2022 14:12:26 GMT+0800 (China Standard Time)', 'yyyy-MM-dd hh:mm:ss');
const ret3 = formatDate(1641881235000, 'yyyy-MM-dd hh:mm:ss');
const ret4 = formatDate(new Date(2014, 1, 11), 'MM/dd/yyyy');
console.log('Default formatDate value:', ret1);
console.log('String formatDate value:', ret2);
console.log('Number formatDate value:', ret3);
console.log('Date formatDate value:', ret4);
```Output:
```text
Default formatDate value: 2023-01-11
String formatDate value: 2022-01-11 14:12:26
Number formatDate value: 2022-01-11 14:07:15
Date formatDate value: 02/11/2014
```#### debounce
Debounce
Usage:
```javascript
const foo = debounce(() => {
console.log('The debounced function will only be invoked in 1000 milliseconds, the other invoking will disappear during the wait time.');
}, 1000, true);
```#### throttle
Throttle
Usage:
```javascript
const foo = throttle(() => {
console.log('The function will be invoked at most once per every wait 1000 milliseconds.');
}, 1000, { leading: true });
```Reference: [Lodash](https://lodash.com/docs/4.17.15#throttle)
#### convertCamelToKebab
Transfer CamelCase to KebabCase.
Usage:
```javascript
const ret1 = convertCamelToKebab('ABC');
const ret2 = convertCamelToKebab('aBC');
console.log(ret1);
console.log(ret2);
```Output:
```text
a-b-c
a-b-c
```#### convertCamelToUnder
Transfer CamelCase to Underscore.
Usage:
```javascript
const ret1 = convertCamelToUnder('ABC');
const ret2 = convertCamelToUnder('aBC');
console.log(ret1);
console.log(ret2);
```Output:
```text
a_b_c
a_b_c
```#### deepCopy
Copy/Clone Object deeply.
Usage:
```javascript
const ret1 = deepCopy(['a', 'b', 'c']);
const ret2 = deepCopy('abc');
console.log(ret1);
console.log(ret2);
```Output:
```text
['a', 'b', 'c']
abc
```### URL
#### getQueryParam
Get the query param's value of the current Web URL(`location.search`).
Usage:
```javascript
// http://example.com/?t1=1&t2=2&t3=3&t4=4#2333
// ?t1=1&t2=2&t3=3&t4=4
const p1 = getQueryParam('t3');
const p2 = getQueryParam('t4');
console.log(p1, p2);
```Output:
```text
3 4
```#### getUrlParam
Returns the value of the specified query parameter in the input URL.
Usage:
```javascript
const p1 = getUrlParam('http://example.com/?t1=1&t2=2&t3=3&t4=4', 't3');
const p2 = getUrlParam('http://example.com/?t1=1&t2=2&t3=3&t4=4', 't4');
console.log(p1, p2);
```Output:
```text
3 4
```#### getHashQueryParam
Get the hash query param's value of the current Web URL(`location.hash`).
Usage:
```javascript
// http://example.com/?#2333?t1=1&t2=2&t3=3&t4=4
// #2333?t1=1&t2=2&t3=3&t4=4
const p1 = getHashQueryParam('t3');
const p2 = getHashQueryParam('t4');
console.log(p1, p2);
```Output:
```text
3 4
```#### getDomain
Get the domain of URL, and other params.
Usage:
```javascript
const ret1 = getDomain('http://example.com/?t1=1&t2=2&t3=3&t4=4');
const ret2 = getDomain('http://example.com/test/thanks?t1=1&t2=2&t3=3&t4=4', ['hostname', 'pathname']);
const ret3 = getDomain('http://example.com:7890/test/thanks', ['hostname']);
const ret4 = getDomain('http://example.com:7890/test/thanks', ['host']); // With Port
const ret5 = getDomain('http://example.com:7890/test/thanks', ['origin']);
const ret6 = getDomain('http://example.com:7890/test/thanks?id=1', ['origin', 'pathname', 'search']);
console.log(ret1);
console.log(ret2);
console.log(ret3);
console.log(ret4);
console.log(ret5);
console.log(ret6);
```Output:
```text
example.com
example.com/test/thanks
example.com
example.com:7890
http://example.com:7890
http://example.com:7890/test/thanks?id=1
```#### updateQueryParam
Update the query param's value of the input URL.
Usage:
```javascript
const ret1 = updateQueryParam('http://example.com/?t1=1&t2=2&t3=3&t4=4', 't3', 'three');
const ret2 = updateQueryParam('http://example.com/?t1=1&t2=2&t3=3&t4=4', 't4', 'four');
console.log(ret1);
console.log(ret2);
```Output:
```text
http://example.com/?t1=1&t2=2&t3=three&t4=4
http://example.com/?t1=1&t2=2&t3=3&t4=four
```#### isValidUrl
Checks if the given string is a valid URL, including **scheme URLs**.
Usage:
```javascript
const ret1 = isValidUrl('https://www.example.com');
const ret2 = isValidUrl('http://example.com/path/exx/ss');
const ret3 = isValidUrl('https://www.example.com/?q=hello&age=24#world');
const ret4 = isValidUrl('http://www.example.com/#world?id=9');
const ret5 = isValidUrl('ftp://example.com');
console.log(ret1, ret2, ret3, ret4, ret5);
```Output:
```text
true true true true true
```If you are specifically checking for HTTP/HTTPS URLs, it is recommended to use the `isValidHttpUrl` function instead.
The `isValidUrl` function matches all scheme URLs, including FTP and other non-HTTP schemes.#### isValidHttpUrl
Check if the given string is a valid HTTP/HTTPS URL.
Usage:
```javascript
const ret1 = isValidHttpUrl('https://www.example.com');
const ret2 = isValidHttpUrl('http://example.com/path/exx/ss');
const ret3 = isValidHttpUrl('https://www.example.com/?q=hello&age=24#world');
const ret4 = isValidHttpUrl('http://www.example.com/#world?id=9');
const ret5 = isValidHttpUrl('ftp://example.com');
console.log(ret1, ret2, ret3, ret4, ret5);
```Output:
```text
true true true true false
```### Store
#### Cookie
Handle Cookie.
Usage:
```javascript
setCookie('test', '123', 30, 'example.com'); // key value day domain
const ret = getCookie('test');
console.log(ret);
```Output:
```text
123
```#### Storage
Handle Storage (Keep fit for JSON, it can transfer format automatically).
Usage:
```javascript
setSessionStorage('test', '123');
const ret1 = getSessionStorage('test');
setLocalStorage('test', '123');
const ret2 = getLocalStorage('test');
console.log(ret1, ret2);// or package in usage
const projectName = 'mazey';
function mSetLocalStorage (key, value) {
return setLocalStorage(`${projectName}_${key}`, value);
}function mGetLocalStorage (key) {
return getLocalStorage(`${projectName}_${key}`);
}
```Output:
```text
123 123
```### DOM
#### addStyle
Add `` in `<head>`.
Example 1: Add the `<style>` with `id`, and repeated invoking will update the content instead of adding a new one.
```javascript
addStyle(
`
body {
background-color: #333;
}
`,
{
id: 'test',
}
);
// <style id="test">
// body {
// background-color: #333;
// }
//
```Example 2: Add the `` without `id`, and repeated invoking will add a new one.
```javascript
addStyle(
`
body {
background-color: #444;
}
`
);
// <style>
// body {
// background-color: #444;
// }
//
```#### Class
Modify `class`.
Usage:
```javascript
const dom = document.querySelector('#box');// Determine `class`
hasClass(dom, 'test');
// Add `class`
addClass(dom, 'test');
// Remove `class`
removeClass(dom, 'test');
```#### newLine
Make a new line of HTML.
Usage:
```javascript
const ret1 = newLine('a\nb\nc');
const ret2 = newLine('a\n\nbc');
console.log(ret1);
console.log(ret2);
```Output:
```text
a
b
c
a
bc
```### Calculate and Formula
#### inRate
Hit probability (1% ~ 100%).
Usage:
```javascript
const ret = inRate(0.5); // 0.01 ~ 1 true/false
console.log(ret);
```Output:
```text
true
```Example: Test the precision.
```javascript
// Test
let trueCount = 0;
let falseCount = 0;
new Array(1000000).fill(0).forEach(() => {
if (inRate(0.5)) {
trueCount++;
} else {
falseCount++;
}
});
console.log(trueCount, falseCount); // 499994 500006
```#### longestComSubstring
Computes the longest common substring of two strings.
Usage:
```javascript
const ret = longestComSubstring('fish', 'finish');
console.log(ret);
```Output:
```text
3
```#### longestComSubsequence
Computes the longest common subsequence of two strings.
Usage:
```javascript
const ret = longestComSubsequence('fish', 'finish');
console.log(ret);
```Output:
```text
4
```### Browser Information
#### getBrowserInfo
Browser Information
Usage:
```javascript
const ret = getBrowserInfo();
console.log(ret);
```Output:
```text
{"engine":"webkit","engineVs":"537.36","platform":"desktop","supporter":"chrome","supporterVs":"85.0.4183.121","system":"windows","systemVs":"10"}
```Results:
| Attribute | Description | Type | Values |
| :------------ | :------------ | :------------ | :------------ |
| **system** | System | string | android, ios, windows, macos, linux |
| systemVs | System version | string | Windows: 2000, xp, 2003, vista, 7, 8, 8.1, 10 macOS: ... |
| platform | Platform | string | desktop, mobile |
| engine | Engine | string | webkit, gecko, presto, trident |
| engineVs | Engine version | string | - |
| supporter | Supporter | string | edge, opera, chrome, safari, firefox, iexplore |
| supporterVs | Supporter version | string | - |
| shell | Shell | string | (Optional) wechat, qq_browser, qq_app, uc, 360, 2345, sougou, liebao, maxthon, bilibili |
| shellVs | Shell version | string | (Optional) 20/... |
| appleType | Apple device type | string | (Optional) ipad, iphone, ipod, iwatch |Example: Determine the environment of the mobile QQ.
```javascript
const { system, shell } = getBrowserInfo();
const isMobileQQ = ['android', 'ios'].includes(system) && ['qq_browser', 'qq_app'].includes(shell);
```#### isSafePWAEnv
Detect the margin of Safety. Determine if it is a secure PWA environment that it can run.
Usage:
```javascript
const ret = isSafePWAEnv();
console.log(ret);
```Output:
```text
true
```### Web Performance
#### getPerformance
Get page load time(`PerformanceNavigationTiming`).
This function uses the [`PerformanceNavigationTiming`](https://developer.mozilla.org/en-US/docs/Web/API/PerformanceNavigationTiming) API to get page load time data.
The `PerformanceNavigationTiming` API provides more accurate and detailed information about page load time than the deprecated [`PerformanceTiming`](https://developer.mozilla.org/en-US/docs/Web/API/PerformanceTiming) API.
If you are using an older browser that does not support `PerformanceNavigationTiming`, you can still use the `PerformanceTiming` API by using the previous version of this library ([`v3.9.7`](https://github.com/mazeyqian/mazey/releases/tag/v3.9.7)).Usage:
```javascript
// `camelCase:false` (Default) Return underline(`a_b`) data.
// `camelCase:true` Return hump(`aB`) data.
getPerformance()
.then(res => {
console.log(JSON.stringify(res));
})
.catch(console.error);
```Output:
```text
{"source":"PerformanceNavigationTiming","os":"others","os_version":"","device_type":"pc","network":"4g","screen_direction":"","unload_time":0,"redirect_time":0,"dns_time":0,"tcp_time":0,"ssl_time":0,"response_time":2,"download_time":2,"first_paint_time":288,"first_contentful_paint_time":288,"dom_ready_time":0,"onload_time":0,"white_time":0,"render_time":0,"decoded_body_size":718,"encoded_body_size":718}
```Results:
| Attribute | Description | Type | Values |
| :------------ | :------------ | :------------ | :------------ |
| dns_time | DNS Lookup | number | domainLookupEnd - domainLookupStart |
| tcp_time | Connection Negotiation | number | connectEnd - connectStart |
| response_time | Requests and Responses | number | responseStart - requestStart |
| white_time | White Screen | number | responseStart - navigationStart |
| dom_ready_time | Dom Ready | number | domContentLoadedEventStart - navigationStart |
| onload_time | Onload | number | loadEventStart - navigationStart |
| render_time | EventEnd | number | loadEventEnd -navigationStart |
| unload_time | Unload | number | (Optional) unloadEventEnd - unloadEventStart |
| redirect_time | Redirect | number | (Optional) redirectEnd - redirectStart |
| ssl_time | SSL | number | (Optional) connectEnd - secureConnectionStart |
| download_time | Download | number | (Optional) responseEnd - responseStart |### Debug
#### genCustomConsole
Custom console printing (`console`).
Usage:
```javascript
const myConsole = genCustomConsole('MazeyLog:');
myConsole.log('I am string.');
myConsole.info('I am boolean.', true);
myConsole.info('I am number.', 123, 456);
myConsole.info('I am object.', { a: 123, b: 456});
```Output:
```text
MazeyLog: I am string.
MazeyLog: I am boolean. true
MazeyLog: I am number. 123 456
MazeyLog: I am object. {a: 123, b: 456}
```## Contributing
### Development Environment
| Dependency | Version |
|------------|----------|
| Node.js | v16.19.0 |
| TypeScript | v5.1.6 |### Scripts
Install Dependencies:
```bash
npm i
```Development:
```bash
npm run dev
```Build:
```bash
npm run build
```Test:
```bash
npm run test
```Document:
```bash
npm run docs
```### Returns
| Values | Description | Type |
| :-------- | :--------------------------------------- | :------ |
| ok | The operation was successful. | string |
| loaded | Some assets have been loaded. | string |
| fail | An error occurred. | string |
| defined | The value is defined. | string |
| undefined | The value is undefined. | string |
| timeout | The operation timed out. | string |
| true | The value is true. | boolean |
| false | The value is false. | boolean |## License
This software is released under the terms of the [MIT license](https://github.com/mazeyqian/mazey/blob/main/LICENSE).