@vdegenne/links 1.0.0 → 1.0.2
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/lib/index.d.ts +24 -0
- package/lib/index.d.ts.map +1 -0
- package/lib/index.js +63 -0
- package/lib/index.js.map +1 -0
- package/package.json +2 -1
package/lib/index.d.ts
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright (c) 2023 Valentin Degenne
|
|
4
|
+
* SPDX-License-Identifier: MIT
|
|
5
|
+
*/
|
|
6
|
+
/**
|
|
7
|
+
* Google related links
|
|
8
|
+
*/
|
|
9
|
+
export declare function googleImagesUrl(input: string): string;
|
|
10
|
+
export declare function googleImagesOpen(input: string): void;
|
|
11
|
+
export declare function googleTranslateUrl(input: string): string;
|
|
12
|
+
export declare function googleTranslateOpen(input: string): void;
|
|
13
|
+
/**
|
|
14
|
+
* Japanese related
|
|
15
|
+
*/
|
|
16
|
+
export declare function jishoUrl(input: string): string;
|
|
17
|
+
export declare function jishoOpen(input: string): void;
|
|
18
|
+
export declare function gooUrl(input: string): string;
|
|
19
|
+
export declare function gooOpen(input: string): void;
|
|
20
|
+
export declare function weblioUrl(input: string): string;
|
|
21
|
+
export declare function weblioOpen(input: string): void;
|
|
22
|
+
export declare function kotobankUrl(input: string): string;
|
|
23
|
+
export declare function kotobankOpen(input: string): void;
|
|
24
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAUH;;GAEG;AAEH,wBAAgB,eAAe,CAAC,KAAK,EAAE,MAAM,UAE5C;AACD,wBAAgB,gBAAgB,CAAC,KAAK,EAAE,MAAM,QAE7C;AAGD,wBAAgB,kBAAkB,CAAC,KAAK,EAAE,MAAM,UAI/C;AACD,wBAAgB,mBAAmB,CAAC,KAAK,EAAE,MAAM,QAEhD;AAED;;GAEG;AAEH,wBAAgB,QAAQ,CAAC,KAAK,EAAE,MAAM,UAErC;AACD,wBAAgB,SAAS,CAAC,KAAK,EAAE,MAAM,QAEtC;AAGD,wBAAgB,MAAM,CAAC,KAAK,EAAE,MAAM,UAKnC;AACD,wBAAgB,OAAO,CAAC,KAAK,EAAE,MAAM,QAEpC;AAGD,wBAAgB,SAAS,CAAC,KAAK,EAAE,MAAM,UAEtC;AACD,wBAAgB,UAAU,CAAC,KAAK,EAAE,MAAM,QAEvC;AAGD,wBAAgB,WAAW,CAAC,KAAK,EAAE,MAAM,UAExC;AACD,wBAAgB,YAAY,CAAC,KAAK,EAAE,MAAM,QAEzC"}
|
package/lib/index.js
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright (c) 2023 Valentin Degenne
|
|
4
|
+
* SPDX-License-Identifier: MIT
|
|
5
|
+
*/
|
|
6
|
+
function open(url, newTab = true) {
|
|
7
|
+
if (newTab) {
|
|
8
|
+
window.open(url, '_blank');
|
|
9
|
+
}
|
|
10
|
+
else {
|
|
11
|
+
window.open(url);
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* Google related links
|
|
16
|
+
*/
|
|
17
|
+
// google images
|
|
18
|
+
export function googleImagesUrl(input) {
|
|
19
|
+
return `http://www.google.com/search?q=${encodeURIComponent(input)}&tbm=isch`;
|
|
20
|
+
}
|
|
21
|
+
export function googleImagesOpen(input) {
|
|
22
|
+
open(googleImagesUrl(input));
|
|
23
|
+
}
|
|
24
|
+
// google translate
|
|
25
|
+
export function googleTranslateUrl(input) {
|
|
26
|
+
return `https://translate.google.com/?sl=auto&tl=en&text=${encodeURIComponent(input)}&op=translate`;
|
|
27
|
+
}
|
|
28
|
+
export function googleTranslateOpen(input) {
|
|
29
|
+
open(googleTranslateUrl(input));
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* Japanese related
|
|
33
|
+
*/
|
|
34
|
+
// jisho
|
|
35
|
+
export function jishoUrl(input) {
|
|
36
|
+
return `https://jisho.org/search/${encodeURIComponent(input)}`;
|
|
37
|
+
}
|
|
38
|
+
export function jishoOpen(input) {
|
|
39
|
+
open(jishoUrl(input));
|
|
40
|
+
}
|
|
41
|
+
// goo
|
|
42
|
+
export function gooUrl(input) {
|
|
43
|
+
// return `https://dictionary.goo.ne.jp/word/${encodeURIComponent(word)}/`;
|
|
44
|
+
return `https://dictionary.goo.ne.jp/srch/all/${encodeURIComponent(input)}/m0u/`;
|
|
45
|
+
}
|
|
46
|
+
export function gooOpen(input) {
|
|
47
|
+
open(gooUrl(input));
|
|
48
|
+
}
|
|
49
|
+
// weblio
|
|
50
|
+
export function weblioUrl(input) {
|
|
51
|
+
return `https://www.weblio.jp/content/${encodeURIComponent(input)}`;
|
|
52
|
+
}
|
|
53
|
+
export function weblioOpen(input) {
|
|
54
|
+
open(weblioUrl(input));
|
|
55
|
+
}
|
|
56
|
+
// kotobank
|
|
57
|
+
export function kotobankUrl(input) {
|
|
58
|
+
return `https://kotobank.jp/word/${encodeURIComponent(input)}`;
|
|
59
|
+
}
|
|
60
|
+
export function kotobankOpen(input) {
|
|
61
|
+
open(kotobankUrl(input));
|
|
62
|
+
}
|
|
63
|
+
//# sourceMappingURL=index.js.map
|
package/lib/index.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,SAAS,IAAI,CAAC,GAAW,EAAE,MAAM,GAAG,IAAI;IACvC,IAAI,MAAM,EAAE;QACX,MAAM,CAAC,IAAI,CAAC,GAAG,EAAE,QAAQ,CAAC,CAAC;KAC3B;SAAM;QACN,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;KACjB;AACF,CAAC;AAED;;GAEG;AACH,gBAAgB;AAChB,MAAM,UAAU,eAAe,CAAC,KAAa;IAC5C,OAAO,kCAAkC,kBAAkB,CAAC,KAAK,CAAC,WAAW,CAAC;AAC/E,CAAC;AACD,MAAM,UAAU,gBAAgB,CAAC,KAAa;IAC7C,IAAI,CAAC,eAAe,CAAC,KAAK,CAAC,CAAC,CAAC;AAC9B,CAAC;AAED,mBAAmB;AACnB,MAAM,UAAU,kBAAkB,CAAC,KAAa;IAC/C,OAAO,oDAAoD,kBAAkB,CAC5E,KAAK,CACL,eAAe,CAAC;AAClB,CAAC;AACD,MAAM,UAAU,mBAAmB,CAAC,KAAa;IAChD,IAAI,CAAC,kBAAkB,CAAC,KAAK,CAAC,CAAC,CAAC;AACjC,CAAC;AAED;;GAEG;AACH,QAAQ;AACR,MAAM,UAAU,QAAQ,CAAC,KAAa;IACrC,OAAO,4BAA4B,kBAAkB,CAAC,KAAK,CAAC,EAAE,CAAC;AAChE,CAAC;AACD,MAAM,UAAU,SAAS,CAAC,KAAa;IACtC,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC,CAAC;AACvB,CAAC;AAED,MAAM;AACN,MAAM,UAAU,MAAM,CAAC,KAAa;IACnC,2EAA2E;IAC3E,OAAO,yCAAyC,kBAAkB,CACjE,KAAK,CACL,OAAO,CAAC;AACV,CAAC;AACD,MAAM,UAAU,OAAO,CAAC,KAAa;IACpC,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC;AACrB,CAAC;AAED,SAAS;AACT,MAAM,UAAU,SAAS,CAAC,KAAa;IACtC,OAAO,iCAAiC,kBAAkB,CAAC,KAAK,CAAC,EAAE,CAAC;AACrE,CAAC;AACD,MAAM,UAAU,UAAU,CAAC,KAAa;IACvC,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC,CAAC;AACxB,CAAC;AAED,WAAW;AACX,MAAM,UAAU,WAAW,CAAC,KAAa;IACxC,OAAO,4BAA4B,kBAAkB,CAAC,KAAK,CAAC,EAAE,CAAC;AAChE,CAAC;AACD,MAAM,UAAU,YAAY,CAAC,KAAa;IACzC,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC,CAAC;AAC1B,CAAC","sourcesContent":["/**\n * @license\n * Copyright (c) 2023 Valentin Degenne\n * SPDX-License-Identifier: MIT\n */\n\nfunction open(url: string, newTab = true) {\n\tif (newTab) {\n\t\twindow.open(url, '_blank');\n\t} else {\n\t\twindow.open(url);\n\t}\n}\n\n/**\n * Google related links\n */\n// google images\nexport function googleImagesUrl(input: string) {\n\treturn `http://www.google.com/search?q=${encodeURIComponent(input)}&tbm=isch`;\n}\nexport function googleImagesOpen(input: string) {\n\topen(googleImagesUrl(input));\n}\n\n// google translate\nexport function googleTranslateUrl(input: string) {\n\treturn `https://translate.google.com/?sl=auto&tl=en&text=${encodeURIComponent(\n\t\tinput\n\t)}&op=translate`;\n}\nexport function googleTranslateOpen(input: string) {\n\topen(googleTranslateUrl(input));\n}\n\n/**\n * Japanese related\n */\n// jisho\nexport function jishoUrl(input: string) {\n\treturn `https://jisho.org/search/${encodeURIComponent(input)}`;\n}\nexport function jishoOpen(input: string) {\n\topen(jishoUrl(input));\n}\n\n// goo\nexport function gooUrl(input: string) {\n\t// return `https://dictionary.goo.ne.jp/word/${encodeURIComponent(word)}/`;\n\treturn `https://dictionary.goo.ne.jp/srch/all/${encodeURIComponent(\n\t\tinput\n\t)}/m0u/`;\n}\nexport function gooOpen(input: string) {\n\topen(gooUrl(input));\n}\n\n// weblio\nexport function weblioUrl(input: string) {\n\treturn `https://www.weblio.jp/content/${encodeURIComponent(input)}`;\n}\nexport function weblioOpen(input: string) {\n\topen(weblioUrl(input));\n}\n\n// kotobank\nexport function kotobankUrl(input: string) {\n\treturn `https://kotobank.jp/word/${encodeURIComponent(input)}`;\n}\nexport function kotobankOpen(input: string) {\n\topen(kotobankUrl(input));\n}\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vdegenne/links",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"main": "lib/index.js",
|
|
5
5
|
"module": "lib/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -27,6 +27,7 @@
|
|
|
27
27
|
}
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
|
+
"@changesets/cli": "^2.26.2",
|
|
30
31
|
"typescript": "^5.2.2",
|
|
31
32
|
"wireit": "^0.14.0"
|
|
32
33
|
},
|