@osovitny/anatoly 3.19.14 → 3.19.16
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.
|
@@ -3728,7 +3728,6 @@ class ScriptService {
|
|
|
3728
3728
|
|
|
3729
3729
|
Authors:
|
|
3730
3730
|
Vadim Osovitny vadim.osovitny@osovitny.com
|
|
3731
|
-
Anatoly Osovitny anatoly.osovitny@osovitny.com
|
|
3732
3731
|
|
|
3733
3732
|
Created:
|
|
3734
3733
|
2 May 2023
|
|
@@ -3743,6 +3742,48 @@ class Browser {
|
|
|
3743
3742
|
static isIframe() {
|
|
3744
3743
|
return window !== window.parent && !window.opener;
|
|
3745
3744
|
}
|
|
3745
|
+
static isMobile() {
|
|
3746
|
+
const userAgent = navigator.userAgent || navigator.vendor;
|
|
3747
|
+
const mobileRegex = new RegExp("(android|bb\\d+|meego).+mobile|" +
|
|
3748
|
+
"avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|" +
|
|
3749
|
+
"iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|" +
|
|
3750
|
+
"mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|" +
|
|
3751
|
+
"p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|" +
|
|
3752
|
+
"up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino|" +
|
|
3753
|
+
"1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s-)|" +
|
|
3754
|
+
"ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|" +
|
|
3755
|
+
"attw|au(di|-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|" +
|
|
3756
|
+
"br(e|v)w|bumb|bw-(n|u)|c55\\/|capi|ccwa|cdm-|cell|chtm|cldc|cmd-|co(mp|nd)|" +
|
|
3757
|
+
"craw|da(it|ll|ng)|dbte|dc-s|devi|dica|dmob|do(c|p)o|ds(12|-d)|" +
|
|
3758
|
+
"el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(-|_)|g1 u|" +
|
|
3759
|
+
"g560|gene|gf-5|g-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd-(m|p|t)|hei-|" +
|
|
3760
|
+
"hi(pt|ta)|hp( i|ip)|hs-c|ht(c(-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i-(20|go|ma)|" +
|
|
3761
|
+
"i230|iac( |-\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|" +
|
|
3762
|
+
"keji|kgt( |\\/)|klon|kpt |kwc-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|-[a-w])|" +
|
|
3763
|
+
"libw|lynx|m1-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(-| |o|v)|zz)|" +
|
|
3764
|
+
"mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|" +
|
|
3765
|
+
"ne((c|m)-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|" +
|
|
3766
|
+
"pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn-2|po(ck|rt|se)|prox|psio|" +
|
|
3767
|
+
"pt-g|qa-a|qc(07|12|21|32|60|-[2-7]|i-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|" +
|
|
3768
|
+
"s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h-|oo|p-)|sdk\\/|se(c(-|0|1)|47|mc|nd|ri)|" +
|
|
3769
|
+
"sgh-|shar|sie(-|m)|sk-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h-|v-|v )|" +
|
|
3770
|
+
"sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl-|tdg-|tel(i|m)|tim-|t-mo|to(pl|sh)|" +
|
|
3771
|
+
"ts(70|m-|m3|m5)|tx-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|-v)|" +
|
|
3772
|
+
"vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(-| )|webc|whit|wi(g |nc|nw)|" +
|
|
3773
|
+
"wmlb|wonu|x700|yas-|your|zeto|zte-", "i");
|
|
3774
|
+
const isMobileUserAgent = mobileRegex.test(userAgent);
|
|
3775
|
+
const isSmallScreen = window.innerWidth <= 800 && window.innerHeight <= 600;
|
|
3776
|
+
return (isMobileUserAgent && !this.isTablet()) || isSmallScreen;
|
|
3777
|
+
}
|
|
3778
|
+
static isTablet() {
|
|
3779
|
+
const userAgent = navigator.userAgent || navigator.vendor;
|
|
3780
|
+
const isTabletRegex = new RegExp("ipad|android(?!.*mobile)|tablet|kindle|playbook|silk|nexus 7|nexus 10|Macintosh|" +
|
|
3781
|
+
"fire|sm-t|tab|gt-p|sch-i|xoom|tf101|kftt|kfot|kfjw|kfsowi|a500|rim\\w", "i");
|
|
3782
|
+
return isTabletRegex.test(userAgent);
|
|
3783
|
+
}
|
|
3784
|
+
static isMobileOrTablet() {
|
|
3785
|
+
return this.isMobile() || this.isTablet();
|
|
3786
|
+
}
|
|
3746
3787
|
}
|
|
3747
3788
|
|
|
3748
3789
|
/*
|
|
@@ -4056,42 +4097,6 @@ class Utils {
|
|
|
4056
4097
|
static generateRandom(start, end) {
|
|
4057
4098
|
return Math.floor(Math.random() * (end - start + 1)) + start;
|
|
4058
4099
|
}
|
|
4059
|
-
static isBrowserMobile() {
|
|
4060
|
-
const userAgent = navigator.userAgent || navigator.vendor;
|
|
4061
|
-
const mobileRegex = new RegExp("(android|bb\\d+|meego).+mobile|" +
|
|
4062
|
-
"avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|" +
|
|
4063
|
-
"iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|" +
|
|
4064
|
-
"mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|" +
|
|
4065
|
-
"p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|" +
|
|
4066
|
-
"up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino|" +
|
|
4067
|
-
"1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s-)|" +
|
|
4068
|
-
"ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|" +
|
|
4069
|
-
"attw|au(di|-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|" +
|
|
4070
|
-
"br(e|v)w|bumb|bw-(n|u)|c55\\/|capi|ccwa|cdm-|cell|chtm|cldc|cmd-|co(mp|nd)|" +
|
|
4071
|
-
"craw|da(it|ll|ng)|dbte|dc-s|devi|dica|dmob|do(c|p)o|ds(12|-d)|" +
|
|
4072
|
-
"el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(-|_)|g1 u|" +
|
|
4073
|
-
"g560|gene|gf-5|g-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd-(m|p|t)|hei-|" +
|
|
4074
|
-
"hi(pt|ta)|hp( i|ip)|hs-c|ht(c(-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i-(20|go|ma)|" +
|
|
4075
|
-
"i230|iac( |-\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|" +
|
|
4076
|
-
"keji|kgt( |\\/)|klon|kpt |kwc-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|-[a-w])|" +
|
|
4077
|
-
"libw|lynx|m1-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(-| |o|v)|zz)|" +
|
|
4078
|
-
"mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|" +
|
|
4079
|
-
"ne((c|m)-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|" +
|
|
4080
|
-
"pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn-2|po(ck|rt|se)|prox|psio|" +
|
|
4081
|
-
"pt-g|qa-a|qc(07|12|21|32|60|-[2-7]|i-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|" +
|
|
4082
|
-
"s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h-|oo|p-)|sdk\\/|se(c(-|0|1)|47|mc|nd|ri)|" +
|
|
4083
|
-
"sgh-|shar|sie(-|m)|sk-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h-|v-|v )|" +
|
|
4084
|
-
"sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl-|tdg-|tel(i|m)|tim-|t-mo|to(pl|sh)|" +
|
|
4085
|
-
"ts(70|m-|m3|m5)|tx-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|-v)|" +
|
|
4086
|
-
"vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(-| )|webc|whit|wi(g |nc|nw)|" +
|
|
4087
|
-
"wmlb|wonu|x700|yas-|your|zeto|zte-", "i");
|
|
4088
|
-
const isMobileUserAgent = mobileRegex.test(userAgent);
|
|
4089
|
-
const isSmallScreen = window.innerWidth <= 800 && window.innerHeight <= 600;
|
|
4090
|
-
const isTabletRegex = new RegExp("ipad|android(?!.*mobile)|tablet|kindle|playbook|silk|nexus 7|nexus 10|Macintosh|" +
|
|
4091
|
-
"fire|sm-t|tab|gt-p|sch-i|xoom|sch-i|tf101|kftt|kfot|kfjw|kfsowi|a500|rim\\w", "i");
|
|
4092
|
-
const isTabletUserAgent = isTabletRegex.test(userAgent);
|
|
4093
|
-
return isMobileUserAgent && !isTabletUserAgent || isSmallScreen;
|
|
4094
|
-
}
|
|
4095
4100
|
}
|
|
4096
4101
|
|
|
4097
4102
|
/*
|