123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- import type { RouteLocationNormalized, RouteRecordNormalized } from 'vue-router';
- import type { App, Plugin } from 'vue';
- import { unref } from 'vue';
- import { isObject } from '/@/utils/is';
- export const noop = () => {};
- /**
- * @description: Set ui mount node
- */
- export function getPopupContainer(node?: HTMLElement): HTMLElement {
- return (node?.parentNode as HTMLElement) ?? document.body;
- }
- /**
- * Add the object as a parameter to the URL
- * @param baseUrl url
- * @param obj
- * @returns {string}
- * eg:
- * let obj = {a: '3', b: '4'}
- * setObjToUrlParams('www.baidu.com', obj)
- * ==>www.baidu.com?a=3&b=4
- */
- export function setObjToUrlParams(baseUrl: string, obj: any): string {
- let parameters = '';
- for (const key in obj) {
- parameters += key + '=' + encodeURIComponent(obj[key]) + '&';
- }
- parameters = parameters.replace(/&$/, '');
- return /\?$/.test(baseUrl) ? baseUrl + parameters : baseUrl.replace(/\/?$/, '?') + parameters;
- }
- export function deepMerge<T = any>(src: any = {}, target: any = {}): T {
- let key: string;
- for (key in target) {
- src[key] = isObject(src[key]) ? deepMerge(src[key], target[key]) : (src[key] = target[key]);
- }
- return src;
- }
- export function openWindow(
- url: string,
- opt?: { target?: TargetContext | string; noopener?: boolean; noreferrer?: boolean },
- ) {
- const { target = '__blank', noopener = true, noreferrer = true } = opt || {};
- const feature: string[] = [];
- noopener && feature.push('noopener=yes');
- noreferrer && feature.push('noreferrer=yes');
- window.open(url, target, feature.join(','));
- }
- // dynamic use hook props
- export function getDynamicProps<T, U>(props: T): Partial<U> {
- const ret: Recordable = {};
- Object.keys(props).map((key) => {
- ret[key] = unref((props as Recordable)[key]);
- });
- return ret as Partial<U>;
- }
- export function getRawRoute(route: RouteLocationNormalized): RouteLocationNormalized {
- if (!route) return route;
- const { matched, ...opt } = route;
- return {
- ...opt,
- matched: (matched
- ? matched.map((item) => ({
- meta: item.meta,
- name: item.name,
- path: item.path,
- }))
- : undefined) as RouteRecordNormalized[],
- };
- }
- export const withInstall = <T>(component: T, alias?: string) => {
- const comp = component as any;
- comp.install = (app: App) => {
- app.component(comp.name || comp.displayName, component);
- if (alias) {
- app.config.globalProperties[alias] = component;
- }
- };
- return component as T & Plugin;
- };
- // 禁止输入表情包
- export const isEmojiCharacter = (substring) => {
- for ( var i = 0; i < substring.length; i++) {
- var hs = substring.charCodeAt(i);
- if (0xd800 <= hs && hs <= 0xdbff) {
- if (substring.length > 1) {
- var ls = substring.charCodeAt(i + 1);
- var uc = ((hs - 0xd800) * 0x400) + (ls - 0xdc00) + 0x10000;
- if (0x1d000 <= uc && uc <= 0x1f77f) {
- return true;
- }
- }
- } else if (substring.length > 1) {
- var ls = substring.charCodeAt(i + 1);
- if (ls == 0x20e3) {
- return true;
- }
- } else {
- if (0x2100 <= hs && hs <= 0x27ff) {
- return true;
- } else if (0x2B05 <= hs && hs <= 0x2b07) {
- return true;
- } else if (0x2934 <= hs && hs <= 0x2935) {
- return true;
- } else if (0x3297 <= hs && hs <= 0x3299) {
- return true;
- } else if (hs == 0xa9 || hs == 0xae || hs == 0x303d || hs == 0x3030
- || hs == 0x2b55 || hs == 0x2b1c || hs == 0x2b1b
- || hs == 0x2b50) {
- return true;
- }
- }
- }
- }
|