validate.ts 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. /**
  2. * @param {string} path
  3. * @returns {Boolean}
  4. */
  5. export function isExternal(path: string): boolean {
  6. return /^(https?:|mailto:|tel:)/.test(path)
  7. }
  8. /**
  9. * @param {string} str
  10. * @returns {Boolean}
  11. */
  12. export function validUsername(str: string): boolean {
  13. const valid_map = ['admin', 'editor']
  14. return valid_map.indexOf(str.trim()) >= 0
  15. }
  16. /**
  17. * @param {string} url
  18. * @returns {Boolean}
  19. */
  20. export function validURL(url: string): boolean {
  21. const reg = /^(https?|ftp):\/\/([a-zA-Z0-9.-]+(:[a-zA-Z0-9.&%$-]+)*@)*((25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]?)(\.(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9]?[0-9])){3}|([a-zA-Z0-9-]+\.)*[a-zA-Z0-9-]+\.(com|edu|gov|int|mil|net|org|biz|arpa|info|name|pro|aero|coop|museum|[a-zA-Z]{2}))(:[0-9]+)*(\/($|[a-zA-Z0-9.,?'\\+&%$#=~_-]+))*$/
  22. return reg.test(url)
  23. }
  24. /**
  25. * @param {string} str
  26. * @returns {Boolean}
  27. */
  28. export function validLowerCase(str: string): boolean {
  29. const reg = /^[a-z]+$/
  30. return reg.test(str)
  31. }
  32. /**
  33. * @param {string} str
  34. * @returns {Boolean}
  35. */
  36. export function validUpperCase(str: string): boolean {
  37. const reg = /^[A-Z]+$/
  38. return reg.test(str)
  39. }
  40. /**
  41. * @param {string} str
  42. * @returns {Boolean}
  43. */
  44. export function validAlphabets(str: string): boolean {
  45. const reg = /^[A-Za-z]+$/
  46. return reg.test(str)
  47. }
  48. /**
  49. * @param {string} email
  50. * @returns {Boolean}
  51. */
  52. // export function validEmail(email: string): boolean {
  53. // const reg = /^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/
  54. // return reg.test(email)
  55. // }
  56. /**
  57. * @param {string} str
  58. * @returns {Boolean}
  59. */
  60. export function isString(str: any): boolean {
  61. return typeof str === 'string' || str instanceof String
  62. }
  63. /**
  64. * @param {Array} arg
  65. * @returns {Boolean}
  66. */
  67. export function isArray(arg: string) {
  68. if (typeof Array.isArray === 'undefined') {
  69. return Object.prototype.toString.call(arg) === '[object Array]'
  70. }
  71. return Array.isArray(arg)
  72. }
  73. /**
  74. * Parse the time to string
  75. * @param {(Object|string|number)} time
  76. * @param {string} cFormat
  77. * @returns {string | null}
  78. */
  79. export function parseTime(time: any, cFormat: string) {
  80. if (arguments.length === 0 || !time) {
  81. return null
  82. }
  83. const format = cFormat || '{y}-{m}-{d} {h}:{i}:{s}'
  84. let date
  85. if (typeof time === 'object') {
  86. date = time
  87. } else {
  88. if (typeof time === 'string') {
  89. if (/^[0-9]+$/.test(time)) {
  90. // support "1548221490638"
  91. time = parseInt(time)
  92. } else {
  93. // support safari
  94. // https://stackoverflow.com/questions/4310953/invalid-date-in-safari
  95. time = time.replace(new RegExp(/-/gm), '/')
  96. }
  97. }
  98. if (typeof time === 'number' && time.toString().length === 10) {
  99. time = time * 1000
  100. }
  101. date = new Date(time)
  102. }
  103. const formatObj = {
  104. y: date.getFullYear(),
  105. m: date.getMonth() + 1,
  106. d: date.getDate(),
  107. h: date.getHours(),
  108. i: date.getMinutes(),
  109. s: date.getSeconds(),
  110. a: date.getDay(),
  111. }
  112. const time_str = format.replace(/{([ymdhisa])+}/g, (result, key) => {
  113. const value = formatObj[key]
  114. // Note: getDay() returns 0 on Sunday
  115. if (key === 'a') {
  116. return ['日', '一', '二', '三', '四', '五', '六'][value]
  117. }
  118. return value.toString().padStart(2, '0')
  119. })
  120. return time_str
  121. }
  122. export function translateDataToTreeAll(arr, parentKey, key) {
  123. const map = {}
  124. const result = []
  125. arr.forEach((element) => {
  126. const id = element[key]
  127. const pid = element[parentKey]
  128. if (map[id]) {
  129. map[id] = {
  130. ...element,
  131. children: map[id].children,
  132. }
  133. } else {
  134. map[id] = {
  135. ...element,
  136. children: [],
  137. }
  138. }
  139. const item = map[id]
  140. if (pid <= 0) {
  141. result.push(item)
  142. } else {
  143. if (map[pid]) {
  144. map[pid].children.push(item)
  145. } else {
  146. map[pid] = {
  147. children: [item],
  148. }
  149. }
  150. }
  151. })
  152. return result
  153. }
  154. export function setTree(arr, parentKey, key) {
  155. const datas: any = []
  156. const all: any = []
  157. for (let i = 0; i < arr.length; i++) {
  158. for (let j = 0; j < arr.length; j++) {
  159. if (arr[i][key] == arr[j][parentKey]) {
  160. datas.push(arr[j])
  161. arr[i].children = datas
  162. all.push(arr[j])
  163. }
  164. }
  165. }
  166. const res = [...arr, ...all].filter(
  167. (item) =>
  168. !(
  169. arr.some((p) => item[key] == p[key]) &&
  170. all.some((c) => item[key] == c[key])
  171. )
  172. )
  173. res.forEach((item) => {
  174. const datas: any = []
  175. if (item.children) {
  176. item.children.some((p) => {
  177. if (item[key] == p[parentKey]) {
  178. datas.push(p)
  179. item.children = datas
  180. }
  181. })
  182. }
  183. })
  184. return res
  185. }