commonutil.js 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. import { Linking, Alert } from 'react-native';
  2. export default class commonutil {
  3. //获取appCode
  4. static getAppCode() {
  5. return '1006';
  6. }
  7. //验证手机号
  8. static isPoneAvailable(str) {
  9. let myreg = /^[1][0-9]{10}$/;
  10. if (str.length == 0 || str == null) {
  11. return false;
  12. } else if (!myreg.test(str)) {
  13. return false;
  14. } else {
  15. return true;
  16. }
  17. }
  18. /**
  19. *map转化为对象(map所有键都是字符串,可以将其转换为对象)
  20. */
  21. static strMapToObj(strMap) {
  22. let obj = Object.create(null);
  23. for (let [ k, v ] of strMap) {
  24. obj[k] = v;
  25. }
  26. return obj;
  27. }
  28. /**
  29. *map转换为json
  30. */
  31. static mapToJson(map) {
  32. return JSON.stringify(this.strMapToObj(map));
  33. }
  34. /**
  35. *对象转换为Map
  36. */
  37. static objToStrMap(obj) {
  38. let strMap = new Map();
  39. for (let k of Object.keys(obj)) {
  40. strMap.set(k, obj[k]);
  41. }
  42. return strMap;
  43. }
  44. /**
  45. *json转换为map
  46. */
  47. static jsonToMap(jsonStr) {
  48. return this.objToStrMap(JSON.parse(jsonStr));
  49. }
  50. //调用打电话功能
  51. static callPhone(phone) {
  52. // let tel = '1008611'; // 目标电话
  53. Alert.alert('提示', phone, [
  54. {
  55. text: '取消',
  56. onPress: () => {
  57. console.log('取消');
  58. }
  59. },
  60. {
  61. text: '确定',
  62. onPress: () => {
  63. Linking.canOpenURL('tel:' + phone)
  64. .then((supported) => {
  65. if (!supported) {
  66. console.log('Can not handle tel:' + phone);
  67. } else {
  68. return Linking.openURL('tel:' + phone);
  69. }
  70. })
  71. .catch((error) => console.log('tel error', error));
  72. }
  73. }
  74. ]);
  75. }
  76. }