| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525 |
- /**
- * 防抖
- * debounce
- * @param {Function} fn
- * @param {Number} delay
- * @returns {Function}
- * @example
- * const fn = () => console.log('hello world');
- * const debounceFn = debounce(fn, 1000);
- */
- export const debounce = (fn, delay = 10) => {
- let timer = null;
- return function () {
- if (timer) {
- clearTimeout(timer);
- }
- timer = setTimeout(function () {
- //模拟触发change事件
- // Simulate triggering change event
- fn.apply(this, arguments);
- // 清空计时器
- // Clear timer
- timer = null;
- }, delay);
- };
- };
- /**
- * 节流
- * throttle
- * @param {Function} fn
- * @param {Number} delay
- * @returns {Function}
- */
- export const throttle = (fn, delay = 50) => {
- let timer = null;
- return function () {
- if (timer) {
- return;
- }
- let context = this;
- let args = arguments;
- timer = setTimeout(function () {
- fn.apply(context, args);
- timer = null;
- }, delay);
- };
- };
- /**
- * 节流
- * throttle With requestAnimationFrame
- * @param {Function} fn
- * @param {Number} delay
- * @returns {Function}
- */
- export const throttleWithRAF = (fn, delay = 16) => {
- let timeoutId = null;
- let rafId = null;
- let lastExec = 0;
- const throttledFn = function (...args) {
- const now = performance.now();
- const remainingTime = delay - (now - lastExec);
- if (rafId === null && timeoutId === null) {
- // 如果没有rafId和timeoutId,说明没有正在进行的动画帧或定时器
- rafId = requestAnimationFrame(() => {
- // 在动画帧开始时执行函数
- fn.apply(this, args);
- lastExec = performance.now();
- rafId = null;
- });
- } else if (remainingTime <= 0) {
- // 如果超过了延迟时间,取消当前的定时器,然后在下一个动画帧执行
- clearTimeout(timeoutId);
- timeoutId = null;
- rafId = requestAnimationFrame(() => {
- fn.apply(this, args);
- lastExec = performance.now();
- rafId = null;
- });
- } else {
- // 如果还有剩余时间,设置定时器
- clearTimeout(timeoutId);
- timeoutId = setTimeout(() => {
- rafId = requestAnimationFrame(() => {
- fn.apply(this, args);
- lastExec = performance.now();
- rafId = null;
- });
- }, remainingTime);
- }
- };
- throttledFn.clear = () => {
- if (timeoutId !== null) {
- clearTimeout(timeoutId);
- timeoutId = null;
- }
- if (rafId !== null) {
- cancelAnimationFrame(rafId);
- rafId = null;
- }
- };
- return throttledFn;
- };
- /**
- * 将数字按照步长进行四舍五入
- * Round the number according to the step length
- * @param {Number} num
- * @param {Number} step
- * @returns {Number}
- * @example
- * stepNumberFun(18, 5) // 20
- */
- export const stepNumberFun = (num, step = 1) => {
- //将step乘10,转换为整数,避免小数计算精度问题
- // Multiply step by 10, convert to integer, avoid decimal calculation precision problem
- const stepNum = step * 10;
- return (Math.round((num * 10) / stepNum) * stepNum) / 10;
- };
- /**
- * 传入Dom和一段字符串,返回占页面的宽度
- * Pass in Dom and a string, return the width occupied by the page
- * @param {HTMLElement} dom
- * @param {String} str
- * @returns {Number}
- * @example
- * getDomWidth(document.body, 'hello world') // 100
- */
- export const getDomWidth = (dom, str) => {
- let span = document.createElement('span');
- span.innerHTML = str;
- span.style.visibility = 'hidden';
- dom.appendChild(span);
- let width = span.getBoundingClientRect().width;
- dom.removeChild(span);
- return width;
- };
- /**
- * 根据年份和月份获取对应的天数
- * Get the number of days corresponding to the year and month according to the year and month
- * @param {*} year
- * @param {*} month
- * @returns {Number}
- * @example
- * getDayNum(2020, '02') // 29
- */
- export const getDayNum = (year, month) => {
- if (month === '02') {
- return isLeapYear(year) ? 29 : 28;
- } else if (month === '04' || month === '06' || month === '09' || month === '11') {
- return 30;
- } else {
- return 31;
- }
- };
- /**
- * 是否是闰年
- * Is it a leap year
- * @param {*} year
- * @returns {Boolean}
- * @example
- * isLeapYear(2020) // true
- */
- export const isLeapYear = year => {
- return (year % 4 === 0 && year % 100 !== 0) || year % 400 === 0;
- };
- /**
- * 返回当前日期所处周的开始与结束日期组成的数组,日期格式为 YYYYMMDD
- * return an array of start and end date of current week, date format is YYYYMMDD
- * @returns {Array}
- * @example
- * getWeekRange() // ['20200518', '20200524']
- */
- export const getWeekRange = () => {
- const now = new Date();
- const year = now.getFullYear();
- const month = now.getMonth();
- const day = now.getDate();
- const week = now.getDay();
- const start = new Date(year, month, day - week + 1);
- const end = new Date(year, month, day + (7 - week));
- return [start, end].map(date => {
- const year = date.getFullYear();
- const month = date.getMonth() + 1;
- const day = date.getDate();
- return `${year}${month < 10 ? `0${month}` : month}${day < 10 ? `0${day}` : day}`;
- });
- };
- /**
- * 返回当前日期所处月的开始与结束日期组成的数组,日期格式为 YYYYMMDD
- * return an array of start and end date of current month, date format is YYYYMMDD
- * @returns {Array}
- * @example
- * getMonthRange() // ['20200501', '20200531']
- */
- export const getMonthRange = () => {
- const now = new Date();
- const year = now.getFullYear();
- const month = now.getMonth();
- const start = new Date(year, month, 1);
- const end = new Date(year, month + 1, 0);
- return [start, end].map(date => {
- const year = date.getFullYear();
- const month = date.getMonth() + 1;
- const day = date.getDate();
- return `${year}${month < 10 ? `0${month}` : month}${day < 10 ? `0${day}` : day}`;
- });
- };
- /**
- * 传入年月数据 YYYYMM,返回开始日是周几
- * Pass in year and month data YYYYMM, return the start day of the week
- * @param {String} yearMonth
- * @returns {Number}
- * @example
- * getStartDay('202005') // 6
- */
- export const getStartDay = yearMonth => {
- const year = yearMonth.slice(0, 4);
- const month = yearMonth.slice(4);
- return new Date(`${year}-${month}-01`).getDay();
- };
- /**
- * 传入正数或者负数 n,返回当前月往前或者往后的 n 个月的年月数据,格式为 YYYYMM,不足两位的月份前面补 0
- * Pass in a positive or negative number n, return the year and month data of the current month forward or backward n months, the format is YYYYMM, and the month less than two digits is filled with 0
- * @param {Number} n 正整数或者负整数
- * @returns {String} 指定月份的年月数据 YYYYMM
- * @example
- * getYearMonth(1) // '202006'
- */
- export const getNowBeforeOrAfterMonth = n => {
- const now = new Date();
- const year = now.getFullYear();
- const month = now.getMonth() + 1;
- const newMonth = month + n;
- if (newMonth > 12) {
- return `${year + 1}${newMonth - 12 < 10 ? `0${newMonth - 12}` : newMonth - 12}`;
- } else if (newMonth < 1) {
- return `${year - 1}${newMonth + 12 < 10 ? `0${newMonth + 12}` : newMonth + 12}`;
- } else {
- return `${year}${newMonth < 10 ? `0${newMonth}` : newMonth}`;
- }
- };
- /**
- * 传入年月数据 YYYYMM,根据当月 1 日的周几,返回当月的日历数据数组。如果 startSunday 为 true 从周日开始,否则从周一开始,1 日之前的数据为空字符串,之后的数据为空字符串并去除
- * Pass in year and month data YYYYMM, return the calendar data array according to the week of the first day of the month. If startSunday is true, start from Sunday, otherwise start from Monday. The data before 1 day is an empty string, and the data after 1 day is an empty string and is removed
- * @param {String} yearMonth
- * @param {Boolean} startSunday
- * @returns {Array}
- * @example
- * getCalendarData('202005') // ['','','','','','','1','2','3','4','5','6','7','8','9','10','11','12','13','14','15','16','17','18','19','20','21','22','23','24','25','26','27','28','29','30','31','']
- */
- export const getCalendarData = (yearMonth, startSunday) => {
- const year = yearMonth.slice(0, 4);
- const month = yearMonth.slice(4);
- const startDay = getStartDay(yearMonth);
- const dayNum = getDayNum(year, month);
- const data = [];
- for (let i = 0; i < (startDay > 0 ? startDay - (startSunday ? 0 : 1) : 7 - (startSunday ? 0 : 1)); i++) {
- data.push({ day: '' });
- }
- for (let i = 1; i <= dayNum; i++) {
- // @ts-ignore
- data.push({ day: i.toString().padStart(2, '0') });
- }
- for (let i = 0; i < 42 - startDay - (startSunday ? 0 : 1) - dayNum; i++) {
- data.push({ day: '' });
- }
- // 去除结尾的所有空字符
- // Remove all empty characters at the end
- while (data[data.length - 1].day === '') {
- data.pop();
- }
- // 如果 day 是 00 或 0 的替换为空字符
- // If day is 00, replace it with an empty character
- data.forEach(item => {
- if (item.day === '00' || item.day === '0') {
- item.day = '';
- }
- });
- // 循环 data,如果 day 不为 '',则计算出 day 是周几,放在 week
- // Loop data, if day is not '', then calculate that day is what day of the week, put it in week
- data.forEach(item => {
- if (item.day !== '') {
- // @ts-ignore
- item.week = new Date(`${year}-${month}-${item.day}`).getDay();
- }
- });
- // 循环 data,如果当天是月末,endDay 为 true,否则为 false
- // Loop data, if today is the end of the month, endDay is true, otherwise it is false
- data.forEach((item, index) => {
- if (item.day !== '') {
- // @ts-ignore
- item.endDay = index === data.length - 1;
- // @ts-ignore
- item.startDay = item.day === '01';
- }
- });
- // 根据从周一开始还是周末开始,循环 data,如果 day 不为 '',判断每天是 周第一天 还是 周最后一天,分别放在 weekStartDay 和 weekEndDay
- // According to whether it starts from Monday or Sunday, loop data, if day is not '', judge whether each day is the first day of the week or the last day of the week, and put it in weekStartDay and weekEndDay respectively
- if (!startSunday) {
- data.forEach(item => {
- if (item.day !== '') {
- // @ts-ignore
- item.weekStartDay = item.week === 1;
- // @ts-ignore
- item.weekEndDay = item.week === 0;
- }
- });
- } else {
- data.forEach(item => {
- if (item.day !== '') {
- // @ts-ignore
- item.weekStartDay = item.week === 0;
- // @ts-ignore
- item.weekEndDay = item.week === 6;
- }
- });
- }
- // 根据每一天的 startDay和weekStartDay,endDay和weekEndDay,只要有一项是 true,就是月第一天或周第一天,放在 start 和 end 中
- // According to the startDay and weekStartDay of each day, endDay and weekEndDay, as long as one item is true, it is the first day of the month or the first day of the week, put it in start and end
- data.forEach(item => {
- if (item.day !== '') {
- // @ts-ignore
- item.start = item.startDay || item.weekStartDay;
- // @ts-ignore
- item.end = item.endDay || item.weekEndDay;
- }
- });
- return data;
- };
- /**
- * 传入格式为 YYYYMM 的开始与结束月份字符串,返回这两个月份之间的所有月份数据数组,格式为 YYYYMM,不足两位的月份前面补 0
- * Pass in the start and end month strings in the format of YYYYMM, return the data array of all months between these two months, the format is YYYYMM, and the month less than two digits is filled with 0
- * @param {String} startMonthStr
- * @param {String} endMonthStr
- * @returns {Array}
- * @example
- * getMonthRange('202005', '202007') // ['202005', '202006', '202007']
- */
- export const getMonthListRange = (startMonthStr, endMonthStr) => {
- const startYear = startMonthStr.slice(0, 4);
- const startMonth = startMonthStr.slice(4);
- const endYear = endMonthStr.slice(0, 4);
- const endMonth = endMonthStr.slice(4);
- const data = [];
- if (startYear === endYear) {
- for (let i = Number(startMonth); i <= Number(endMonth); i++) {
- data.push(`${startYear}${i < 10 ? `0${i}` : i}`);
- }
- } else {
- for (let i = Number(startMonth); i <= 12; i++) {
- data.push(`${startYear}${i < 10 ? `0${i}` : i}`);
- }
- for (let i = 1; i <= Number(endMonth); i++) {
- data.push(`${endYear}${i < 10 ? `0${i}` : i}`);
- }
- }
- return data;
- };
- /**
- * 传入开始与结束日期 YYYYMMDD,需要剔除的日期组成的数组 disabledDates。返回中间的所有日期数组,包含开始与结束日期,月与日不足两位的前面补 0,格式为 YYYYMMDD
- * Pass in the start and end date YYYYMMDD, the array of disabled dates to be removed. Return the array of all dates in the middle, including the start and end dates, and the month and day less than two digits are filled with 0, in the format of YYYYMMDD
- * @param {String} startDate
- * @param {String} endDate
- * @param {Array} disabledDates
- * @returns {Array}
- * @example
- * getDateRange('20200501', '20200503') // ['20200501', '20200502', '20200503']
- */
- export const getDateRange = (startDate, endDate, disabledDates) => {
- // 将 startDate 与 endDate 转化为 YYYY-MM-DD格式
- // Convert startDate and endDate to YYYY-MM-DD format
- const startYear = startDate.slice(0, 4);
- const startMonth = startDate.slice(4, 6);
- const startDay = startDate.slice(6);
- const endYear = endDate.slice(0, 4);
- const endMonth = endDate.slice(4, 6);
- const endDay = endDate.slice(6);
- const startTimeStr = new Date(`${startYear}-${startMonth}-${startDay}`).getTime();
- const endTimeStr = new Date(`${endYear}-${endMonth}-${endDay}`).getTime();
- const startTime = new Date(startTimeStr).getTime();
- const endTime = new Date(endTimeStr).getTime();
- const data = [];
- for (let i = startTime; i <= endTime; i += 24 * 60 * 60 * 1000) {
- const date = new Date(i);
- const year = date.getFullYear();
- const month = date.getMonth() + 1;
- const day = date.getDate();
- data.push(`${year}${month < 10 ? `0${month}` : month}${day < 10 ? `0${day}` : day}`);
- }
- // 剔除 disabledDates 中的日期
- // Remove dates in disabledDates
- if (disabledDates && disabledDates.length) {
- disabledDates.forEach(item => {
- const index = data.indexOf(item);
- if (index > -1) {
- data.splice(index, 1);
- }
- });
- }
- return data;
- };
- /**
- * 传入 startSunday,返回当天所处周的所有日期数组,日期格式为 YYYYMMDD,月与日不足两位的前面补 0
- * Pass in startSunday, return the array of all dates in the week of the current day, the date format is YYYYMMDD, and the month and day less than two digits are filled with 0
- * @param {Boolean} startSunday
- * @returns {Array}
- * @example
- * getWeekRange(true) // ['20200531', '20200601', '20200602', '20200603', '20200604', '20200605', '20200606']
- */
- export const getCurrentWeek = (startSunday = false) => {
- const now = new Date();
- const year = now.getFullYear();
- const month = now.getMonth() + 1;
- const date = now.getDate();
- const day = now.getDay();
- const weekDates = [];
- if (startSunday) {
- for (let i = 0; i < 7; i++) {
- const newDate = new Date(year, month - 1, date - day + i);
- const newYear = newDate.getFullYear();
- const newMonth = newDate.getMonth() + 1;
- const newDateNum = newDate.getDate();
- // @ts-ignore
- weekDates.push(`${newYear}${newMonth.toString().padStart(2, '0')}${newDateNum.toString().padStart(2, '0')}`);
- }
- } else {
- for (let i = 1; i < 8; i++) {
- const newDate = new Date(year, month - 1, date - day + i);
- const newYear = newDate.getFullYear();
- const newMonth = newDate.getMonth() + 1;
- const newDateNum = newDate.getDate();
- // @ts-ignore
- weekDates.push(`${newYear}${newMonth.toString().padStart(2, '0')}${newDateNum.toString().padStart(2, '0')}`);
- }
- }
- return weekDates;
- };
- /**
- * 返回当天所处月份的所有日期数组,日期格式为 YYYYMMDD,月与日不足两位的前面补 0
- * Return the array of all dates in the month of the current day, the date format is YYYYMMDD, and the month and day less than two digits are filled with 0
- * @returns {Array}
- */
- export const getCurrentMonth = () => {
- const now = new Date();
- const year = now.getFullYear();
- const month = now.getMonth() + 1;
- const days = new Date(year, month, 0).getDate();
- const dates = [];
- for (let i = 1; i <= days; i++) {
- // @ts-ignore
- dates.push(`${year}${month.toString().padStart(2, '0')}${i.toString().padStart(2, '0')}`);
- }
- return dates;
- };
- /**
- * 返回当天所处季度的所有日期数组,日期格式为 YYYYMMDD,月与日不足两位的前面补 0
- * Pass in the date, return the array of all dates in the quarter of the current day, the date format is YYYYMMDD, and the month and day less than two digits are filled with 0
- * @returns {Array}
- */
- export const getCurrentQuarter = () => {
- const now = new Date();
- const year = now.getFullYear();
- const month = now.getMonth() + 1;
- const quarter = Math.floor((month - 1) / 3) + 1;
- const startMonth = (quarter - 1) * 3 + 1;
- const endMonth = quarter * 3;
- const days = [];
- for (let i = startMonth; i <= endMonth; i++) {
- const daysInMonth = new Date(year, i, 0).getDate();
- for (let j = 1; j <= daysInMonth; j++) {
- // @ts-ignore
- days.push(`${year}${i.toString().padStart(2, '0')}${j.toString().padStart(2, '0')}`);
- }
- }
- return days;
- };
- /**
- * 传入正数或负数天数 n 和是否从今天开始计算 today,返回对应的前后日期组成的数组,日期格式为 YYYYMMDD,月与日不足两位的前面补 0
- * Pass in a positive or negative number of days n, whether to include today hasToday, return the array of dates before and after the current day, the date format is YYYYMMDD, and the month and day less than two digits are filled with 0
- * @param {Number} n
- * @param {Boolean} today
- * @returns {Array}
- */
- export const getDaysRangeWithToday = (n = 0, today = true) => {
- const now = new Date();
- let fakeToday = now;
- if (today) {
- fakeToday = new Date(now.getFullYear(), now.getMonth(), now.getDate());
- } else {
- if (n < 0) {
- fakeToday = new Date(now.getFullYear(), now.getMonth(), now.getDate() - 1);
- } else if (n > 0) {
- fakeToday = new Date(now.getFullYear(), now.getMonth(), now.getDate() + 1);
- } else {
- fakeToday = now;
- }
- }
- const dates = [];
- for (let i = 0; i < Math.abs(n); i++) {
- const date = new Date(fakeToday.getTime() + (n > 0 ? i : -i) * 24 * 60 * 60 * 1000);
- // @ts-ignore
- dates.push(`${date.getFullYear()}${(date.getMonth() + 1).toString().padStart(2, '0')}${date.getDate().toString().padStart(2, '0')}`);
- }
- // 对日期排序
- // Sort dates
- dates.sort((a, b) => Number(a) - Number(b));
- return dates;
- };
|