dphelper 0.2.48 → 0.2.57
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.editorconfig +15 -0
- package/.env +3 -0
- package/.eslintignore +8 -0
- package/.eslintrc.json +36 -0
- package/.gitattributes +2 -0
- package/.hintrc +11 -0
- package/.jsbeautifyrc +25 -0
- package/.jshintrc +14 -0
- package/.prettierignore +2 -0
- package/.prettierrc +7 -0
- package/.vscode/settings.json +54 -0
- package/3party/shortcut.js +224 -0
- package/backup.bat +43 -0
- package/data/list.json +19 -0
- package/dist/LICENSE +201 -0
- package/dist/README.md +176 -0
- package/index.d.ts +14 -0
- package/index.js +10 -2
- package/init.js +48 -0
- package/jest.config.js +18 -0
- package/package.json +127 -75
- package/public/assets/images/banner.png +0 -0
- package/public/assets/logos/logo.svg +64 -0
- package/scripts/anchorToOnClick.js +47 -0
- package/scripts/array.js +142 -0
- package/scripts/browser.js +65 -0
- package/scripts/console.js +86 -0
- package/scripts/coodinates.js +41 -0
- package/scripts/cookie.js +97 -0
- package/scripts/currency.js +41 -0
- package/scripts/date.js +101 -0
- package/scripts/disable.js +90 -0
- package/scripts/event.js +39 -0
- package/scripts/font.js +52 -0
- package/scripts/form.js +113 -0
- package/scripts/function.js +47 -0
- package/scripts/indexedDB.js +222 -0
- package/scripts/json.js +42 -0
- package/scripts/load.js +85 -0
- package/scripts/noCache.js +26 -0
- package/scripts/number.js +66 -0
- package/scripts/obj.js +81 -0
- package/scripts/onBeforeUnLoad.js +120 -0
- package/scripts/parseBool.js +27 -0
- package/scripts/path.js +94 -0
- package/scripts/promise.js +35 -0
- package/scripts/purge.js +53 -0
- package/scripts/screen.js +64 -0
- package/scripts/scrollbar.js +245 -0
- package/scripts/shortcut.js +70 -0
- package/scripts/storage.js +62 -0
- package/scripts/svg.js +372 -0
- package/scripts/text.js +78 -0
- package/scripts/time.js +41 -0
- package/scripts/timer.js +35 -0
- package/scripts/trigger.js +46 -0
- package/scripts/type.js +56 -0
- package/scripts/uuid.js +33 -0
- package/scripts/window.js +50 -0
- package/tests/ld-json-funtions.test.ts +21 -0
- package/tests/ld-json.test.ts +46 -0
- package/webpack.config.js +240 -0
- package/index.js.LICENSE.txt +0 -24
package/package.json
CHANGED
|
@@ -1,75 +1,127 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "dphelper",
|
|
3
|
-
"version": "0.2.
|
|
4
|
-
"description": "
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
"
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
},
|
|
24
|
-
"
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
"eslintConfig": {
|
|
35
|
-
"globals": {
|
|
36
|
-
"window": true
|
|
37
|
-
}
|
|
38
|
-
},
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
"
|
|
63
|
-
"
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
"
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "dphelper",
|
|
3
|
+
"version": "0.2.57",
|
|
4
|
+
"description": "Developer Tools",
|
|
5
|
+
"deprecated": false,
|
|
6
|
+
"appCode": "dphelper",
|
|
7
|
+
"appCodeRelease": "dphelper",
|
|
8
|
+
"appName": "dphelper",
|
|
9
|
+
"appType": "beta",
|
|
10
|
+
"appFolder": "/",
|
|
11
|
+
"appAPI": "api",
|
|
12
|
+
"apiDev": "",
|
|
13
|
+
"apiProd": "",
|
|
14
|
+
"main": "index.js",
|
|
15
|
+
"targets": {
|
|
16
|
+
"main": {
|
|
17
|
+
"includeNodeModules": {
|
|
18
|
+
"react": false,
|
|
19
|
+
"react-dom": false
|
|
20
|
+
},
|
|
21
|
+
"isLibrary": true
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
"engines": {
|
|
25
|
+
"node": ">=0.10.0"
|
|
26
|
+
},
|
|
27
|
+
"scripts": {
|
|
28
|
+
"make-dist": "webpack --progress --color --mode production --config webpack.config.js",
|
|
29
|
+
"git": "git add . && git commit -m \"(fix|patch)\" && git pull && git push --all",
|
|
30
|
+
"git-tags": "git push --tags",
|
|
31
|
+
"backup": "backup.bat",
|
|
32
|
+
"publish": "cd public && npm version patch --force && cd .. && npm version patch --force && webpack --progress --color --mode production --config webpack.config.js && npm run git && cd dist && npm publish"
|
|
33
|
+
},
|
|
34
|
+
"eslintConfig": {
|
|
35
|
+
"globals": {
|
|
36
|
+
"window": true
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"author": {
|
|
40
|
+
"name": "Dario Passariello",
|
|
41
|
+
"website": "https://dario.passariello.ca",
|
|
42
|
+
"email": "dariopassariello@gmail.com"
|
|
43
|
+
},
|
|
44
|
+
"contributors": [
|
|
45
|
+
{
|
|
46
|
+
"name": "Dario Passariello",
|
|
47
|
+
"email": "dariopassariello@gmail.com"
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"name": "Valeria Cala Scaglitta",
|
|
51
|
+
"email": "valeriacalascaglitta@gmail.com"
|
|
52
|
+
}
|
|
53
|
+
],
|
|
54
|
+
"keywords": [
|
|
55
|
+
"utils",
|
|
56
|
+
"tools",
|
|
57
|
+
"uuid",
|
|
58
|
+
"random",
|
|
59
|
+
"window",
|
|
60
|
+
"store",
|
|
61
|
+
"easy",
|
|
62
|
+
"pro",
|
|
63
|
+
"powerful",
|
|
64
|
+
"passariello"
|
|
65
|
+
],
|
|
66
|
+
"license": "Apache-2.0",
|
|
67
|
+
"homepage": "https://github.com/passariello/dphelper",
|
|
68
|
+
"funding": [
|
|
69
|
+
{
|
|
70
|
+
"type": "individual",
|
|
71
|
+
"url": "https://www.paypal.com/donate/?business=HC7LJ2ZXRRNDL&no_recurring=0&item_name=I+am+a+software+developer.+Just+a+donation+can+help+me+to+have+more+time+to+dedicate+on+this+project¤cy_code=CAD"
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"type": "patreon",
|
|
75
|
+
"url": "https://www.patreon.com/passariello"
|
|
76
|
+
}
|
|
77
|
+
],
|
|
78
|
+
"repository": {
|
|
79
|
+
"type": "git",
|
|
80
|
+
"url": "https://github.com/passariello/dpHelper",
|
|
81
|
+
"help": "https://github.com/passariello/dpHelper#readme"
|
|
82
|
+
},
|
|
83
|
+
"bugs": {
|
|
84
|
+
"url": "https://github.com/passariello/dpHelper/issues"
|
|
85
|
+
},
|
|
86
|
+
"devDependencies": {
|
|
87
|
+
"css-loader": "6.7.1",
|
|
88
|
+
"eslint": "8.10.0",
|
|
89
|
+
"file-loader": "6.2.0",
|
|
90
|
+
"jest": "27.5.1",
|
|
91
|
+
"less-loader": "10.2.0",
|
|
92
|
+
"sass-loader": "12.6.0",
|
|
93
|
+
"style-loader": "3.3.1",
|
|
94
|
+
"webpack-cli": "4.9.2"
|
|
95
|
+
},
|
|
96
|
+
"dependencies": {
|
|
97
|
+
"@babel/plugin-proposal-class-properties": "7.16.7",
|
|
98
|
+
"@babel/plugin-transform-runtime": "7.17.0",
|
|
99
|
+
"@babel/preset-env": "7.16.11",
|
|
100
|
+
"@babel/preset-react": "7.16.7",
|
|
101
|
+
"@babel/preset-typescript": "7.16.7",
|
|
102
|
+
"@testing-library/jest-dom": "^5.16.2",
|
|
103
|
+
"@testing-library/user-event": "^13.5.0",
|
|
104
|
+
"babel-loader": "8.2.3",
|
|
105
|
+
"classnames": "2.3.1",
|
|
106
|
+
"compression-webpack-plugin": "9.2.0",
|
|
107
|
+
"concurrently": "7.0.0",
|
|
108
|
+
"copy-webpack-plugin": "10.2.4",
|
|
109
|
+
"css": "3.0.0",
|
|
110
|
+
"dotenv": "16.0.0",
|
|
111
|
+
"fs": "0.0.1-security",
|
|
112
|
+
"html-webpack-plugin": "5.5.0",
|
|
113
|
+
"jquery": "3.6.0",
|
|
114
|
+
"jsdom-worker": "0.2.1",
|
|
115
|
+
"jshint": "^2.13.4",
|
|
116
|
+
"less": "4.1.2",
|
|
117
|
+
"path": "0.12.7",
|
|
118
|
+
"progress-bar-webpack-plugin": "2.1.0",
|
|
119
|
+
"react": "17.0.2",
|
|
120
|
+
"react-dom": "17.0.2",
|
|
121
|
+
"require": "2.4.20",
|
|
122
|
+
"sass": "1.49.9",
|
|
123
|
+
"ts-jest": "27.1.3",
|
|
124
|
+
"tslint": "6.1.3",
|
|
125
|
+
"webpack": "5.70.0"
|
|
126
|
+
}
|
|
127
|
+
}
|
|
Binary file
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
+
|
|
4
|
+
<svg
|
|
5
|
+
width="93.683228"
|
|
6
|
+
height="119.23308"
|
|
7
|
+
viewBox="0 0 99.148077 126.18834"
|
|
8
|
+
version="1.1"
|
|
9
|
+
id="svg5"
|
|
10
|
+
inkscape:export-filename="C:\Users\dario\Desktop\dphelper_manager_48.png"
|
|
11
|
+
inkscape:export-xdpi="9.000001"
|
|
12
|
+
inkscape:export-ydpi="9.000001"
|
|
13
|
+
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
|
|
14
|
+
sodipodi:docname="logo.svg"
|
|
15
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
16
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
17
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
18
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
19
|
+
<sodipodi:namedview
|
|
20
|
+
id="namedview7"
|
|
21
|
+
pagecolor="#ffffff"
|
|
22
|
+
bordercolor="#666666"
|
|
23
|
+
borderopacity="1.0"
|
|
24
|
+
inkscape:pageshadow="2"
|
|
25
|
+
inkscape:pageopacity="0.0"
|
|
26
|
+
inkscape:pagecheckerboard="0"
|
|
27
|
+
inkscape:document-units="mm"
|
|
28
|
+
showgrid="false"
|
|
29
|
+
inkscape:zoom="0.7500982"
|
|
30
|
+
inkscape:cx="556.59379"
|
|
31
|
+
inkscape:cy="359.95287"
|
|
32
|
+
inkscape:window-width="1920"
|
|
33
|
+
inkscape:window-height="1027"
|
|
34
|
+
inkscape:window-x="-8"
|
|
35
|
+
inkscape:window-y="-8"
|
|
36
|
+
inkscape:window-maximized="1"
|
|
37
|
+
inkscape:current-layer="layer1"
|
|
38
|
+
scale-x="4"
|
|
39
|
+
units="px" />
|
|
40
|
+
<defs
|
|
41
|
+
id="defs2">
|
|
42
|
+
<pattern
|
|
43
|
+
id="WMFhbasepattern"
|
|
44
|
+
patternUnits="userSpaceOnUse"
|
|
45
|
+
width="6"
|
|
46
|
+
height="6"
|
|
47
|
+
x="0"
|
|
48
|
+
y="0" />
|
|
49
|
+
</defs>
|
|
50
|
+
<g
|
|
51
|
+
inkscape:label="Layer 1"
|
|
52
|
+
inkscape:groupmode="layer"
|
|
53
|
+
id="layer1"
|
|
54
|
+
transform="translate(-89.565622,-102.08653)">
|
|
55
|
+
<path
|
|
56
|
+
style="fill:#0093dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37544"
|
|
57
|
+
d="m 166.83728,102.08653 -0.85247,4.03896 -0.60497,3.73603 -0.39875,3.46197 -0.19249,3.21673 -0.013,2.97152 0.17875,2.76958 0.32997,2.55319 0.495,2.36567 0.61873,2.22142 0.74246,2.06276 0.86623,1.93293 0.94873,1.81752 1.04496,1.73099 1.11372,1.65884 1.18245,1.60117 1.22373,1.55789 2.51617,3.07247 2.55742,3.1302 1.26496,1.63 1.22372,1.70213 1.1687,1.78869 1.12747,1.90408 1.04498,2.00504 0.96245,2.16374 0.86623,2.30797 0.75623,2.4955 0.64622,2.68301 0.49499,2.8994 0.34374,3.11576 0.19249,3.37541 0.0276,3.44755 -0.10994,3.30327 -0.23374,3.1879 -0.3575,3.04363 -0.49498,2.92826 -0.60498,2.79841 -0.72874,2.6686 -0.83871,2.55318 -0.94874,2.4378 -1.05871,2.30798 -1.1687,2.20701 -1.25122,2.07718 -1.37495,1.96176 -1.4437,1.84639 -1.55372,1.7454 -1.63621,1.61559 -1.71869,1.51461 -1.78745,1.41363 -1.88368,1.29823 -1.95243,1.19727 -2.00745,1.09629 -2.08993,0.99531 -2.15869,0.87991 -2.19992,0.79337 -2.26868,0.69238 -2.32368,0.59143 -2.37868,0.50486 -2.40618,0.4039 -2.46116,0.31735 -2.50244,0.21636 -2.54366,0.12976 -2.57118,0.0432 -2.57116,-0.0721 -2.52993,-0.21637 -2.50241,-0.36062 -2.46119,-0.49046 -2.41992,-0.62025 -2.37867,-0.76453 -2.32368,-0.87992 -2.26868,-1.00973 -2.22743,-1.12513 -2.15869,-1.24055 -2.08993,-1.34151 -2.03495,-1.47133 -1.96618,-1.55788 -1.89744,-1.65885 -1.81494,-1.77427 -1.74621,-1.84636 -1.64995,-1.94737 -1.58119,-2.0339 -1.484949,-2.12044 -1.402457,-2.207 -1.30622,-2.26471 -1.209952,-2.35124 -1.113716,-2.40896 -1.003724,-2.48106 -0.893717,-2.53878 -0.783726,-2.61089 -0.687489,-2.65416 -0.549972,-2.71188 -0.453736,-2.74072 -0.316251,-2.79842 -0.192489,-2.84169 -0.06869,-2.88496 0.06869,-2.91383 0.192489,-2.95708 0.329989,-2.98596 0.467491,-3.01477 0.591237,-3.0148 0.742477,-3.04363 0.879962,-3.02922 1.031219,-3.01479 1.168719,-3.00038 1.319959,-2.97151 1.45746,-2.92824 1.622439,-2.88498 1.773697,-2.82726 1.92495,-2.75515 2.08993,-2.69744 2.24119,-2.6109 2.40616,-2.50992 2.57118,-2.42336 2.73617,-2.30798 2.90115,-2.207 3.07991,-2.06275 3.2449,-1.93294 3.42364,-1.8031 3.6024,-1.64443 3.78112,-1.47133 3.95988,-1.31267 4.13863,-1.13955 4.33111,-0.93762 4.50985,-0.76452 4.70236,-0.54814 4.89486,-0.33177 z"
|
|
58
|
+
id="path30" />
|
|
59
|
+
<path
|
|
60
|
+
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37544"
|
|
61
|
+
d="m 136.91822,132.58065 0.30249,4.09665 0.48123,3.76489 0.64623,3.44753 0.81123,3.14461 0.93497,2.87054 1.07246,2.62532 1.18246,2.36568 1.29247,2.1493 1.3887,1.94735 1.47122,1.75984 1.5262,1.58673 1.59494,1.44249 1.6362,1.29823 1.6637,1.19725 1.6912,1.09629 1.70495,1.00975 1.67744,0.96645 1.67745,0.90877 1.64996,0.89434 1.60869,0.87991 1.53995,0.89435 1.4987,0.92318 1.40247,0.98089 1.31994,1.03859 1.20997,1.12515 1.11373,1.22611 0.9762,1.34151 0.83873,1.48575 0.68749,1.64442 0.52248,1.81755 0.35748,2.01946 0.165,2.22143 0.013,2.29355 -0.0687,2.20701 -0.15119,2.10602 -0.24747,2.0339 -0.33001,1.94735 -0.39873,1.87524 -0.48123,1.77425 -0.56374,1.70212 -0.63247,1.61559 -0.70123,1.54345 -0.78373,1.47135 -0.83873,1.38478 -0.90747,1.29823 -0.96246,1.24053 -1.03122,1.15399 -1.08623,1.08187 -1.15495,1.00974 -1.19622,0.93761 -1.25121,0.86549 -1.29247,0.8078 -1.34745,0.72123 -1.3887,0.66355 -1.42997,0.59142 -1.4712,0.51929 -1.51245,0.4616 -1.55371,0.40388 -1.58119,0.33178 -1.6087,0.27407 -1.63621,0.20194 -1.66369,0.14421 -1.6912,0.0866 -1.70495,0.0289 -1.71869,-0.0432 -1.6912,-0.14421 -1.6637,-0.24523 -1.64995,-0.31734 -1.6087,-0.41832 -1.58121,-0.50488 -1.53994,-0.59141 -1.5262,-0.67797 -1.47122,-0.73566 -1.4437,-0.83665 -1.3887,-0.89434 -1.36121,-0.98089 -1.30621,-1.03859 -1.26497,-1.11071 -1.20995,-1.16841 -1.15496,-1.24053 -1.11372,-1.29823 -1.04497,-1.35595 -0.98997,-1.41363 -0.93497,-1.45691 -0.86622,-1.5146 -0.81124,-1.55789 -0.72872,-1.61559 -0.67373,-1.64442 -0.60498,-1.70213 -0.52248,-1.73099 -0.45373,-1.77424 -0.37124,-1.80311 -0.28874,-1.83196 -0.22,-1.86081 -0.12375,-1.88964 -0.0413,-1.91851 0.0275,-1.93292 0.0825,-1.93293 0.15119,-1.94736 0.20625,-1.94734 0.26124,-1.94737 0.31624,-1.93292 0.37124,-1.94735 0.43998,-1.93294 0.48125,-1.9185 0.53623,-1.91851 0.60497,-1.88964 0.65998,-1.88965 0.70123,-1.8608 0.76997,-1.83197 0.81124,-1.81752 0.87996,-1.78869 0.92123,-1.75982 0.98997,-1.74541 1.03122,-1.68771 1.08622,-1.67328 1.14121,-1.61559 1.18246,-1.58672 1.25121,-1.54345 1.29247,-1.50019 1.34745,-1.45691 1.40246,-1.39921 1.44371,-1.34151 1.4987,-1.29823 1.5537,-1.24054 1.59495,-1.16842 1.64995,-1.12513 z"
|
|
62
|
+
id="path32" />
|
|
63
|
+
</g>
|
|
64
|
+
</svg>
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* dpHelper <https://github.com/passariello/dpHelper>
|
|
3
|
+
* Copyright (c) 2021, Dario Passariello.
|
|
4
|
+
* Licensed under the Apache-2.0 License.
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
/***********************************************************************/
|
|
8
|
+
|
|
9
|
+
var description = {
|
|
10
|
+
"name" : "Anchor To OnClick",
|
|
11
|
+
"description" : "test",
|
|
12
|
+
"version" : "0.0.1",
|
|
13
|
+
"command" : "anchorToOnClick",
|
|
14
|
+
"subCommand" : [],
|
|
15
|
+
"example" : "",
|
|
16
|
+
"author" : "Dario Passariello",
|
|
17
|
+
"active" : true
|
|
18
|
+
};
|
|
19
|
+
|
|
20
|
+
dphelper._list.scripts.push( description );
|
|
21
|
+
|
|
22
|
+
/***********************************************************************/
|
|
23
|
+
|
|
24
|
+
dphelper.anchorToOnClick = function( el ){
|
|
25
|
+
|
|
26
|
+
$( el + ' a' ).each( function( index ) {
|
|
27
|
+
|
|
28
|
+
let elem = $( this );
|
|
29
|
+
let href = elem.attr( 'href' );
|
|
30
|
+
|
|
31
|
+
if( href ){
|
|
32
|
+
elem
|
|
33
|
+
.on( 'mouseup', function(){
|
|
34
|
+
Loader( 'body' , null );
|
|
35
|
+
})
|
|
36
|
+
.css('cursor','pointer')
|
|
37
|
+
.addClass( dphelper.pathRail()[3].replace(/\//g, '') )
|
|
38
|
+
.removeAttr( 'href' )
|
|
39
|
+
.on( 'click', function(){
|
|
40
|
+
dphelper.browser.href( href );
|
|
41
|
+
dphelper.browser.push( '', '', href );
|
|
42
|
+
});
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
});
|
|
46
|
+
|
|
47
|
+
};
|
package/scripts/array.js
ADDED
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* dpHelper <https://github.com/passariello/dpHelper>
|
|
3
|
+
* Copyright (c) 2021, Dario Passariello.
|
|
4
|
+
* Licensed under the Apache-2.0 License.
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
/***********************************************************************/
|
|
8
|
+
|
|
9
|
+
var description = {
|
|
10
|
+
"name" : "Arrays",
|
|
11
|
+
"description" : "test",
|
|
12
|
+
"version" : "0.0.1",
|
|
13
|
+
"command" : "array",
|
|
14
|
+
"subCommand" : [
|
|
15
|
+
{
|
|
16
|
+
"name":"find",
|
|
17
|
+
"description":"test"
|
|
18
|
+
},{
|
|
19
|
+
"name":"unique",
|
|
20
|
+
"description":"test"
|
|
21
|
+
},{
|
|
22
|
+
"name":"delete",
|
|
23
|
+
"description":"test"
|
|
24
|
+
},{
|
|
25
|
+
"name":"merge",
|
|
26
|
+
"description":"test"
|
|
27
|
+
},{
|
|
28
|
+
"name":"asc",
|
|
29
|
+
"description":"test"
|
|
30
|
+
},{
|
|
31
|
+
"name":"desc",
|
|
32
|
+
"description":"test"
|
|
33
|
+
},{
|
|
34
|
+
"name":"duplicates",
|
|
35
|
+
"description":"test"
|
|
36
|
+
},{
|
|
37
|
+
"name":"even",
|
|
38
|
+
"description":"test"
|
|
39
|
+
},{
|
|
40
|
+
"name":"odd",
|
|
41
|
+
"description":"test"
|
|
42
|
+
}
|
|
43
|
+
],
|
|
44
|
+
"example" : "",
|
|
45
|
+
"author" : "Dario Passariello",
|
|
46
|
+
"active" : true
|
|
47
|
+
};
|
|
48
|
+
|
|
49
|
+
dphelper._list.scripts.push( description );
|
|
50
|
+
|
|
51
|
+
/***********************************************************************/
|
|
52
|
+
|
|
53
|
+
dphelper.array = {
|
|
54
|
+
|
|
55
|
+
// FIND
|
|
56
|
+
find: ( id, array )=>{
|
|
57
|
+
for (let node of array) {
|
|
58
|
+
if (node.id === id) return node;
|
|
59
|
+
|
|
60
|
+
if (node.children) {
|
|
61
|
+
let finalNode = dphelper.array.find(id, node.children);
|
|
62
|
+
if (finalNode) return finalNode;
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
return false;
|
|
66
|
+
},
|
|
67
|
+
|
|
68
|
+
// UNIQUE
|
|
69
|
+
unique: ( array ) => {
|
|
70
|
+
let unique = [...new Set( array )];
|
|
71
|
+
return unique;
|
|
72
|
+
},
|
|
73
|
+
|
|
74
|
+
// DELETE
|
|
75
|
+
delete: ( id, array ) => {
|
|
76
|
+
array.some(function iter (o,i,a) {
|
|
77
|
+
|
|
78
|
+
if (o.Id === id) {
|
|
79
|
+
a.splice(i, 1);
|
|
80
|
+
return true;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
for (let key of Object.keys(o)) {
|
|
84
|
+
let value = o[key];
|
|
85
|
+
if(value.length && typeof value === 'object') return value && value.map(iter);
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
// OLD SCHOOL WAY
|
|
89
|
+
//var key = Object.keys(o);
|
|
90
|
+
// for (var p=0; p < key.length; ++p){
|
|
91
|
+
// if( o[key[p]]?.length && typeof o[key[p]] === 'object') return o[key[p]] && o[key[p]].some(iter);
|
|
92
|
+
// }
|
|
93
|
+
|
|
94
|
+
});
|
|
95
|
+
|
|
96
|
+
},
|
|
97
|
+
|
|
98
|
+
// MERGE
|
|
99
|
+
merge: ( arrayA, arrayB ) => {
|
|
100
|
+
for (const key of Object.keys(arrayA)) {
|
|
101
|
+
if (arrayA[key] instanceof Object && arrayB[key]) Object.assign(arrayA[key], dphelper.mergeArrays(arrayB[key], arrayA[key]));
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
Object.assign(arrayB || {}, arrayA);
|
|
105
|
+
return arrayB;
|
|
106
|
+
},
|
|
107
|
+
|
|
108
|
+
// ASCENDING
|
|
109
|
+
asc: ( array ) => {
|
|
110
|
+
array.sort((a, b) => a - b);
|
|
111
|
+
return array;
|
|
112
|
+
},
|
|
113
|
+
|
|
114
|
+
// ASCENDING
|
|
115
|
+
desc: ( array ) => {
|
|
116
|
+
array.sort(function(a, b){ return b-a; });
|
|
117
|
+
return array;
|
|
118
|
+
},
|
|
119
|
+
|
|
120
|
+
// FIND DUPLICATES
|
|
121
|
+
duplicates: ( array ) => {
|
|
122
|
+
const toFindDuplicates = arr => arr.filter( (item, index) => arr.indexOf( item ) !== index);
|
|
123
|
+
const duplicateElements = toFindDuplicates( array );
|
|
124
|
+
return duplicateElements;
|
|
125
|
+
},
|
|
126
|
+
|
|
127
|
+
even: ( array ) => {
|
|
128
|
+
var cur = [];
|
|
129
|
+
for (var i = 0; i < array.length; i++) {
|
|
130
|
+
if (array[i] % 2 === 0 ) cur.push(array[i]);
|
|
131
|
+
} return cur;
|
|
132
|
+
},
|
|
133
|
+
|
|
134
|
+
odd: ( array ) => {
|
|
135
|
+
var cur = [];
|
|
136
|
+
for (var i = 0; i < array.length; i++) {
|
|
137
|
+
if (array[i] % 2) cur.push(array[i]);
|
|
138
|
+
} return cur;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
};
|
|
142
|
+
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* dpHelper <https://github.com/passariello/dpHelper>
|
|
3
|
+
* Copyright (c) 2021, Dario Passariello.
|
|
4
|
+
* Licensed under the Apache-2.0 License.
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
/***********************************************************************/
|
|
8
|
+
|
|
9
|
+
var description = {
|
|
10
|
+
"name" : "Browser",
|
|
11
|
+
"description" : "test",
|
|
12
|
+
"version" : "0.0.1",
|
|
13
|
+
"command" : "browser",
|
|
14
|
+
"subCommand" : [
|
|
15
|
+
{
|
|
16
|
+
"name":"state",
|
|
17
|
+
"description":"test"
|
|
18
|
+
},{
|
|
19
|
+
"name":"forw",
|
|
20
|
+
"description":"test"
|
|
21
|
+
},{
|
|
22
|
+
"name":"back",
|
|
23
|
+
"description":"test"
|
|
24
|
+
},{
|
|
25
|
+
"name":"reload",
|
|
26
|
+
"description":"test"
|
|
27
|
+
},{
|
|
28
|
+
"name":"href",
|
|
29
|
+
"description":"test"
|
|
30
|
+
}
|
|
31
|
+
],
|
|
32
|
+
"example" : "",
|
|
33
|
+
"author" : "Dario Passariello",
|
|
34
|
+
"active" : true
|
|
35
|
+
};
|
|
36
|
+
|
|
37
|
+
dphelper._list.scripts.push( description );
|
|
38
|
+
|
|
39
|
+
/***********************************************************************/
|
|
40
|
+
|
|
41
|
+
dphelper.browser = {
|
|
42
|
+
|
|
43
|
+
state: (state, title, url) => {
|
|
44
|
+
return history.pushState( state, title, url );
|
|
45
|
+
},
|
|
46
|
+
|
|
47
|
+
forw: ( times ) => {
|
|
48
|
+
return history.go( times );
|
|
49
|
+
},
|
|
50
|
+
|
|
51
|
+
back: ( times ) => {
|
|
52
|
+
return history.go( -Math.abs( times ) );
|
|
53
|
+
},
|
|
54
|
+
|
|
55
|
+
reload: () => {
|
|
56
|
+
// DISCARD POST
|
|
57
|
+
return window.location.href = window.location.href;
|
|
58
|
+
},
|
|
59
|
+
|
|
60
|
+
href: ( url ) => {
|
|
61
|
+
// DISCARD POST
|
|
62
|
+
return window.location.href = url;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
};
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* dpHelper <https://github.com/passariello/dpHelper>
|
|
3
|
+
* Copyright (c) 2021, Dario Passariello.
|
|
4
|
+
* Licensed under the Apache-2.0 License.
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
/***********************************************************************/
|
|
8
|
+
|
|
9
|
+
var description = {
|
|
10
|
+
"name" : "Console",
|
|
11
|
+
"description" : "test",
|
|
12
|
+
"version" : "0.0.1",
|
|
13
|
+
"command" : "console",
|
|
14
|
+
"subCommand" : [
|
|
15
|
+
{
|
|
16
|
+
"name":"info",
|
|
17
|
+
"description":"test"
|
|
18
|
+
},{
|
|
19
|
+
"name":"stop",
|
|
20
|
+
"description":"test"
|
|
21
|
+
}
|
|
22
|
+
],
|
|
23
|
+
"example" : "",
|
|
24
|
+
"author" : "Dario Passariello",
|
|
25
|
+
"active" : true
|
|
26
|
+
};
|
|
27
|
+
|
|
28
|
+
dphelper._list.scripts.push( description );
|
|
29
|
+
|
|
30
|
+
/***********************************************************************/
|
|
31
|
+
|
|
32
|
+
dphelper.printInfo = () => {
|
|
33
|
+
console.debug( 'dpHelper: Please use "dphelper.path.rail()"' );
|
|
34
|
+
return dphelper.console.info();
|
|
35
|
+
};
|
|
36
|
+
|
|
37
|
+
/***********************************************************************/
|
|
38
|
+
|
|
39
|
+
dphelper.console = {
|
|
40
|
+
|
|
41
|
+
info: () => {
|
|
42
|
+
console.groupCollapsed('%cApi:%c', "color:orange", "");
|
|
43
|
+
console.debug(dphelper.api);
|
|
44
|
+
console.groupEnd();
|
|
45
|
+
},
|
|
46
|
+
|
|
47
|
+
stop: () => {
|
|
48
|
+
|
|
49
|
+
let console = {};
|
|
50
|
+
console.log = function(){};
|
|
51
|
+
window.console = console;
|
|
52
|
+
if(!window.console) window.console = {};
|
|
53
|
+
|
|
54
|
+
const noop = () => {}
|
|
55
|
+
[
|
|
56
|
+
'assert',
|
|
57
|
+
'clear',
|
|
58
|
+
'count',
|
|
59
|
+
'debug',
|
|
60
|
+
'dir',
|
|
61
|
+
'dirxml',
|
|
62
|
+
'error',
|
|
63
|
+
'exception',
|
|
64
|
+
'group',
|
|
65
|
+
'groupCollapsed',
|
|
66
|
+
'groupEnd',
|
|
67
|
+
'info',
|
|
68
|
+
'log',
|
|
69
|
+
'markTimeline',
|
|
70
|
+
'profile',
|
|
71
|
+
'profileEnd',
|
|
72
|
+
'table',
|
|
73
|
+
'time',
|
|
74
|
+
'timeEnd',
|
|
75
|
+
'timeline',
|
|
76
|
+
'timelineEnd',
|
|
77
|
+
'timeStamp',
|
|
78
|
+
'trace',
|
|
79
|
+
'warn'
|
|
80
|
+
].forEach((method) => {
|
|
81
|
+
window.console[method] = noop;
|
|
82
|
+
});
|
|
83
|
+
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
};
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* dpHelper <https://github.com/passariello/dpHelper>
|
|
3
|
+
* Copyright (c) 2021, Dario Passariello.
|
|
4
|
+
* Licensed under the Apache-2.0 License.
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
/***********************************************************************/
|
|
8
|
+
|
|
9
|
+
var description = {
|
|
10
|
+
"name" : "Coordinates Tools",
|
|
11
|
+
"description" : "test",
|
|
12
|
+
"version" : "0.0.1",
|
|
13
|
+
"command" : "coords",
|
|
14
|
+
"subCommand" : [],
|
|
15
|
+
"example" : "",
|
|
16
|
+
"author" : "Dario Passariello",
|
|
17
|
+
"active" : true
|
|
18
|
+
};
|
|
19
|
+
|
|
20
|
+
dphelper._list.scripts.push( description );
|
|
21
|
+
|
|
22
|
+
/***********************************************************************/
|
|
23
|
+
//
|
|
24
|
+
|
|
25
|
+
let R = 6378.1;
|
|
26
|
+
dphelper.coords = {
|
|
27
|
+
|
|
28
|
+
degreesToRadians: ( degrees ) => {
|
|
29
|
+
var pi = Math.PI;
|
|
30
|
+
return degrees * (pi/180);
|
|
31
|
+
},
|
|
32
|
+
|
|
33
|
+
latToMeters: ( latitude , longitude ) => {
|
|
34
|
+
return R * Math.cos(latitude) * Math.cos(longitude);
|
|
35
|
+
},
|
|
36
|
+
|
|
37
|
+
lngToMeters: ( latitude , longitude ) => {
|
|
38
|
+
return R * Math.cos(latitude) * Math.sin(longitude);
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
};
|