| 
									
										
										
										
											2024-07-01 14:13:32 +08:00
										 |  |  | import { escape } from 'lodash-es' | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-15 08:51:32 +08:00
										 |  |  | export const sleep = (ms: number) => { | 
					
						
							|  |  |  |   return new Promise(resolve => setTimeout(resolve, ms)) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | export async function asyncRunSafe<T = any>(fn: Promise<T>): Promise<[Error] | [null, T]> { | 
					
						
							|  |  |  |   try { | 
					
						
							|  |  |  |     return [null, await fn] | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   catch (e) { | 
					
						
							|  |  |  |     if (e instanceof Error) | 
					
						
							|  |  |  |       return [e] | 
					
						
							|  |  |  |     return [new Error('unknown error')] | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | export const getTextWidthWithCanvas = (text: string, font?: string) => { | 
					
						
							| 
									
										
										
										
											2023-08-16 10:31:08 +08:00
										 |  |  |   const canvas = document.createElement('canvas') | 
					
						
							|  |  |  |   const ctx = canvas.getContext('2d') | 
					
						
							| 
									
										
										
										
											2023-05-15 08:51:32 +08:00
										 |  |  |   if (ctx) { | 
					
						
							| 
									
										
										
										
											2023-08-16 10:31:08 +08:00
										 |  |  |     ctx.font = font ?? '12px Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"' | 
					
						
							|  |  |  |     return Number(ctx.measureText(text).width.toFixed(2)) | 
					
						
							| 
									
										
										
										
											2023-05-15 08:51:32 +08:00
										 |  |  |   } | 
					
						
							| 
									
										
										
										
											2023-08-16 10:31:08 +08:00
										 |  |  |   return 0 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const chars = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ-_' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | export function randomString(length: number) { | 
					
						
							|  |  |  |   let result = '' | 
					
						
							|  |  |  |   for (let i = length; i > 0; --i) result += chars[Math.floor(Math.random() * chars.length)] | 
					
						
							|  |  |  |   return result | 
					
						
							| 
									
										
										
										
											2023-05-15 08:51:32 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2024-02-02 15:24:17 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | export const getPurifyHref = (href: string) => { | 
					
						
							|  |  |  |   if (!href) | 
					
						
							|  |  |  |     return '' | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-07-01 14:13:32 +08:00
										 |  |  |   return escape(href) | 
					
						
							| 
									
										
										
										
											2024-02-02 15:24:17 +08:00
										 |  |  | } |