@halo-dev/ui-shared 2.22.1 → 2.23.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +457 -27
- package/dist/index.iife.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +24 -18
package/dist/index.d.ts
CHANGED
|
@@ -1,12 +1,28 @@
|
|
|
1
|
+
/// <reference path="./locale/index.d.ts" />
|
|
1
2
|
import { Attachment, Backup, DetailedUser, Extension, GetThumbnailByUriSizeEnum, ListedComment, ListedPost, ListedReply, ListedSinglePage, Plugin, Theme } from "@halo-dev/api-client";
|
|
2
|
-
import * as
|
|
3
|
-
import * as
|
|
3
|
+
import * as pinia from "pinia";
|
|
4
|
+
import * as vue from "vue";
|
|
4
5
|
import { Component, Raw, Ref } from "vue";
|
|
5
|
-
import * as mitt0 from "mitt";
|
|
6
6
|
import { RouteLocationRaw, RouteRecordName, RouteRecordRaw } from "vue-router";
|
|
7
7
|
import { AnyExtension } from "@halo-dev/richtext-editor";
|
|
8
|
-
import _dayjs from "dayjs";
|
|
9
8
|
|
|
9
|
+
//#region ../../node_modules/.pnpm/mitt@3.0.1/node_modules/mitt/index.d.ts
|
|
10
|
+
declare type EventType = string | symbol;
|
|
11
|
+
declare type Handler<T = unknown> = (event: T) => void;
|
|
12
|
+
declare type WildcardHandler<T = Record<string, unknown>> = (type: keyof T, event: T[keyof T]) => void;
|
|
13
|
+
declare type EventHandlerList<T = unknown> = Array<Handler<T>>;
|
|
14
|
+
declare type WildCardEventHandlerList<T = Record<string, unknown>> = Array<WildcardHandler<T>>;
|
|
15
|
+
declare type EventHandlerMap<Events extends Record<EventType, unknown>> = Map<keyof Events | '*', EventHandlerList<Events[keyof Events]> | WildCardEventHandlerList<Events>>;
|
|
16
|
+
interface Emitter<Events extends Record<EventType, unknown>> {
|
|
17
|
+
all: EventHandlerMap<Events>;
|
|
18
|
+
on<Key extends keyof Events>(type: Key, handler: Handler<Events[Key]>): void;
|
|
19
|
+
on(type: '*', handler: WildcardHandler<Events>): void;
|
|
20
|
+
off<Key extends keyof Events>(type: Key, handler?: Handler<Events[Key]>): void;
|
|
21
|
+
off(type: '*', handler: WildcardHandler<Events>): void;
|
|
22
|
+
emit<Key extends keyof Events>(type: Key, event: Events[Key]): void;
|
|
23
|
+
emit<Key extends keyof Events>(type: undefined extends Events[Key] ? Key : never): void;
|
|
24
|
+
}
|
|
25
|
+
//#endregion
|
|
10
26
|
//#region src/events/index.d.ts
|
|
11
27
|
type Events = {
|
|
12
28
|
/**
|
|
@@ -17,7 +33,7 @@ type Events = {
|
|
|
17
33
|
group: string;
|
|
18
34
|
};
|
|
19
35
|
};
|
|
20
|
-
declare const events:
|
|
36
|
+
declare const events: Emitter<Events>;
|
|
21
37
|
//#endregion
|
|
22
38
|
//#region src/plugin/types/attachment-selector.d.ts
|
|
23
39
|
/**
|
|
@@ -1293,7 +1309,7 @@ declare enum FormType {
|
|
|
1293
1309
|
TAG = "Tag",
|
|
1294
1310
|
CATEGORY = "Category",
|
|
1295
1311
|
POST = "Post",
|
|
1296
|
-
SINGLE_PAGE = "SinglePage"
|
|
1312
|
+
SINGLE_PAGE = "SinglePage"
|
|
1297
1313
|
}
|
|
1298
1314
|
//#endregion
|
|
1299
1315
|
//#region src/stores/types/actuator.d.ts
|
|
@@ -1414,17 +1430,17 @@ declare const stores: {
|
|
|
1414
1430
|
* console.log(userStore.isAnonymous); // Check if user is anonymous
|
|
1415
1431
|
* ```
|
|
1416
1432
|
*/
|
|
1417
|
-
currentUser:
|
|
1418
|
-
currentUser:
|
|
1419
|
-
isAnonymous:
|
|
1433
|
+
currentUser: pinia.StoreDefinition<"currentUser", Pick<{
|
|
1434
|
+
currentUser: vue.Ref<DetailedUser | undefined, DetailedUser | undefined>;
|
|
1435
|
+
isAnonymous: vue.Ref<boolean, boolean>;
|
|
1420
1436
|
fetchCurrentUser: () => Promise<void>;
|
|
1421
1437
|
}, "currentUser" | "isAnonymous">, Pick<{
|
|
1422
|
-
currentUser:
|
|
1423
|
-
isAnonymous:
|
|
1438
|
+
currentUser: vue.Ref<DetailedUser | undefined, DetailedUser | undefined>;
|
|
1439
|
+
isAnonymous: vue.Ref<boolean, boolean>;
|
|
1424
1440
|
fetchCurrentUser: () => Promise<void>;
|
|
1425
1441
|
}, never>, Pick<{
|
|
1426
|
-
currentUser:
|
|
1427
|
-
isAnonymous:
|
|
1442
|
+
currentUser: vue.Ref<DetailedUser | undefined, DetailedUser | undefined>;
|
|
1443
|
+
isAnonymous: vue.Ref<boolean, boolean>;
|
|
1428
1444
|
fetchCurrentUser: () => Promise<void>;
|
|
1429
1445
|
}, "fetchCurrentUser">>;
|
|
1430
1446
|
/**
|
|
@@ -1449,14 +1465,14 @@ declare const stores: {
|
|
|
1449
1465
|
* console.log(globalInfoStore.globalInfo?.allowRegistration);
|
|
1450
1466
|
* ```
|
|
1451
1467
|
*/
|
|
1452
|
-
globalInfo:
|
|
1453
|
-
globalInfo:
|
|
1468
|
+
globalInfo: pinia.StoreDefinition<"global-info", Pick<{
|
|
1469
|
+
globalInfo: vue.Ref<GlobalInfo | undefined, GlobalInfo | undefined>;
|
|
1454
1470
|
fetchGlobalInfo: () => Promise<void>;
|
|
1455
1471
|
}, "globalInfo">, Pick<{
|
|
1456
|
-
globalInfo:
|
|
1472
|
+
globalInfo: vue.Ref<GlobalInfo | undefined, GlobalInfo | undefined>;
|
|
1457
1473
|
fetchGlobalInfo: () => Promise<void>;
|
|
1458
1474
|
}, never>, Pick<{
|
|
1459
|
-
globalInfo:
|
|
1475
|
+
globalInfo: vue.Ref<GlobalInfo | undefined, GlobalInfo | undefined>;
|
|
1460
1476
|
fetchGlobalInfo: () => Promise<void>;
|
|
1461
1477
|
}, "fetchGlobalInfo">>;
|
|
1462
1478
|
};
|
|
@@ -1589,9 +1605,423 @@ declare class AttachmentUtils {
|
|
|
1589
1605
|
convertToSimple(attachment: AttachmentLike): AttachmentSimple | undefined;
|
|
1590
1606
|
}
|
|
1591
1607
|
//#endregion
|
|
1608
|
+
//#region ../../node_modules/.pnpm/dayjs@1.11.19/node_modules/dayjs/index.d.ts
|
|
1609
|
+
declare function dayjs(date?: dayjs.ConfigType): dayjs.Dayjs;
|
|
1610
|
+
declare function dayjs(date?: dayjs.ConfigType, format?: dayjs.OptionType, strict?: boolean): dayjs.Dayjs;
|
|
1611
|
+
declare function dayjs(date?: dayjs.ConfigType, format?: dayjs.OptionType, locale?: string, strict?: boolean): dayjs.Dayjs;
|
|
1612
|
+
declare namespace dayjs {
|
|
1613
|
+
interface ConfigTypeMap {
|
|
1614
|
+
default: string | number | Date | Dayjs | null | undefined;
|
|
1615
|
+
}
|
|
1616
|
+
export type ConfigType = ConfigTypeMap[keyof ConfigTypeMap];
|
|
1617
|
+
export interface FormatObject {
|
|
1618
|
+
locale?: string;
|
|
1619
|
+
format?: string;
|
|
1620
|
+
utc?: boolean;
|
|
1621
|
+
}
|
|
1622
|
+
export type OptionType = FormatObject | string | string[];
|
|
1623
|
+
export type UnitTypeShort = 'd' | 'D' | 'M' | 'y' | 'h' | 'm' | 's' | 'ms';
|
|
1624
|
+
export type UnitTypeLong = 'millisecond' | 'second' | 'minute' | 'hour' | 'day' | 'month' | 'year' | 'date';
|
|
1625
|
+
export type UnitTypeLongPlural = 'milliseconds' | 'seconds' | 'minutes' | 'hours' | 'days' | 'months' | 'years' | 'dates';
|
|
1626
|
+
export type UnitType = UnitTypeLong | UnitTypeLongPlural | UnitTypeShort;
|
|
1627
|
+
export type OpUnitType = UnitType | "week" | "weeks" | 'w';
|
|
1628
|
+
export type QUnitType = UnitType | "quarter" | "quarters" | 'Q';
|
|
1629
|
+
export type ManipulateType = Exclude<OpUnitType, 'date' | 'dates'>;
|
|
1630
|
+
class Dayjs {
|
|
1631
|
+
constructor(config?: ConfigType);
|
|
1632
|
+
/**
|
|
1633
|
+
* All Day.js objects are immutable. Still, `dayjs#clone` can create a clone of the current object if you need one.
|
|
1634
|
+
* ```
|
|
1635
|
+
* dayjs().clone()// => Dayjs
|
|
1636
|
+
* dayjs(dayjs('2019-01-25')) // passing a Dayjs object to a constructor will also clone it
|
|
1637
|
+
* ```
|
|
1638
|
+
* Docs: https://day.js.org/docs/en/parse/dayjs-clone
|
|
1639
|
+
*/
|
|
1640
|
+
clone(): Dayjs;
|
|
1641
|
+
/**
|
|
1642
|
+
* This returns a `boolean` indicating whether the Day.js object contains a valid date or not.
|
|
1643
|
+
* ```
|
|
1644
|
+
* dayjs().isValid()// => boolean
|
|
1645
|
+
* ```
|
|
1646
|
+
* Docs: https://day.js.org/docs/en/parse/is-valid
|
|
1647
|
+
*/
|
|
1648
|
+
isValid(): boolean;
|
|
1649
|
+
/**
|
|
1650
|
+
* Get the year.
|
|
1651
|
+
* ```
|
|
1652
|
+
* dayjs().year()// => 2020
|
|
1653
|
+
* ```
|
|
1654
|
+
* Docs: https://day.js.org/docs/en/get-set/year
|
|
1655
|
+
*/
|
|
1656
|
+
year(): number;
|
|
1657
|
+
/**
|
|
1658
|
+
* Set the year.
|
|
1659
|
+
* ```
|
|
1660
|
+
* dayjs().year(2000)// => Dayjs
|
|
1661
|
+
* ```
|
|
1662
|
+
* Docs: https://day.js.org/docs/en/get-set/year
|
|
1663
|
+
*/
|
|
1664
|
+
year(value: number): Dayjs;
|
|
1665
|
+
/**
|
|
1666
|
+
* Get the month.
|
|
1667
|
+
*
|
|
1668
|
+
* Months are zero indexed, so January is month 0.
|
|
1669
|
+
* ```
|
|
1670
|
+
* dayjs().month()// => 0-11
|
|
1671
|
+
* ```
|
|
1672
|
+
* Docs: https://day.js.org/docs/en/get-set/month
|
|
1673
|
+
*/
|
|
1674
|
+
month(): number;
|
|
1675
|
+
/**
|
|
1676
|
+
* Set the month.
|
|
1677
|
+
*
|
|
1678
|
+
* Months are zero indexed, so January is month 0.
|
|
1679
|
+
*
|
|
1680
|
+
* Accepts numbers from 0 to 11. If the range is exceeded, it will bubble up to the next year.
|
|
1681
|
+
* ```
|
|
1682
|
+
* dayjs().month(0)// => Dayjs
|
|
1683
|
+
* ```
|
|
1684
|
+
* Docs: https://day.js.org/docs/en/get-set/month
|
|
1685
|
+
*/
|
|
1686
|
+
month(value: number): Dayjs;
|
|
1687
|
+
/**
|
|
1688
|
+
* Get the date of the month.
|
|
1689
|
+
* ```
|
|
1690
|
+
* dayjs().date()// => 1-31
|
|
1691
|
+
* ```
|
|
1692
|
+
* Docs: https://day.js.org/docs/en/get-set/date
|
|
1693
|
+
*/
|
|
1694
|
+
date(): number;
|
|
1695
|
+
/**
|
|
1696
|
+
* Set the date of the month.
|
|
1697
|
+
*
|
|
1698
|
+
* Accepts numbers from 1 to 31. If the range is exceeded, it will bubble up to the next months.
|
|
1699
|
+
* ```
|
|
1700
|
+
* dayjs().date(1)// => Dayjs
|
|
1701
|
+
* ```
|
|
1702
|
+
* Docs: https://day.js.org/docs/en/get-set/date
|
|
1703
|
+
*/
|
|
1704
|
+
date(value: number): Dayjs;
|
|
1705
|
+
/**
|
|
1706
|
+
* Get the day of the week.
|
|
1707
|
+
*
|
|
1708
|
+
* Returns numbers from 0 (Sunday) to 6 (Saturday).
|
|
1709
|
+
* ```
|
|
1710
|
+
* dayjs().day()// 0-6
|
|
1711
|
+
* ```
|
|
1712
|
+
* Docs: https://day.js.org/docs/en/get-set/day
|
|
1713
|
+
*/
|
|
1714
|
+
day(): 0 | 1 | 2 | 3 | 4 | 5 | 6;
|
|
1715
|
+
/**
|
|
1716
|
+
* Set the day of the week.
|
|
1717
|
+
*
|
|
1718
|
+
* Accepts numbers from 0 (Sunday) to 6 (Saturday). If the range is exceeded, it will bubble up to next weeks.
|
|
1719
|
+
* ```
|
|
1720
|
+
* dayjs().day(0)// => Dayjs
|
|
1721
|
+
* ```
|
|
1722
|
+
* Docs: https://day.js.org/docs/en/get-set/day
|
|
1723
|
+
*/
|
|
1724
|
+
day(value: number): Dayjs;
|
|
1725
|
+
/**
|
|
1726
|
+
* Get the hour.
|
|
1727
|
+
* ```
|
|
1728
|
+
* dayjs().hour()// => 0-23
|
|
1729
|
+
* ```
|
|
1730
|
+
* Docs: https://day.js.org/docs/en/get-set/hour
|
|
1731
|
+
*/
|
|
1732
|
+
hour(): number;
|
|
1733
|
+
/**
|
|
1734
|
+
* Set the hour.
|
|
1735
|
+
*
|
|
1736
|
+
* Accepts numbers from 0 to 23. If the range is exceeded, it will bubble up to the next day.
|
|
1737
|
+
* ```
|
|
1738
|
+
* dayjs().hour(12)// => Dayjs
|
|
1739
|
+
* ```
|
|
1740
|
+
* Docs: https://day.js.org/docs/en/get-set/hour
|
|
1741
|
+
*/
|
|
1742
|
+
hour(value: number): Dayjs;
|
|
1743
|
+
/**
|
|
1744
|
+
* Get the minutes.
|
|
1745
|
+
* ```
|
|
1746
|
+
* dayjs().minute()// => 0-59
|
|
1747
|
+
* ```
|
|
1748
|
+
* Docs: https://day.js.org/docs/en/get-set/minute
|
|
1749
|
+
*/
|
|
1750
|
+
minute(): number;
|
|
1751
|
+
/**
|
|
1752
|
+
* Set the minutes.
|
|
1753
|
+
*
|
|
1754
|
+
* Accepts numbers from 0 to 59. If the range is exceeded, it will bubble up to the next hour.
|
|
1755
|
+
* ```
|
|
1756
|
+
* dayjs().minute(59)// => Dayjs
|
|
1757
|
+
* ```
|
|
1758
|
+
* Docs: https://day.js.org/docs/en/get-set/minute
|
|
1759
|
+
*/
|
|
1760
|
+
minute(value: number): Dayjs;
|
|
1761
|
+
/**
|
|
1762
|
+
* Get the seconds.
|
|
1763
|
+
* ```
|
|
1764
|
+
* dayjs().second()// => 0-59
|
|
1765
|
+
* ```
|
|
1766
|
+
* Docs: https://day.js.org/docs/en/get-set/second
|
|
1767
|
+
*/
|
|
1768
|
+
second(): number;
|
|
1769
|
+
/**
|
|
1770
|
+
* Set the seconds.
|
|
1771
|
+
*
|
|
1772
|
+
* Accepts numbers from 0 to 59. If the range is exceeded, it will bubble up to the next minutes.
|
|
1773
|
+
* ```
|
|
1774
|
+
* dayjs().second(1)// Dayjs
|
|
1775
|
+
* ```
|
|
1776
|
+
*/
|
|
1777
|
+
second(value: number): Dayjs;
|
|
1778
|
+
/**
|
|
1779
|
+
* Get the milliseconds.
|
|
1780
|
+
* ```
|
|
1781
|
+
* dayjs().millisecond()// => 0-999
|
|
1782
|
+
* ```
|
|
1783
|
+
* Docs: https://day.js.org/docs/en/get-set/millisecond
|
|
1784
|
+
*/
|
|
1785
|
+
millisecond(): number;
|
|
1786
|
+
/**
|
|
1787
|
+
* Set the milliseconds.
|
|
1788
|
+
*
|
|
1789
|
+
* Accepts numbers from 0 to 999. If the range is exceeded, it will bubble up to the next seconds.
|
|
1790
|
+
* ```
|
|
1791
|
+
* dayjs().millisecond(1)// => Dayjs
|
|
1792
|
+
* ```
|
|
1793
|
+
* Docs: https://day.js.org/docs/en/get-set/millisecond
|
|
1794
|
+
*/
|
|
1795
|
+
millisecond(value: number): Dayjs;
|
|
1796
|
+
/**
|
|
1797
|
+
* Generic setter, accepting unit as first argument, and value as second, returns a new instance with the applied changes.
|
|
1798
|
+
*
|
|
1799
|
+
* In general:
|
|
1800
|
+
* ```
|
|
1801
|
+
* dayjs().set(unit, value) === dayjs()[unit](value)
|
|
1802
|
+
* ```
|
|
1803
|
+
* Units are case insensitive, and support plural and short forms.
|
|
1804
|
+
* ```
|
|
1805
|
+
* dayjs().set('date', 1)
|
|
1806
|
+
* dayjs().set('month', 3) // April
|
|
1807
|
+
* dayjs().set('second', 30)
|
|
1808
|
+
* ```
|
|
1809
|
+
* Docs: https://day.js.org/docs/en/get-set/set
|
|
1810
|
+
*/
|
|
1811
|
+
set(unit: UnitType, value: number): Dayjs;
|
|
1812
|
+
/**
|
|
1813
|
+
* String getter, returns the corresponding information getting from Day.js object.
|
|
1814
|
+
*
|
|
1815
|
+
* In general:
|
|
1816
|
+
* ```
|
|
1817
|
+
* dayjs().get(unit) === dayjs()[unit]()
|
|
1818
|
+
* ```
|
|
1819
|
+
* Units are case insensitive, and support plural and short forms.
|
|
1820
|
+
* ```
|
|
1821
|
+
* dayjs().get('year')
|
|
1822
|
+
* dayjs().get('month') // start 0
|
|
1823
|
+
* dayjs().get('date')
|
|
1824
|
+
* ```
|
|
1825
|
+
* Docs: https://day.js.org/docs/en/get-set/get
|
|
1826
|
+
*/
|
|
1827
|
+
get(unit: UnitType): number;
|
|
1828
|
+
/**
|
|
1829
|
+
* Returns a cloned Day.js object with a specified amount of time added.
|
|
1830
|
+
* ```
|
|
1831
|
+
* dayjs().add(7, 'day')// => Dayjs
|
|
1832
|
+
* ```
|
|
1833
|
+
* Units are case insensitive, and support plural and short forms.
|
|
1834
|
+
*
|
|
1835
|
+
* Docs: https://day.js.org/docs/en/manipulate/add
|
|
1836
|
+
*/
|
|
1837
|
+
add(value: number, unit?: ManipulateType): Dayjs;
|
|
1838
|
+
/**
|
|
1839
|
+
* Returns a cloned Day.js object with a specified amount of time subtracted.
|
|
1840
|
+
* ```
|
|
1841
|
+
* dayjs().subtract(7, 'year')// => Dayjs
|
|
1842
|
+
* ```
|
|
1843
|
+
* Units are case insensitive, and support plural and short forms.
|
|
1844
|
+
*
|
|
1845
|
+
* Docs: https://day.js.org/docs/en/manipulate/subtract
|
|
1846
|
+
*/
|
|
1847
|
+
subtract(value: number, unit?: ManipulateType): Dayjs;
|
|
1848
|
+
/**
|
|
1849
|
+
* Returns a cloned Day.js object and set it to the start of a unit of time.
|
|
1850
|
+
* ```
|
|
1851
|
+
* dayjs().startOf('year')// => Dayjs
|
|
1852
|
+
* ```
|
|
1853
|
+
* Units are case insensitive, and support plural and short forms.
|
|
1854
|
+
*
|
|
1855
|
+
* Docs: https://day.js.org/docs/en/manipulate/start-of
|
|
1856
|
+
*/
|
|
1857
|
+
startOf(unit: OpUnitType): Dayjs;
|
|
1858
|
+
/**
|
|
1859
|
+
* Returns a cloned Day.js object and set it to the end of a unit of time.
|
|
1860
|
+
* ```
|
|
1861
|
+
* dayjs().endOf('month')// => Dayjs
|
|
1862
|
+
* ```
|
|
1863
|
+
* Units are case insensitive, and support plural and short forms.
|
|
1864
|
+
*
|
|
1865
|
+
* Docs: https://day.js.org/docs/en/manipulate/end-of
|
|
1866
|
+
*/
|
|
1867
|
+
endOf(unit: OpUnitType): Dayjs;
|
|
1868
|
+
/**
|
|
1869
|
+
* Get the formatted date according to the string of tokens passed in.
|
|
1870
|
+
*
|
|
1871
|
+
* To escape characters, wrap them in square brackets (e.g. [MM]).
|
|
1872
|
+
* ```
|
|
1873
|
+
* dayjs().format()// => current date in ISO8601, without fraction seconds e.g. '2020-04-02T08:02:17-05:00'
|
|
1874
|
+
* dayjs('2019-01-25').format('[YYYYescape] YYYY-MM-DDTHH:mm:ssZ[Z]')// 'YYYYescape 2019-01-25T00:00:00-02:00Z'
|
|
1875
|
+
* dayjs('2019-01-25').format('DD/MM/YYYY') // '25/01/2019'
|
|
1876
|
+
* ```
|
|
1877
|
+
* Docs: https://day.js.org/docs/en/display/format
|
|
1878
|
+
*/
|
|
1879
|
+
format(template?: string): string;
|
|
1880
|
+
/**
|
|
1881
|
+
* This indicates the difference between two date-time in the specified unit.
|
|
1882
|
+
*
|
|
1883
|
+
* To get the difference in milliseconds, use `dayjs#diff`
|
|
1884
|
+
* ```
|
|
1885
|
+
* const date1 = dayjs('2019-01-25')
|
|
1886
|
+
* const date2 = dayjs('2018-06-05')
|
|
1887
|
+
* date1.diff(date2) // 20214000000 default milliseconds
|
|
1888
|
+
* date1.diff() // milliseconds to current time
|
|
1889
|
+
* ```
|
|
1890
|
+
*
|
|
1891
|
+
* To get the difference in another unit of measurement, pass that measurement as the second argument.
|
|
1892
|
+
* ```
|
|
1893
|
+
* const date1 = dayjs('2019-01-25')
|
|
1894
|
+
* date1.diff('2018-06-05', 'month') // 7
|
|
1895
|
+
* ```
|
|
1896
|
+
* Units are case insensitive, and support plural and short forms.
|
|
1897
|
+
*
|
|
1898
|
+
* Docs: https://day.js.org/docs/en/display/difference
|
|
1899
|
+
*/
|
|
1900
|
+
diff(date?: ConfigType, unit?: QUnitType | OpUnitType, float?: boolean): number;
|
|
1901
|
+
/**
|
|
1902
|
+
* This returns the number of **milliseconds** since the Unix Epoch of the Day.js object.
|
|
1903
|
+
* ```
|
|
1904
|
+
* dayjs('2019-01-25').valueOf() // 1548381600000
|
|
1905
|
+
* +dayjs(1548381600000) // 1548381600000
|
|
1906
|
+
* ```
|
|
1907
|
+
* To get a Unix timestamp (the number of seconds since the epoch) from a Day.js object, you should use Unix Timestamp `dayjs#unix()`.
|
|
1908
|
+
*
|
|
1909
|
+
* Docs: https://day.js.org/docs/en/display/unix-timestamp-milliseconds
|
|
1910
|
+
*/
|
|
1911
|
+
valueOf(): number;
|
|
1912
|
+
/**
|
|
1913
|
+
* This returns the Unix timestamp (the number of **seconds** since the Unix Epoch) of the Day.js object.
|
|
1914
|
+
* ```
|
|
1915
|
+
* dayjs('2019-01-25').unix() // 1548381600
|
|
1916
|
+
* ```
|
|
1917
|
+
* This value is floored to the nearest second, and does not include a milliseconds component.
|
|
1918
|
+
*
|
|
1919
|
+
* Docs: https://day.js.org/docs/en/display/unix-timestamp
|
|
1920
|
+
*/
|
|
1921
|
+
unix(): number;
|
|
1922
|
+
/**
|
|
1923
|
+
* Get the number of days in the current month.
|
|
1924
|
+
* ```
|
|
1925
|
+
* dayjs('2019-01-25').daysInMonth() // 31
|
|
1926
|
+
* ```
|
|
1927
|
+
* Docs: https://day.js.org/docs/en/display/days-in-month
|
|
1928
|
+
*/
|
|
1929
|
+
daysInMonth(): number;
|
|
1930
|
+
/**
|
|
1931
|
+
* To get a copy of the native `Date` object parsed from the Day.js object use `dayjs#toDate`.
|
|
1932
|
+
* ```
|
|
1933
|
+
* dayjs('2019-01-25').toDate()// => Date
|
|
1934
|
+
* ```
|
|
1935
|
+
*/
|
|
1936
|
+
toDate(): Date;
|
|
1937
|
+
/**
|
|
1938
|
+
* To serialize as an ISO 8601 string.
|
|
1939
|
+
* ```
|
|
1940
|
+
* dayjs('2019-01-25').toJSON() // '2019-01-25T02:00:00.000Z'
|
|
1941
|
+
* ```
|
|
1942
|
+
* Docs: https://day.js.org/docs/en/display/as-json
|
|
1943
|
+
*/
|
|
1944
|
+
toJSON(): string;
|
|
1945
|
+
/**
|
|
1946
|
+
* To format as an ISO 8601 string.
|
|
1947
|
+
* ```
|
|
1948
|
+
* dayjs('2019-01-25').toISOString() // '2019-01-25T02:00:00.000Z'
|
|
1949
|
+
* ```
|
|
1950
|
+
* Docs: https://day.js.org/docs/en/display/as-iso-string
|
|
1951
|
+
*/
|
|
1952
|
+
toISOString(): string;
|
|
1953
|
+
/**
|
|
1954
|
+
* Returns a string representation of the date.
|
|
1955
|
+
* ```
|
|
1956
|
+
* dayjs('2019-01-25').toString() // 'Fri, 25 Jan 2019 02:00:00 GMT'
|
|
1957
|
+
* ```
|
|
1958
|
+
* Docs: https://day.js.org/docs/en/display/as-string
|
|
1959
|
+
*/
|
|
1960
|
+
toString(): string;
|
|
1961
|
+
/**
|
|
1962
|
+
* Get the UTC offset in minutes.
|
|
1963
|
+
* ```
|
|
1964
|
+
* dayjs().utcOffset()
|
|
1965
|
+
* ```
|
|
1966
|
+
* Docs: https://day.js.org/docs/en/manipulate/utc-offset
|
|
1967
|
+
*/
|
|
1968
|
+
utcOffset(): number;
|
|
1969
|
+
/**
|
|
1970
|
+
* This indicates whether the Day.js object is before the other supplied date-time.
|
|
1971
|
+
* ```
|
|
1972
|
+
* dayjs().isBefore(dayjs('2011-01-01')) // default milliseconds
|
|
1973
|
+
* ```
|
|
1974
|
+
* If you want to limit the granularity to a unit other than milliseconds, pass it as the second parameter.
|
|
1975
|
+
* ```
|
|
1976
|
+
* dayjs().isBefore('2011-01-01', 'year')// => boolean
|
|
1977
|
+
* ```
|
|
1978
|
+
* Units are case insensitive, and support plural and short forms.
|
|
1979
|
+
*
|
|
1980
|
+
* Docs: https://day.js.org/docs/en/query/is-before
|
|
1981
|
+
*/
|
|
1982
|
+
isBefore(date?: ConfigType, unit?: OpUnitType): boolean;
|
|
1983
|
+
/**
|
|
1984
|
+
* This indicates whether the Day.js object is the same as the other supplied date-time.
|
|
1985
|
+
* ```
|
|
1986
|
+
* dayjs().isSame(dayjs('2011-01-01')) // default milliseconds
|
|
1987
|
+
* ```
|
|
1988
|
+
* If you want to limit the granularity to a unit other than milliseconds, pass it as the second parameter.
|
|
1989
|
+
* ```
|
|
1990
|
+
* dayjs().isSame('2011-01-01', 'year')// => boolean
|
|
1991
|
+
* ```
|
|
1992
|
+
* Docs: https://day.js.org/docs/en/query/is-same
|
|
1993
|
+
*/
|
|
1994
|
+
isSame(date?: ConfigType, unit?: OpUnitType): boolean;
|
|
1995
|
+
/**
|
|
1996
|
+
* This indicates whether the Day.js object is after the other supplied date-time.
|
|
1997
|
+
* ```
|
|
1998
|
+
* dayjs().isAfter(dayjs('2011-01-01')) // default milliseconds
|
|
1999
|
+
* ```
|
|
2000
|
+
* If you want to limit the granularity to a unit other than milliseconds, pass it as the second parameter.
|
|
2001
|
+
* ```
|
|
2002
|
+
* dayjs().isAfter('2011-01-01', 'year')// => boolean
|
|
2003
|
+
* ```
|
|
2004
|
+
* Units are case insensitive, and support plural and short forms.
|
|
2005
|
+
*
|
|
2006
|
+
* Docs: https://day.js.org/docs/en/query/is-after
|
|
2007
|
+
*/
|
|
2008
|
+
isAfter(date?: ConfigType, unit?: OpUnitType): boolean;
|
|
2009
|
+
locale(): string;
|
|
2010
|
+
locale(preset: string | ILocale, object?: Partial<ILocale>): Dayjs;
|
|
2011
|
+
}
|
|
2012
|
+
export type PluginFunc<T = unknown> = (option: T, c: typeof Dayjs, d: typeof dayjs) => void;
|
|
2013
|
+
export function extend<T = unknown>(plugin: PluginFunc<T>, option?: T): Dayjs;
|
|
2014
|
+
export function locale(preset?: string | ILocale, object?: Partial<ILocale>, isLocal?: boolean): string;
|
|
2015
|
+
export function isDayjs(d: any): d is Dayjs;
|
|
2016
|
+
export function unix(t: number): Dayjs;
|
|
2017
|
+
const Ls: {
|
|
2018
|
+
[key: string]: ILocale;
|
|
2019
|
+
};
|
|
2020
|
+
}
|
|
2021
|
+
//#endregion
|
|
1592
2022
|
//#region src/utils/date.d.ts
|
|
1593
2023
|
declare class DateUtils {
|
|
1594
|
-
readonly dayjs: typeof
|
|
2024
|
+
readonly dayjs: typeof dayjs;
|
|
1595
2025
|
constructor();
|
|
1596
2026
|
/**
|
|
1597
2027
|
* Formats a date to a string according to the specified format
|
|
@@ -1680,31 +2110,31 @@ declare class DateUtils {
|
|
|
1680
2110
|
declare module "dayjs" {
|
|
1681
2111
|
interface Dayjs {
|
|
1682
2112
|
fromNow(withoutSuffix?: boolean): string;
|
|
1683
|
-
from(compared:
|
|
2113
|
+
from(compared: dayjs.ConfigType, withoutSuffix?: boolean): string;
|
|
1684
2114
|
toNow(withoutSuffix?: boolean): string;
|
|
1685
|
-
to(compared:
|
|
2115
|
+
to(compared: dayjs.ConfigType, withoutSuffix?: boolean): string;
|
|
1686
2116
|
}
|
|
1687
2117
|
}
|
|
1688
2118
|
declare module "dayjs" {
|
|
1689
2119
|
interface Dayjs {
|
|
1690
|
-
tz(timezone?: string, keepLocalTime?: boolean):
|
|
2120
|
+
tz(timezone?: string, keepLocalTime?: boolean): dayjs.Dayjs;
|
|
1691
2121
|
offsetName(type?: "short" | "long"): string | undefined;
|
|
1692
2122
|
}
|
|
1693
2123
|
interface DayjsTimezone {
|
|
1694
|
-
(date?:
|
|
1695
|
-
(date:
|
|
2124
|
+
(date?: dayjs.ConfigType, timezone?: string): dayjs.Dayjs;
|
|
2125
|
+
(date: dayjs.ConfigType, format: string, timezone?: string): dayjs.Dayjs;
|
|
1696
2126
|
guess(): string;
|
|
1697
2127
|
setDefault(timezone?: string): void;
|
|
1698
2128
|
}
|
|
1699
2129
|
}
|
|
1700
2130
|
declare module "dayjs" {
|
|
1701
2131
|
interface Dayjs {
|
|
1702
|
-
utc(keepLocalTime?: boolean):
|
|
1703
|
-
local():
|
|
2132
|
+
utc(keepLocalTime?: boolean): dayjs.Dayjs;
|
|
2133
|
+
local(): dayjs.Dayjs;
|
|
1704
2134
|
isUTC(): boolean;
|
|
1705
|
-
utcOffset(offset: number | string, keepLocalTime?: boolean):
|
|
2135
|
+
utcOffset(offset: number | string, keepLocalTime?: boolean): dayjs.Dayjs;
|
|
1706
2136
|
}
|
|
1707
|
-
function utc(config?:
|
|
2137
|
+
function utc(config?: dayjs.ConfigType, format?: string, strict?: boolean): dayjs.Dayjs;
|
|
1708
2138
|
}
|
|
1709
2139
|
//#endregion
|
|
1710
2140
|
//#region src/utils/id.d.ts
|
package/dist/index.iife.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
var HaloUiShared=(function(e,t,n,r){var i=Object.create,a=Object.defineProperty,o=Object.getOwnPropertyDescriptor,s=Object.getOwnPropertyNames,c=Object.getPrototypeOf,l=Object.prototype.hasOwnProperty,u=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports),d=(e,t,n,r)=>{if(t&&typeof t==`object`||typeof t==`function`)for(var i=s(t),c=0,u=i.length,d;c<u;c++)d=i[c],!l.call(e,d)&&d!==n&&a(e,d,{get:(e=>t[e]).bind(null,d),enumerable:!(r=o(t,d))||r.enumerable});return e},f=(e,t,n)=>(n=e==null?{}:i(c(e)),d(t||!e||!e.__esModule?a(n,`default`,{value:e,enumerable:!0}):n,e));function p(e){return{all:e||=new Map,on:function(t,n){var r=e.get(t);r?r.push(n):e.set(t,[n])},off:function(t,n){var r=e.get(t);r&&(n?r.splice(r.indexOf(n)>>>0,1):e.set(t,[]))},emit:function(t,n){var r=e.get(t);r&&r.slice().map(function(e){e(n)}),(r=e.get(`*`))&&r.slice().map(function(e){e(t,n)})}}}let m=p();function h(e){return e}let g=function(e){return e.TAG=`Tag`,e.CATEGORY=`Category`,e.POST=`Post`,e.SINGLE_PAGE=`SinglePage`,e}({}),_={currentUser:(0,n.defineStore)(`currentUser`,()=>{let e=(0,r.ref)(),n=(0,r.ref)(!1);async function i(){let{data:r}=await t.consoleApiClient.user.getCurrentUserDetail();e.value=r,n.value=r.user.metadata.name===`anonymousUser`}return{currentUser:e,isAnonymous:n,fetchCurrentUser:i}}),globalInfo:(0,n.defineStore)(`global-info`,()=>{let e=(0,r.ref)();async function n(){let{data:n}=await t.axiosInstance.get(`/actuator/globalinfo`,{withCredentials:!0});e.value=n}return{globalInfo:e,fetchGlobalInfo:n}})},v={XL:1600,L:1200,M:800,S:400};var y=class{getThumbnailUrl(e,t){let{origin:n}=location,r=v[t];return!r||e.startsWith(`data:`)?e:e.startsWith(n)||e.startsWith(`/`)?`${e}?width=${r}`:`/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=${encodeURIComponent(e)}&width=${r}`}getUrl(e){if(typeof e==`string`)return e;if(`spec`in e)return e.status?.permalink;if(`url`in e)return e.url;throw Error(`Invalid attachment`)}convertToSimple(e){if(typeof e==`string`)return{url:e};if(`spec`in e)return{url:e.status?.permalink||``,alt:e.spec.displayName,mediaType:e.spec.mediaType};if(`url`in e)return e;throw Error(`Invalid attachment`)}},b=u(((e,t)=>{(function(n,r){typeof e==`object`&&t!==void 0?t.exports=r():typeof define==`function`&&define.amd?define(r):(n=typeof globalThis<`u`?globalThis:n||self).dayjs=r()})(e,(function(){"use strict";var e=1e3,t=6e4,n=36e5,r=`millisecond`,i=`second`,a=`minute`,o=`hour`,s=`day`,c=`week`,l=`month`,u=`quarter`,d=`year`,f=`date`,p=`Invalid Date`,m=/^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/,h=/\[([^\]]+)]|Y{1,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g,g={name:`en`,weekdays:`Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday`.split(`_`),months:`January_February_March_April_May_June_July_August_September_October_November_December`.split(`_`),ordinal:function(e){var t=[`th`,`st`,`nd`,`rd`],n=e%100;return`[`+e+(t[(n-20)%10]||t[n]||t[0])+`]`}},_=function(e,t,n){var r=String(e);return!r||r.length>=t?e:``+Array(t+1-r.length).join(n)+e},v={s:_,z:function(e){var t=-e.utcOffset(),n=Math.abs(t),r=Math.floor(n/60),i=n%60;return(t<=0?`+`:`-`)+_(r,2,`0`)+`:`+_(i,2,`0`)},m:function e(t,n){if(t.date()<n.date())return-e(n,t);var r=12*(n.year()-t.year())+(n.month()-t.month()),i=t.clone().add(r,l),a=n-i<0,o=t.clone().add(r+(a?-1:1),l);return+(-(r+(n-i)/(a?i-o:o-i))||0)},a:function(e){return e<0?Math.ceil(e)||0:Math.floor(e)},p:function(e){return{M:l,y:d,w:c,d:s,D:f,h:o,m:a,s:i,ms:r,Q:u}[e]||String(e||``).toLowerCase().replace(/s$/,``)},u:function(e){return e===void 0}},y=`en`,b={};b[y]=g;var x=`$isDayjsObject`,S=function(e){return e instanceof E||!(!e||!e[x])},C=function e(t,n,r){var i;if(!t)return y;if(typeof t==`string`){var a=t.toLowerCase();b[a]&&(i=a),n&&(b[a]=n,i=a);var o=t.split(`-`);if(!i&&o.length>1)return e(o[0])}else{var s=t.name;b[s]=t,i=s}return!r&&i&&(y=i),i||!r&&y},w=function(e,t){if(S(e))return e.clone();var n=typeof t==`object`?t:{};return n.date=e,n.args=arguments,new E(n)},T=v;T.l=C,T.i=S,T.w=function(e,t){return w(e,{locale:t.$L,utc:t.$u,x:t.$x,$offset:t.$offset})};var E=function(){function g(e){this.$L=C(e.locale,null,!0),this.parse(e),this.$x=this.$x||e.x||{},this[x]=!0}var _=g.prototype;return _.parse=function(e){this.$d=function(e){var t=e.date,n=e.utc;if(t===null)return new Date(NaN);if(T.u(t))return new Date;if(t instanceof Date)return new Date(t);if(typeof t==`string`&&!/Z$/i.test(t)){var r=t.match(m);if(r){var i=r[2]-1||0,a=(r[7]||`0`).substring(0,3);return n?new Date(Date.UTC(r[1],i,r[3]||1,r[4]||0,r[5]||0,r[6]||0,a)):new Date(r[1],i,r[3]||1,r[4]||0,r[5]||0,r[6]||0,a)}}return new Date(t)}(e),this.init()},_.init=function(){var e=this.$d;this.$y=e.getFullYear(),this.$M=e.getMonth(),this.$D=e.getDate(),this.$W=e.getDay(),this.$H=e.getHours(),this.$m=e.getMinutes(),this.$s=e.getSeconds(),this.$ms=e.getMilliseconds()},_.$utils=function(){return T},_.isValid=function(){return this.$d.toString()!==p},_.isSame=function(e,t){var n=w(e);return this.startOf(t)<=n&&n<=this.endOf(t)},_.isAfter=function(e,t){return w(e)<this.startOf(t)},_.isBefore=function(e,t){return this.endOf(t)<w(e)},_.$g=function(e,t,n){return T.u(e)?this[t]:this.set(n,e)},_.unix=function(){return Math.floor(this.valueOf()/1e3)},_.valueOf=function(){return this.$d.getTime()},_.startOf=function(e,t){var n=this,r=!!T.u(t)||t,u=T.p(e),p=function(e,t){var i=T.w(n.$u?Date.UTC(n.$y,t,e):new Date(n.$y,t,e),n);return r?i:i.endOf(s)},m=function(e,t){return T.w(n.toDate()[e].apply(n.toDate(`s`),(r?[0,0,0,0]:[23,59,59,999]).slice(t)),n)},h=this.$W,g=this.$M,_=this.$D,v=`set`+(this.$u?`UTC`:``);switch(u){case d:return r?p(1,0):p(31,11);case l:return r?p(1,g):p(0,g+1);case c:var y=this.$locale().weekStart||0,b=(h<y?h+7:h)-y;return p(r?_-b:_+(6-b),g);case s:case f:return m(v+`Hours`,0);case o:return m(v+`Minutes`,1);case a:return m(v+`Seconds`,2);case i:return m(v+`Milliseconds`,3);default:return this.clone()}},_.endOf=function(e){return this.startOf(e,!1)},_.$set=function(e,t){var n,c=T.p(e),u=`set`+(this.$u?`UTC`:``),p=(n={},n[s]=u+`Date`,n[f]=u+`Date`,n[l]=u+`Month`,n[d]=u+`FullYear`,n[o]=u+`Hours`,n[a]=u+`Minutes`,n[i]=u+`Seconds`,n[r]=u+`Milliseconds`,n)[c],m=c===s?this.$D+(t-this.$W):t;if(c===l||c===d){var h=this.clone().set(f,1);h.$d[p](m),h.init(),this.$d=h.set(f,Math.min(this.$D,h.daysInMonth())).$d}else p&&this.$d[p](m);return this.init(),this},_.set=function(e,t){return this.clone().$set(e,t)},_.get=function(e){return this[T.p(e)]()},_.add=function(r,u){var f,p=this;r=Number(r);var m=T.p(u),h=function(e){var t=w(p);return T.w(t.date(t.date()+Math.round(e*r)),p)};if(m===l)return this.set(l,this.$M+r);if(m===d)return this.set(d,this.$y+r);if(m===s)return h(1);if(m===c)return h(7);var g=(f={},f[a]=t,f[o]=n,f[i]=e,f)[m]||1,_=this.$d.getTime()+r*g;return T.w(_,this)},_.subtract=function(e,t){return this.add(-1*e,t)},_.format=function(e){var t=this,n=this.$locale();if(!this.isValid())return n.invalidDate||p;var r=e||`YYYY-MM-DDTHH:mm:ssZ`,i=T.z(this),a=this.$H,o=this.$m,s=this.$M,c=n.weekdays,l=n.months,u=n.meridiem,d=function(e,n,i,a){return e&&(e[n]||e(t,r))||i[n].slice(0,a)},f=function(e){return T.s(a%12||12,e,`0`)},m=u||function(e,t,n){var r=e<12?`AM`:`PM`;return n?r.toLowerCase():r};return r.replace(h,(function(e,r){return r||function(e){switch(e){case`YY`:return String(t.$y).slice(-2);case`YYYY`:return T.s(t.$y,4,`0`);case`M`:return s+1;case`MM`:return T.s(s+1,2,`0`);case`MMM`:return d(n.monthsShort,s,l,3);case`MMMM`:return d(l,s);case`D`:return t.$D;case`DD`:return T.s(t.$D,2,`0`);case`d`:return String(t.$W);case`dd`:return d(n.weekdaysMin,t.$W,c,2);case`ddd`:return d(n.weekdaysShort,t.$W,c,3);case`dddd`:return c[t.$W];case`H`:return String(a);case`HH`:return T.s(a,2,`0`);case`h`:return f(1);case`hh`:return f(2);case`a`:return m(a,o,!0);case`A`:return m(a,o,!1);case`m`:return String(o);case`mm`:return T.s(o,2,`0`);case`s`:return String(t.$s);case`ss`:return T.s(t.$s,2,`0`);case`SSS`:return T.s(t.$ms,3,`0`);case`Z`:return i}return null}(e)||i.replace(`:`,``)}))},_.utcOffset=function(){return 15*-Math.round(this.$d.getTimezoneOffset()/15)},_.diff=function(r,f,p){var m,h=this,g=T.p(f),_=w(r),v=(_.utcOffset()-this.utcOffset())*t,y=this-_,b=function(){return T.m(h,_)};switch(g){case d:m=b()/12;break;case l:m=b();break;case u:m=b()/3;break;case c:m=(y-v)/6048e5;break;case s:m=(y-v)/864e5;break;case o:m=y/n;break;case a:m=y/t;break;case i:m=y/e;break;default:m=y}return p?m:T.a(m)},_.daysInMonth=function(){return this.endOf(l).$D},_.$locale=function(){return b[this.$L]},_.locale=function(e,t){if(!e)return this.$L;var n=this.clone(),r=C(e,t,!0);return r&&(n.$L=r),n},_.clone=function(){return T.w(this.$d,this)},_.toDate=function(){return new Date(this.valueOf())},_.toJSON=function(){return this.isValid()?this.toISOString():null},_.toISOString=function(){return this.$d.toISOString()},_.toString=function(){return this.$d.toUTCString()},g}(),D=E.prototype;return w.prototype=D,[[`$ms`,r],[`$s`,i],[`$m`,a],[`$H`,o],[`$W`,s],[`$M`,l],[`$y`,d],[`$D`,f]].forEach((function(e){D[e[1]]=function(t){return this.$g(t,e[0],e[1])}})),w.extend=function(e,t){return e.$i||=(e(t,E,w),!0),w},w.locale=C,w.isDayjs=S,w.unix=function(e){return w(1e3*e)},w.en=b[y],w.Ls=b,w.p={},w}))})),x=u(((e,t)=>{(function(n,r){typeof e==`object`&&t!==void 0?t.exports=r():typeof define==`function`&&define.amd?define(r):(n=typeof globalThis<`u`?globalThis:n||self).dayjs_locale_en=r()})(e,(function(){"use strict";return{name:`en`,weekdays:`Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday`.split(`_`),months:`January_February_March_April_May_June_July_August_September_October_November_December`.split(`_`),ordinal:function(e){var t=[`th`,`st`,`nd`,`rd`],n=e%100;return`[`+e+(t[(n-20)%10]||t[n]||t[0])+`]`}}}))})),S=u(((e,t)=>{(function(n,r){typeof e==`object`&&t!==void 0?t.exports=r(b()):typeof define==`function`&&define.amd?define([`dayjs`],r):(n=typeof globalThis<`u`?globalThis:n||self).dayjs_locale_zh_cn=r(n.dayjs)})(e,(function(e){"use strict";function t(e){return e&&typeof e==`object`&&`default`in e?e:{default:e}}var n=t(e),r={name:`zh-cn`,weekdays:`星期日_星期一_星期二_星期三_星期四_星期五_星期六`.split(`_`),weekdaysShort:`周日_周一_周二_周三_周四_周五_周六`.split(`_`),weekdaysMin:`日_一_二_三_四_五_六`.split(`_`),months:`一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月`.split(`_`),monthsShort:`1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月`.split(`_`),ordinal:function(e,t){return t===`W`?e+`周`:e+`日`},weekStart:1,yearStart:4,formats:{LT:`HH:mm`,LTS:`HH:mm:ss`,L:`YYYY/MM/DD`,LL:`YYYY年M月D日`,LLL:`YYYY年M月D日Ah点mm分`,LLLL:`YYYY年M月D日ddddAh点mm分`,l:`YYYY/M/D`,ll:`YYYY年M月D日`,lll:`YYYY年M月D日 HH:mm`,llll:`YYYY年M月D日dddd HH:mm`},relativeTime:{future:`%s内`,past:`%s前`,s:`几秒`,m:`1 分钟`,mm:`%d 分钟`,h:`1 小时`,hh:`%d 小时`,d:`1 天`,dd:`%d 天`,M:`1 个月`,MM:`%d 个月`,y:`1 年`,yy:`%d 年`},meridiem:function(e,t){var n=100*e+t;return n<600?`凌晨`:n<900?`早上`:n<1100?`上午`:n<1300?`中午`:n<1800?`下午`:`晚上`}};return n.default.locale(r,null,!0),r}))})),C=u(((e,t)=>{(function(n,r){typeof e==`object`&&t!==void 0?t.exports=r(b()):typeof define==`function`&&define.amd?define([`dayjs`],r):(n=typeof globalThis<`u`?globalThis:n||self).dayjs_locale_zh_tw=r(n.dayjs)})(e,(function(e){"use strict";function t(e){return e&&typeof e==`object`&&`default`in e?e:{default:e}}var n=t(e),r={name:`zh-tw`,weekdays:`星期日_星期一_星期二_星期三_星期四_星期五_星期六`.split(`_`),weekdaysShort:`週日_週一_週二_週三_週四_週五_週六`.split(`_`),weekdaysMin:`日_一_二_三_四_五_六`.split(`_`),months:`一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月`.split(`_`),monthsShort:`1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月`.split(`_`),ordinal:function(e,t){return t===`W`?e+`週`:e+`日`},formats:{LT:`HH:mm`,LTS:`HH:mm:ss`,L:`YYYY/MM/DD`,LL:`YYYY年M月D日`,LLL:`YYYY年M月D日 HH:mm`,LLLL:`YYYY年M月D日dddd HH:mm`,l:`YYYY/M/D`,ll:`YYYY年M月D日`,lll:`YYYY年M月D日 HH:mm`,llll:`YYYY年M月D日dddd HH:mm`},relativeTime:{future:`%s內`,past:`%s前`,s:`幾秒`,m:`1 分鐘`,mm:`%d 分鐘`,h:`1 小時`,hh:`%d 小時`,d:`1 天`,dd:`%d 天`,M:`1 個月`,MM:`%d 個月`,y:`1 年`,yy:`%d 年`},meridiem:function(e,t){var n=100*e+t;return n<600?`凌晨`:n<900?`早上`:n<1100?`上午`:n<1300?`中午`:n<1800?`下午`:`晚上`}};return n.default.locale(r,null,!0),r}))})),w=u(((e,t)=>{(function(n,r){typeof e==`object`&&t!==void 0?t.exports=r():typeof define==`function`&&define.amd?define(r):(n=typeof globalThis<`u`?globalThis:n||self).dayjs_plugin_relativeTime=r()})(e,(function(){"use strict";return function(e,t,n){e||={};var r=t.prototype,i={future:`in %s`,past:`%s ago`,s:`a few seconds`,m:`a minute`,mm:`%d minutes`,h:`an hour`,hh:`%d hours`,d:`a day`,dd:`%d days`,M:`a month`,MM:`%d months`,y:`a year`,yy:`%d years`};function a(e,t,n,i){return r.fromToBase(e,t,n,i)}n.en.relativeTime=i,r.fromToBase=function(t,r,a,o,s){for(var c,l,u,d=a.$locale().relativeTime||i,f=e.thresholds||[{l:`s`,r:44,d:`second`},{l:`m`,r:89},{l:`mm`,r:44,d:`minute`},{l:`h`,r:89},{l:`hh`,r:21,d:`hour`},{l:`d`,r:35},{l:`dd`,r:25,d:`day`},{l:`M`,r:45},{l:`MM`,r:10,d:`month`},{l:`y`,r:17},{l:`yy`,d:`year`}],p=f.length,m=0;m<p;m+=1){var h=f[m];h.d&&(c=o?n(t).diff(a,h.d,!0):a.diff(t,h.d,!0));var g=(e.rounding||Math.round)(Math.abs(c));if(u=c>0,g<=h.r||!h.r){g<=1&&m>0&&(h=f[m-1]);var _=d[h.l];s&&(g=s(``+g)),l=typeof _==`string`?_.replace(`%d`,g):_(g,r,h.l,u);break}}if(r)return l;var v=u?d.future:d.past;return typeof v==`function`?v(l):v.replace(`%s`,l)},r.to=function(e,t){return a(e,t,this,!0)},r.from=function(e,t){return a(e,t,this)};var o=function(e){return e.$u?n.utc():n()};r.toNow=function(e){return this.to(o(this),e)},r.fromNow=function(e){return this.from(o(this),e)}}}))})),T=u(((e,t)=>{(function(n,r){typeof e==`object`&&t!==void 0?t.exports=r():typeof define==`function`&&define.amd?define(r):(n=typeof globalThis<`u`?globalThis:n||self).dayjs_plugin_timezone=r()})(e,(function(){"use strict";var e={year:0,month:1,day:2,hour:3,minute:4,second:5},t={};return function(n,r,i){var a,o=function(e,n,r){r===void 0&&(r={});var i=new Date(e);return function(e,n){n===void 0&&(n={});var r=n.timeZoneName||`short`,i=e+`|`+r,a=t[i];return a||(a=new Intl.DateTimeFormat(`en-US`,{hour12:!1,timeZone:e,year:`numeric`,month:`2-digit`,day:`2-digit`,hour:`2-digit`,minute:`2-digit`,second:`2-digit`,timeZoneName:r}),t[i]=a),a}(n,r).formatToParts(i)},s=function(t,n){for(var r=o(t,n),a=[],s=0;s<r.length;s+=1){var c=r[s],l=c.type,u=c.value,d=e[l];d>=0&&(a[d]=parseInt(u,10))}var f=a[3],p=f===24?0:f,m=a[0]+`-`+a[1]+`-`+a[2]+` `+p+`:`+a[4]+`:`+a[5]+`:000`,h=+t;return(i.utc(m).valueOf()-(h-=h%1e3))/6e4},c=r.prototype;c.tz=function(e,t){e===void 0&&(e=a);var n,r=this.utcOffset(),o=this.toDate(),s=o.toLocaleString(`en-US`,{timeZone:e}),c=Math.round((o-new Date(s))/1e3/60),l=15*-Math.round(o.getTimezoneOffset()/15)-c;if(!Number(l))n=this.utcOffset(0,t);else if(n=i(s,{locale:this.$L}).$set(`millisecond`,this.$ms).utcOffset(l,!0),t){var u=n.utcOffset();n=n.add(r-u,`minute`)}return n.$x.$timezone=e,n},c.offsetName=function(e){var t=this.$x.$timezone||i.tz.guess(),n=o(this.valueOf(),t,{timeZoneName:e}).find((function(e){return e.type.toLowerCase()===`timezonename`}));return n&&n.value};var l=c.startOf;c.startOf=function(e,t){if(!this.$x||!this.$x.$timezone)return l.call(this,e,t);var n=i(this.format(`YYYY-MM-DD HH:mm:ss:SSS`),{locale:this.$L});return l.call(n,e,t).tz(this.$x.$timezone,!0)},i.tz=function(e,t,n){var r=n&&t,o=n||t||a,c=s(+i(),o);if(typeof e!=`string`)return i(e).tz(o);var l=function(e,t,n){var r=e-60*t*1e3,i=s(r,n);if(t===i)return[r,t];var a=s(r-=60*(i-t)*1e3,n);return i===a?[r,i]:[e-60*Math.min(i,a)*1e3,Math.max(i,a)]}(i.utc(e,r).valueOf(),c,o),u=l[0],d=l[1],f=i(u).utcOffset(d);return f.$x.$timezone=o,f},i.tz.guess=function(){return Intl.DateTimeFormat().resolvedOptions().timeZone},i.tz.setDefault=function(e){a=e}}}))})),E=u(((e,t)=>{(function(n,r){typeof e==`object`&&t!==void 0?t.exports=r():typeof define==`function`&&define.amd?define(r):(n=typeof globalThis<`u`?globalThis:n||self).dayjs_plugin_utc=r()})(e,(function(){"use strict";var e=`minute`,t=/[+-]\d\d(?::?\d\d)?/g,n=/([+-]|\d\d)/g;return function(r,i,a){var o=i.prototype;a.utc=function(e){return new i({date:e,utc:!0,args:arguments})},o.utc=function(t){var n=a(this.toDate(),{locale:this.$L,utc:!0});return t?n.add(this.utcOffset(),e):n},o.local=function(){return a(this.toDate(),{locale:this.$L,utc:!1})};var s=o.parse;o.parse=function(e){e.utc&&(this.$u=!0),this.$utils().u(e.$offset)||(this.$offset=e.$offset),s.call(this,e)};var c=o.init;o.init=function(){if(this.$u){var e=this.$d;this.$y=e.getUTCFullYear(),this.$M=e.getUTCMonth(),this.$D=e.getUTCDate(),this.$W=e.getUTCDay(),this.$H=e.getUTCHours(),this.$m=e.getUTCMinutes(),this.$s=e.getUTCSeconds(),this.$ms=e.getUTCMilliseconds()}else c.call(this)};var l=o.utcOffset;o.utcOffset=function(r,i){var a=this.$utils().u;if(a(r))return this.$u?0:a(this.$offset)?l.call(this):this.$offset;if(typeof r==`string`&&(r=function(e){e===void 0&&(e=``);var r=e.match(t);if(!r)return null;var i=(``+r[0]).match(n)||[`-`,0,0],a=i[0],o=60*i[1]+ +i[2];return o===0?0:a===`+`?o:-o}(r),r===null))return this;var o=Math.abs(r)<=16?60*r:r;if(o===0)return this.utc(i);var s=this.clone();if(i)return s.$offset=o,s.$u=!1,s;var c=this.$u?this.toDate().getTimezoneOffset():-1*this.utcOffset();return(s=this.local().add(o+c,e)).$offset=o,s.$x.$localOffset=c,s};var u=o.format;o.format=function(e){var t=e||(this.$u?`YYYY-MM-DDTHH:mm:ss[Z]`:``);return u.call(this,t)},o.valueOf=function(){var e=this.$utils().u(this.$offset)?0:this.$offset+(this.$x.$localOffset||this.$d.getTimezoneOffset());return this.$d.valueOf()-6e4*e},o.isUTC=function(){return!!this.$u},o.toISOString=function(){return this.toDate().toISOString()},o.toString=function(){return this.toDate().toUTCString()};var d=o.toDate;o.toDate=function(e){return e===`s`&&this.$offset?a(this.format(`YYYY-MM-DD HH:mm:ss:SSS`)).toDate():d.call(this)};var f=o.diff;o.diff=function(e,t,n){if(e&&this.$u===e.$u)return f.call(this,e,t,n);var r=this.local(),i=a(e).local();return f.call(r,i,t,n)}}}))})),D=f(b(),1);x(),S(),C();var O=f(w(),1),k=f(T(),1),A=f(E(),1);D.default.extend(k.default),D.default.extend(A.default),D.default.extend(O.default);let j={en:`en`,zh:`zh-cn`,"en-US":`en`,"zh-CN":`zh-cn`,"zh-TW":`zh-tw`};var M=class{dayjs;constructor(){this.dayjs=D.default}format(e,t){return e?this.dayjs(e).format(t||`YYYY-MM-DD HH:mm`):``}toISOString(e){return e?this.dayjs(e).utc(!1).toISOString():``}toDatetimeLocal(e){return e?this.dayjs(e).format(`YYYY-MM-DDTHH:mm`):``}timeAgo(e){if(e)return this.dayjs().to(this.dayjs(e))}setLocale(e){this.dayjs.locale(j[e]||j.en)}};let N=[];for(let e=0;e<256;++e)N.push((e+256).toString(16).slice(1));function P(e,t=0){return(N[e[t+0]]+N[e[t+1]]+N[e[t+2]]+N[e[t+3]]+`-`+N[e[t+4]]+N[e[t+5]]+`-`+N[e[t+6]]+N[e[t+7]]+`-`+N[e[t+8]]+N[e[t+9]]+`-`+N[e[t+10]]+N[e[t+11]]+N[e[t+12]]+N[e[t+13]]+N[e[t+14]]+N[e[t+15]]).toLowerCase()}let F,I=new Uint8Array(16);function L(){if(!F){if(typeof crypto>`u`||!crypto.getRandomValues)throw Error(`crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported`);F=crypto.getRandomValues.bind(crypto)}return F(I)}let R={};function z(e,t,n){let r;if(e)r=V(e.random??e.rng?.()??L(),e.msecs,e.seq,t,n);else{let e=Date.now(),i=L();B(R,e,i),r=V(i,R.msecs,R.seq,t,n)}return t??P(r)}function B(e,t,n){return e.msecs??=-1/0,e.seq??=0,t>e.msecs?(e.seq=n[6]<<23|n[7]<<16|n[8]<<8|n[9],e.msecs=t):(e.seq=e.seq+1|0,e.seq===0&&e.msecs++),e}function V(e,t,n,r,i=0){if(e.length<16)throw Error(`Random bytes length must be >= 16`);if(!r)r=new Uint8Array(16),i=0;else if(i<0||i+16>r.length)throw RangeError(`UUID byte range ${i}:${i+15} is out of buffer bounds`);return t??=Date.now(),n??=e[6]*127<<24|e[7]<<16|e[8]<<8|e[9],r[i++]=t/1099511627776&255,r[i++]=t/4294967296&255,r[i++]=t/16777216&255,r[i++]=t/65536&255,r[i++]=t/256&255,r[i++]=t&255,r[i++]=112|n>>>28&15,r[i++]=n>>>20&255,r[i++]=128|n>>>14&63,r[i++]=n>>>6&255,r[i++]=n<<2&255|e[10]&3,r[i++]=e[11],r[i++]=e[12],r[i++]=e[13],r[i++]=e[14],r[i++]=e[15],r}var H=z,U=class{uuid(){return H()}},W=class{userPermissions;constructor(e){this.userPermissions=e}has(e,t=!0){if(!this.userPermissions)throw Error(`User permissions not set in PermissionUtils`);return this.userPermissions.includes(`*`)||!e.length?!0:this.userPermissions.length?t?e.some(e=>this.userPermissions.includes(e)):e.every(e=>this.userPermissions.includes(e)):!1}getUserPermissions(){return this.userPermissions}setUserPermissions(e){this.userPermissions=e}};let G={date:new M,attachment:new y,permission:new W,id:new U};return e.FormType=g,e.THUMBNAIL_WIDTH_MAP=v,e.definePlugin=h,e.events=m,e.stores=_,e.utils=G,e})({},HaloApiClient,Pinia,Vue);
|
|
1
|
+
var HaloUiShared=(function(e,t,n,r){Object.defineProperty(e,Symbol.toStringTag,{value:`Module`});var i=Object.create,a=Object.defineProperty,o=Object.getOwnPropertyDescriptor,s=Object.getOwnPropertyNames,c=Object.getPrototypeOf,l=Object.prototype.hasOwnProperty,u=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports),d=(e,t,n,r)=>{if(t&&typeof t==`object`||typeof t==`function`)for(var i=s(t),c=0,u=i.length,d;c<u;c++)d=i[c],!l.call(e,d)&&d!==n&&a(e,d,{get:(e=>t[e]).bind(null,d),enumerable:!(r=o(t,d))||r.enumerable});return e},f=(e,t,n)=>(n=e==null?{}:i(c(e)),d(t||!e||!e.__esModule?a(n,`default`,{value:e,enumerable:!0}):n,e));function p(e){return{all:e||=new Map,on:function(t,n){var r=e.get(t);r?r.push(n):e.set(t,[n])},off:function(t,n){var r=e.get(t);r&&(n?r.splice(r.indexOf(n)>>>0,1):e.set(t,[]))},emit:function(t,n){var r=e.get(t);r&&r.slice().map(function(e){e(n)}),(r=e.get(`*`))&&r.slice().map(function(e){e(t,n)})}}}let m=p();function h(e){return e}let g=function(e){return e.TAG=`Tag`,e.CATEGORY=`Category`,e.POST=`Post`,e.SINGLE_PAGE=`SinglePage`,e}({}),_={currentUser:(0,n.defineStore)(`currentUser`,()=>{let e=(0,r.ref)(),n=(0,r.ref)(!1);async function i(){let{data:r}=await t.consoleApiClient.user.getCurrentUserDetail();e.value=r,n.value=r.user.metadata.name===`anonymousUser`}return{currentUser:e,isAnonymous:n,fetchCurrentUser:i}}),globalInfo:(0,n.defineStore)(`global-info`,()=>{let e=(0,r.ref)();async function n(){let{data:n}=await t.axiosInstance.get(`/actuator/globalinfo`,{withCredentials:!0});e.value=n}return{globalInfo:e,fetchGlobalInfo:n}})},v={XL:1600,L:1200,M:800,S:400};var y=class{getThumbnailUrl(e,t){let{origin:n}=location,r=v[t];return!r||e.startsWith(`data:`)?e:e.startsWith(n)||e.startsWith(`/`)?`${e}?width=${r}`:`/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=${encodeURIComponent(e)}&width=${r}`}getUrl(e){if(typeof e==`string`)return e;if(`spec`in e)return e.status?.permalink;if(`url`in e)return e.url;throw Error(`Invalid attachment`)}convertToSimple(e){if(typeof e==`string`)return{url:e};if(`spec`in e)return{url:e.status?.permalink||``,alt:e.spec.displayName,mediaType:e.spec.mediaType};if(`url`in e)return e;throw Error(`Invalid attachment`)}},b=u(((e,t)=>{(function(n,r){typeof e==`object`&&t!==void 0?t.exports=r():typeof define==`function`&&define.amd?define(r):(n=typeof globalThis<`u`?globalThis:n||self).dayjs=r()})(e,(function(){"use strict";var e=1e3,t=6e4,n=36e5,r=`millisecond`,i=`second`,a=`minute`,o=`hour`,s=`day`,c=`week`,l=`month`,u=`quarter`,d=`year`,f=`date`,p=`Invalid Date`,m=/^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/,h=/\[([^\]]+)]|Y{1,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g,g={name:`en`,weekdays:`Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday`.split(`_`),months:`January_February_March_April_May_June_July_August_September_October_November_December`.split(`_`),ordinal:function(e){var t=[`th`,`st`,`nd`,`rd`],n=e%100;return`[`+e+(t[(n-20)%10]||t[n]||t[0])+`]`}},_=function(e,t,n){var r=String(e);return!r||r.length>=t?e:``+Array(t+1-r.length).join(n)+e},v={s:_,z:function(e){var t=-e.utcOffset(),n=Math.abs(t),r=Math.floor(n/60),i=n%60;return(t<=0?`+`:`-`)+_(r,2,`0`)+`:`+_(i,2,`0`)},m:function e(t,n){if(t.date()<n.date())return-e(n,t);var r=12*(n.year()-t.year())+(n.month()-t.month()),i=t.clone().add(r,l),a=n-i<0,o=t.clone().add(r+(a?-1:1),l);return+(-(r+(n-i)/(a?i-o:o-i))||0)},a:function(e){return e<0?Math.ceil(e)||0:Math.floor(e)},p:function(e){return{M:l,y:d,w:c,d:s,D:f,h:o,m:a,s:i,ms:r,Q:u}[e]||String(e||``).toLowerCase().replace(/s$/,``)},u:function(e){return e===void 0}},y=`en`,b={};b[y]=g;var x=`$isDayjsObject`,S=function(e){return e instanceof E||!(!e||!e[x])},C=function e(t,n,r){var i;if(!t)return y;if(typeof t==`string`){var a=t.toLowerCase();b[a]&&(i=a),n&&(b[a]=n,i=a);var o=t.split(`-`);if(!i&&o.length>1)return e(o[0])}else{var s=t.name;b[s]=t,i=s}return!r&&i&&(y=i),i||!r&&y},w=function(e,t){if(S(e))return e.clone();var n=typeof t==`object`?t:{};return n.date=e,n.args=arguments,new E(n)},T=v;T.l=C,T.i=S,T.w=function(e,t){return w(e,{locale:t.$L,utc:t.$u,x:t.$x,$offset:t.$offset})};var E=function(){function g(e){this.$L=C(e.locale,null,!0),this.parse(e),this.$x=this.$x||e.x||{},this[x]=!0}var _=g.prototype;return _.parse=function(e){this.$d=function(e){var t=e.date,n=e.utc;if(t===null)return new Date(NaN);if(T.u(t))return new Date;if(t instanceof Date)return new Date(t);if(typeof t==`string`&&!/Z$/i.test(t)){var r=t.match(m);if(r){var i=r[2]-1||0,a=(r[7]||`0`).substring(0,3);return n?new Date(Date.UTC(r[1],i,r[3]||1,r[4]||0,r[5]||0,r[6]||0,a)):new Date(r[1],i,r[3]||1,r[4]||0,r[5]||0,r[6]||0,a)}}return new Date(t)}(e),this.init()},_.init=function(){var e=this.$d;this.$y=e.getFullYear(),this.$M=e.getMonth(),this.$D=e.getDate(),this.$W=e.getDay(),this.$H=e.getHours(),this.$m=e.getMinutes(),this.$s=e.getSeconds(),this.$ms=e.getMilliseconds()},_.$utils=function(){return T},_.isValid=function(){return this.$d.toString()!==p},_.isSame=function(e,t){var n=w(e);return this.startOf(t)<=n&&n<=this.endOf(t)},_.isAfter=function(e,t){return w(e)<this.startOf(t)},_.isBefore=function(e,t){return this.endOf(t)<w(e)},_.$g=function(e,t,n){return T.u(e)?this[t]:this.set(n,e)},_.unix=function(){return Math.floor(this.valueOf()/1e3)},_.valueOf=function(){return this.$d.getTime()},_.startOf=function(e,t){var n=this,r=!!T.u(t)||t,u=T.p(e),p=function(e,t){var i=T.w(n.$u?Date.UTC(n.$y,t,e):new Date(n.$y,t,e),n);return r?i:i.endOf(s)},m=function(e,t){return T.w(n.toDate()[e].apply(n.toDate(`s`),(r?[0,0,0,0]:[23,59,59,999]).slice(t)),n)},h=this.$W,g=this.$M,_=this.$D,v=`set`+(this.$u?`UTC`:``);switch(u){case d:return r?p(1,0):p(31,11);case l:return r?p(1,g):p(0,g+1);case c:var y=this.$locale().weekStart||0,b=(h<y?h+7:h)-y;return p(r?_-b:_+(6-b),g);case s:case f:return m(v+`Hours`,0);case o:return m(v+`Minutes`,1);case a:return m(v+`Seconds`,2);case i:return m(v+`Milliseconds`,3);default:return this.clone()}},_.endOf=function(e){return this.startOf(e,!1)},_.$set=function(e,t){var n,c=T.p(e),u=`set`+(this.$u?`UTC`:``),p=(n={},n[s]=u+`Date`,n[f]=u+`Date`,n[l]=u+`Month`,n[d]=u+`FullYear`,n[o]=u+`Hours`,n[a]=u+`Minutes`,n[i]=u+`Seconds`,n[r]=u+`Milliseconds`,n)[c],m=c===s?this.$D+(t-this.$W):t;if(c===l||c===d){var h=this.clone().set(f,1);h.$d[p](m),h.init(),this.$d=h.set(f,Math.min(this.$D,h.daysInMonth())).$d}else p&&this.$d[p](m);return this.init(),this},_.set=function(e,t){return this.clone().$set(e,t)},_.get=function(e){return this[T.p(e)]()},_.add=function(r,u){var f,p=this;r=Number(r);var m=T.p(u),h=function(e){var t=w(p);return T.w(t.date(t.date()+Math.round(e*r)),p)};if(m===l)return this.set(l,this.$M+r);if(m===d)return this.set(d,this.$y+r);if(m===s)return h(1);if(m===c)return h(7);var g=(f={},f[a]=t,f[o]=n,f[i]=e,f)[m]||1,_=this.$d.getTime()+r*g;return T.w(_,this)},_.subtract=function(e,t){return this.add(-1*e,t)},_.format=function(e){var t=this,n=this.$locale();if(!this.isValid())return n.invalidDate||p;var r=e||`YYYY-MM-DDTHH:mm:ssZ`,i=T.z(this),a=this.$H,o=this.$m,s=this.$M,c=n.weekdays,l=n.months,u=n.meridiem,d=function(e,n,i,a){return e&&(e[n]||e(t,r))||i[n].slice(0,a)},f=function(e){return T.s(a%12||12,e,`0`)},m=u||function(e,t,n){var r=e<12?`AM`:`PM`;return n?r.toLowerCase():r};return r.replace(h,(function(e,r){return r||function(e){switch(e){case`YY`:return String(t.$y).slice(-2);case`YYYY`:return T.s(t.$y,4,`0`);case`M`:return s+1;case`MM`:return T.s(s+1,2,`0`);case`MMM`:return d(n.monthsShort,s,l,3);case`MMMM`:return d(l,s);case`D`:return t.$D;case`DD`:return T.s(t.$D,2,`0`);case`d`:return String(t.$W);case`dd`:return d(n.weekdaysMin,t.$W,c,2);case`ddd`:return d(n.weekdaysShort,t.$W,c,3);case`dddd`:return c[t.$W];case`H`:return String(a);case`HH`:return T.s(a,2,`0`);case`h`:return f(1);case`hh`:return f(2);case`a`:return m(a,o,!0);case`A`:return m(a,o,!1);case`m`:return String(o);case`mm`:return T.s(o,2,`0`);case`s`:return String(t.$s);case`ss`:return T.s(t.$s,2,`0`);case`SSS`:return T.s(t.$ms,3,`0`);case`Z`:return i}return null}(e)||i.replace(`:`,``)}))},_.utcOffset=function(){return 15*-Math.round(this.$d.getTimezoneOffset()/15)},_.diff=function(r,f,p){var m,h=this,g=T.p(f),_=w(r),v=(_.utcOffset()-this.utcOffset())*t,y=this-_,b=function(){return T.m(h,_)};switch(g){case d:m=b()/12;break;case l:m=b();break;case u:m=b()/3;break;case c:m=(y-v)/6048e5;break;case s:m=(y-v)/864e5;break;case o:m=y/n;break;case a:m=y/t;break;case i:m=y/e;break;default:m=y}return p?m:T.a(m)},_.daysInMonth=function(){return this.endOf(l).$D},_.$locale=function(){return b[this.$L]},_.locale=function(e,t){if(!e)return this.$L;var n=this.clone(),r=C(e,t,!0);return r&&(n.$L=r),n},_.clone=function(){return T.w(this.$d,this)},_.toDate=function(){return new Date(this.valueOf())},_.toJSON=function(){return this.isValid()?this.toISOString():null},_.toISOString=function(){return this.$d.toISOString()},_.toString=function(){return this.$d.toUTCString()},g}(),D=E.prototype;return w.prototype=D,[[`$ms`,r],[`$s`,i],[`$m`,a],[`$H`,o],[`$W`,s],[`$M`,l],[`$y`,d],[`$D`,f]].forEach((function(e){D[e[1]]=function(t){return this.$g(t,e[0],e[1])}})),w.extend=function(e,t){return e.$i||=(e(t,E,w),!0),w},w.locale=C,w.isDayjs=S,w.unix=function(e){return w(1e3*e)},w.en=b[y],w.Ls=b,w.p={},w}))})),x=u(((e,t)=>{(function(n,r){typeof e==`object`&&t!==void 0?t.exports=r():typeof define==`function`&&define.amd?define(r):(n=typeof globalThis<`u`?globalThis:n||self).dayjs_locale_en=r()})(e,(function(){"use strict";return{name:`en`,weekdays:`Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday`.split(`_`),months:`January_February_March_April_May_June_July_August_September_October_November_December`.split(`_`),ordinal:function(e){var t=[`th`,`st`,`nd`,`rd`],n=e%100;return`[`+e+(t[(n-20)%10]||t[n]||t[0])+`]`}}}))})),S=u(((e,t)=>{(function(n,r){typeof e==`object`&&t!==void 0?t.exports=r(b()):typeof define==`function`&&define.amd?define([`dayjs`],r):(n=typeof globalThis<`u`?globalThis:n||self).dayjs_locale_zh_cn=r(n.dayjs)})(e,(function(e){"use strict";function t(e){return e&&typeof e==`object`&&`default`in e?e:{default:e}}var n=t(e),r={name:`zh-cn`,weekdays:`星期日_星期一_星期二_星期三_星期四_星期五_星期六`.split(`_`),weekdaysShort:`周日_周一_周二_周三_周四_周五_周六`.split(`_`),weekdaysMin:`日_一_二_三_四_五_六`.split(`_`),months:`一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月`.split(`_`),monthsShort:`1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月`.split(`_`),ordinal:function(e,t){return t===`W`?e+`周`:e+`日`},weekStart:1,yearStart:4,formats:{LT:`HH:mm`,LTS:`HH:mm:ss`,L:`YYYY/MM/DD`,LL:`YYYY年M月D日`,LLL:`YYYY年M月D日Ah点mm分`,LLLL:`YYYY年M月D日ddddAh点mm分`,l:`YYYY/M/D`,ll:`YYYY年M月D日`,lll:`YYYY年M月D日 HH:mm`,llll:`YYYY年M月D日dddd HH:mm`},relativeTime:{future:`%s内`,past:`%s前`,s:`几秒`,m:`1 分钟`,mm:`%d 分钟`,h:`1 小时`,hh:`%d 小时`,d:`1 天`,dd:`%d 天`,M:`1 个月`,MM:`%d 个月`,y:`1 年`,yy:`%d 年`},meridiem:function(e,t){var n=100*e+t;return n<600?`凌晨`:n<900?`早上`:n<1100?`上午`:n<1300?`中午`:n<1800?`下午`:`晚上`}};return n.default.locale(r,null,!0),r}))})),C=u(((e,t)=>{(function(n,r){typeof e==`object`&&t!==void 0?t.exports=r(b()):typeof define==`function`&&define.amd?define([`dayjs`],r):(n=typeof globalThis<`u`?globalThis:n||self).dayjs_locale_zh_tw=r(n.dayjs)})(e,(function(e){"use strict";function t(e){return e&&typeof e==`object`&&`default`in e?e:{default:e}}var n=t(e),r={name:`zh-tw`,weekdays:`星期日_星期一_星期二_星期三_星期四_星期五_星期六`.split(`_`),weekdaysShort:`週日_週一_週二_週三_週四_週五_週六`.split(`_`),weekdaysMin:`日_一_二_三_四_五_六`.split(`_`),months:`一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月`.split(`_`),monthsShort:`1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月`.split(`_`),ordinal:function(e,t){return t===`W`?e+`週`:e+`日`},formats:{LT:`HH:mm`,LTS:`HH:mm:ss`,L:`YYYY/MM/DD`,LL:`YYYY年M月D日`,LLL:`YYYY年M月D日 HH:mm`,LLLL:`YYYY年M月D日dddd HH:mm`,l:`YYYY/M/D`,ll:`YYYY年M月D日`,lll:`YYYY年M月D日 HH:mm`,llll:`YYYY年M月D日dddd HH:mm`},relativeTime:{future:`%s內`,past:`%s前`,s:`幾秒`,m:`1 分鐘`,mm:`%d 分鐘`,h:`1 小時`,hh:`%d 小時`,d:`1 天`,dd:`%d 天`,M:`1 個月`,MM:`%d 個月`,y:`1 年`,yy:`%d 年`},meridiem:function(e,t){var n=100*e+t;return n<600?`凌晨`:n<900?`早上`:n<1100?`上午`:n<1300?`中午`:n<1800?`下午`:`晚上`}};return n.default.locale(r,null,!0),r}))})),w=u(((e,t)=>{(function(n,r){typeof e==`object`&&t!==void 0?t.exports=r():typeof define==`function`&&define.amd?define(r):(n=typeof globalThis<`u`?globalThis:n||self).dayjs_plugin_relativeTime=r()})(e,(function(){"use strict";return function(e,t,n){e||={};var r=t.prototype,i={future:`in %s`,past:`%s ago`,s:`a few seconds`,m:`a minute`,mm:`%d minutes`,h:`an hour`,hh:`%d hours`,d:`a day`,dd:`%d days`,M:`a month`,MM:`%d months`,y:`a year`,yy:`%d years`};function a(e,t,n,i){return r.fromToBase(e,t,n,i)}n.en.relativeTime=i,r.fromToBase=function(t,r,a,o,s){for(var c,l,u,d=a.$locale().relativeTime||i,f=e.thresholds||[{l:`s`,r:44,d:`second`},{l:`m`,r:89},{l:`mm`,r:44,d:`minute`},{l:`h`,r:89},{l:`hh`,r:21,d:`hour`},{l:`d`,r:35},{l:`dd`,r:25,d:`day`},{l:`M`,r:45},{l:`MM`,r:10,d:`month`},{l:`y`,r:17},{l:`yy`,d:`year`}],p=f.length,m=0;m<p;m+=1){var h=f[m];h.d&&(c=o?n(t).diff(a,h.d,!0):a.diff(t,h.d,!0));var g=(e.rounding||Math.round)(Math.abs(c));if(u=c>0,g<=h.r||!h.r){g<=1&&m>0&&(h=f[m-1]);var _=d[h.l];s&&(g=s(``+g)),l=typeof _==`string`?_.replace(`%d`,g):_(g,r,h.l,u);break}}if(r)return l;var v=u?d.future:d.past;return typeof v==`function`?v(l):v.replace(`%s`,l)},r.to=function(e,t){return a(e,t,this,!0)},r.from=function(e,t){return a(e,t,this)};var o=function(e){return e.$u?n.utc():n()};r.toNow=function(e){return this.to(o(this),e)},r.fromNow=function(e){return this.from(o(this),e)}}}))})),T=u(((e,t)=>{(function(n,r){typeof e==`object`&&t!==void 0?t.exports=r():typeof define==`function`&&define.amd?define(r):(n=typeof globalThis<`u`?globalThis:n||self).dayjs_plugin_timezone=r()})(e,(function(){"use strict";var e={year:0,month:1,day:2,hour:3,minute:4,second:5},t={};return function(n,r,i){var a,o=function(e,n,r){r===void 0&&(r={});var i=new Date(e);return function(e,n){n===void 0&&(n={});var r=n.timeZoneName||`short`,i=e+`|`+r,a=t[i];return a||(a=new Intl.DateTimeFormat(`en-US`,{hour12:!1,timeZone:e,year:`numeric`,month:`2-digit`,day:`2-digit`,hour:`2-digit`,minute:`2-digit`,second:`2-digit`,timeZoneName:r}),t[i]=a),a}(n,r).formatToParts(i)},s=function(t,n){for(var r=o(t,n),a=[],s=0;s<r.length;s+=1){var c=r[s],l=c.type,u=c.value,d=e[l];d>=0&&(a[d]=parseInt(u,10))}var f=a[3],p=f===24?0:f,m=a[0]+`-`+a[1]+`-`+a[2]+` `+p+`:`+a[4]+`:`+a[5]+`:000`,h=+t;return(i.utc(m).valueOf()-(h-=h%1e3))/6e4},c=r.prototype;c.tz=function(e,t){e===void 0&&(e=a);var n,r=this.utcOffset(),o=this.toDate(),s=o.toLocaleString(`en-US`,{timeZone:e}),c=Math.round((o-new Date(s))/1e3/60),l=15*-Math.round(o.getTimezoneOffset()/15)-c;if(!Number(l))n=this.utcOffset(0,t);else if(n=i(s,{locale:this.$L}).$set(`millisecond`,this.$ms).utcOffset(l,!0),t){var u=n.utcOffset();n=n.add(r-u,`minute`)}return n.$x.$timezone=e,n},c.offsetName=function(e){var t=this.$x.$timezone||i.tz.guess(),n=o(this.valueOf(),t,{timeZoneName:e}).find((function(e){return e.type.toLowerCase()===`timezonename`}));return n&&n.value};var l=c.startOf;c.startOf=function(e,t){if(!this.$x||!this.$x.$timezone)return l.call(this,e,t);var n=i(this.format(`YYYY-MM-DD HH:mm:ss:SSS`),{locale:this.$L});return l.call(n,e,t).tz(this.$x.$timezone,!0)},i.tz=function(e,t,n){var r=n&&t,o=n||t||a,c=s(+i(),o);if(typeof e!=`string`)return i(e).tz(o);var l=function(e,t,n){var r=e-60*t*1e3,i=s(r,n);if(t===i)return[r,t];var a=s(r-=60*(i-t)*1e3,n);return i===a?[r,i]:[e-60*Math.min(i,a)*1e3,Math.max(i,a)]}(i.utc(e,r).valueOf(),c,o),u=l[0],d=l[1],f=i(u).utcOffset(d);return f.$x.$timezone=o,f},i.tz.guess=function(){return Intl.DateTimeFormat().resolvedOptions().timeZone},i.tz.setDefault=function(e){a=e}}}))})),E=u(((e,t)=>{(function(n,r){typeof e==`object`&&t!==void 0?t.exports=r():typeof define==`function`&&define.amd?define(r):(n=typeof globalThis<`u`?globalThis:n||self).dayjs_plugin_utc=r()})(e,(function(){"use strict";var e=`minute`,t=/[+-]\d\d(?::?\d\d)?/g,n=/([+-]|\d\d)/g;return function(r,i,a){var o=i.prototype;a.utc=function(e){return new i({date:e,utc:!0,args:arguments})},o.utc=function(t){var n=a(this.toDate(),{locale:this.$L,utc:!0});return t?n.add(this.utcOffset(),e):n},o.local=function(){return a(this.toDate(),{locale:this.$L,utc:!1})};var s=o.parse;o.parse=function(e){e.utc&&(this.$u=!0),this.$utils().u(e.$offset)||(this.$offset=e.$offset),s.call(this,e)};var c=o.init;o.init=function(){if(this.$u){var e=this.$d;this.$y=e.getUTCFullYear(),this.$M=e.getUTCMonth(),this.$D=e.getUTCDate(),this.$W=e.getUTCDay(),this.$H=e.getUTCHours(),this.$m=e.getUTCMinutes(),this.$s=e.getUTCSeconds(),this.$ms=e.getUTCMilliseconds()}else c.call(this)};var l=o.utcOffset;o.utcOffset=function(r,i){var a=this.$utils().u;if(a(r))return this.$u?0:a(this.$offset)?l.call(this):this.$offset;if(typeof r==`string`&&(r=function(e){e===void 0&&(e=``);var r=e.match(t);if(!r)return null;var i=(``+r[0]).match(n)||[`-`,0,0],a=i[0],o=60*i[1]+ +i[2];return o===0?0:a===`+`?o:-o}(r),r===null))return this;var o=Math.abs(r)<=16?60*r:r;if(o===0)return this.utc(i);var s=this.clone();if(i)return s.$offset=o,s.$u=!1,s;var c=this.$u?this.toDate().getTimezoneOffset():-1*this.utcOffset();return(s=this.local().add(o+c,e)).$offset=o,s.$x.$localOffset=c,s};var u=o.format;o.format=function(e){var t=e||(this.$u?`YYYY-MM-DDTHH:mm:ss[Z]`:``);return u.call(this,t)},o.valueOf=function(){var e=this.$utils().u(this.$offset)?0:this.$offset+(this.$x.$localOffset||this.$d.getTimezoneOffset());return this.$d.valueOf()-6e4*e},o.isUTC=function(){return!!this.$u},o.toISOString=function(){return this.toDate().toISOString()},o.toString=function(){return this.toDate().toUTCString()};var d=o.toDate;o.toDate=function(e){return e===`s`&&this.$offset?a(this.format(`YYYY-MM-DD HH:mm:ss:SSS`)).toDate():d.call(this)};var f=o.diff;o.diff=function(e,t,n){if(e&&this.$u===e.$u)return f.call(this,e,t,n);var r=this.local(),i=a(e).local();return f.call(r,i,t,n)}}}))})),D=f(b(),1);x(),S(),C();var O=f(w(),1),k=f(T(),1),A=f(E(),1);D.default.extend(k.default),D.default.extend(A.default),D.default.extend(O.default);let j={en:`en`,zh:`zh-cn`,"en-US":`en`,"zh-CN":`zh-cn`,"zh-TW":`zh-tw`};var M=class{dayjs;constructor(){this.dayjs=D.default}format(e,t){return e?this.dayjs(e).format(t||`YYYY-MM-DD HH:mm`):``}toISOString(e){return e?this.dayjs(e).utc(!1).toISOString():``}toDatetimeLocal(e){return e?this.dayjs(e).format(`YYYY-MM-DDTHH:mm`):``}timeAgo(e){if(e)return this.dayjs().to(this.dayjs(e))}setLocale(e){this.dayjs.locale(j[e]||j.en)}};let N=[];for(let e=0;e<256;++e)N.push((e+256).toString(16).slice(1));function P(e,t=0){return(N[e[t+0]]+N[e[t+1]]+N[e[t+2]]+N[e[t+3]]+`-`+N[e[t+4]]+N[e[t+5]]+`-`+N[e[t+6]]+N[e[t+7]]+`-`+N[e[t+8]]+N[e[t+9]]+`-`+N[e[t+10]]+N[e[t+11]]+N[e[t+12]]+N[e[t+13]]+N[e[t+14]]+N[e[t+15]]).toLowerCase()}let F,I=new Uint8Array(16);function L(){if(!F){if(typeof crypto>`u`||!crypto.getRandomValues)throw Error(`crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported`);F=crypto.getRandomValues.bind(crypto)}return F(I)}let R={};function z(e,t,n){let r;if(e)r=V(e.random??e.rng?.()??L(),e.msecs,e.seq,t,n);else{let e=Date.now(),i=L();B(R,e,i),r=V(i,R.msecs,R.seq,t,n)}return t??P(r)}function B(e,t,n){return e.msecs??=-1/0,e.seq??=0,t>e.msecs?(e.seq=n[6]<<23|n[7]<<16|n[8]<<8|n[9],e.msecs=t):(e.seq=e.seq+1|0,e.seq===0&&e.msecs++),e}function V(e,t,n,r,i=0){if(e.length<16)throw Error(`Random bytes length must be >= 16`);if(!r)r=new Uint8Array(16),i=0;else if(i<0||i+16>r.length)throw RangeError(`UUID byte range ${i}:${i+15} is out of buffer bounds`);return t??=Date.now(),n??=e[6]*127<<24|e[7]<<16|e[8]<<8|e[9],r[i++]=t/1099511627776&255,r[i++]=t/4294967296&255,r[i++]=t/16777216&255,r[i++]=t/65536&255,r[i++]=t/256&255,r[i++]=t&255,r[i++]=112|n>>>28&15,r[i++]=n>>>20&255,r[i++]=128|n>>>14&63,r[i++]=n>>>6&255,r[i++]=n<<2&255|e[10]&3,r[i++]=e[11],r[i++]=e[12],r[i++]=e[13],r[i++]=e[14],r[i++]=e[15],r}var H=class{uuid(){return z()}},U=class{userPermissions;constructor(e){this.userPermissions=e}has(e,t=!0){if(!this.userPermissions)throw Error(`User permissions not set in PermissionUtils`);return this.userPermissions.includes(`*`)||!e.length?!0:this.userPermissions.length?t?e.some(e=>this.userPermissions.includes(e)):e.every(e=>this.userPermissions.includes(e)):!1}getUserPermissions(){return this.userPermissions}setUserPermissions(e){this.userPermissions=e}};let W={date:new M,attachment:new y,permission:new U,id:new H};return e.FormType=g,e.THUMBNAIL_WIDTH_MAP=v,e.definePlugin=h,e.events=m,e.stores=_,e.utils=W,e})({},HaloApiClient,Pinia,Vue);
|
package/dist/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
import{axiosInstance as e,consoleApiClient as t}from"@halo-dev/api-client";import{defineStore as n}from"pinia";import{ref as r}from"vue";var i=Object.create,a=Object.defineProperty,o=Object.getOwnPropertyDescriptor,s=Object.getOwnPropertyNames,c=Object.getPrototypeOf,l=Object.prototype.hasOwnProperty,u=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports),d=(e,t,n,r)=>{if(t&&typeof t==`object`||typeof t==`function`)for(var i=s(t),c=0,u=i.length,d;c<u;c++)d=i[c],!l.call(e,d)&&d!==n&&a(e,d,{get:(e=>t[e]).bind(null,d),enumerable:!(r=o(t,d))||r.enumerable});return e},f=(e,t,n)=>(n=e==null?{}:i(c(e)),d(t||!e||!e.__esModule?a(n,`default`,{value:e,enumerable:!0}):n,e));function p(e){return{all:e||=new Map,on:function(t,n){var r=e.get(t);r?r.push(n):e.set(t,[n])},off:function(t,n){var r=e.get(t);r&&(n?r.splice(r.indexOf(n)>>>0,1):e.set(t,[]))},emit:function(t,n){var r=e.get(t);r&&r.slice().map(function(e){e(n)}),(r=e.get(`*`))&&r.slice().map(function(e){e(t,n)})}}}const m=p();function h(e){return e}let g=function(e){return e.TAG=`Tag`,e.CATEGORY=`Category`,e.POST=`Post`,e.SINGLE_PAGE=`SinglePage`,e}({});const _={currentUser:n(`currentUser`,()=>{let e=r(),n=r(!1);async function i(){let{data:r}=await t.user.getCurrentUserDetail();e.value=r,n.value=r.user.metadata.name===`anonymousUser`}return{currentUser:e,isAnonymous:n,fetchCurrentUser:i}}),globalInfo:n(`global-info`,()=>{let t=r();async function n(){let{data:n}=await e.get(`/actuator/globalinfo`,{withCredentials:!0});t.value=n}return{globalInfo:t,fetchGlobalInfo:n}})},v={XL:1600,L:1200,M:800,S:400};var y=class{getThumbnailUrl(e,t){let{origin:n}=location,r=v[t];return!r||e.startsWith(`data:`)?e:e.startsWith(n)||e.startsWith(`/`)?`${e}?width=${r}`:`/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=${encodeURIComponent(e)}&width=${r}`}getUrl(e){if(typeof e==`string`)return e;if(`spec`in e)return e.status?.permalink;if(`url`in e)return e.url;throw Error(`Invalid attachment`)}convertToSimple(e){if(typeof e==`string`)return{url:e};if(`spec`in e)return{url:e.status?.permalink||``,alt:e.spec.displayName,mediaType:e.spec.mediaType};if(`url`in e)return e;throw Error(`Invalid attachment`)}},b=u(((e,t)=>{(function(n,r){typeof e==`object`&&t!==void 0?t.exports=r():typeof define==`function`&&define.amd?define(r):(n=typeof globalThis<`u`?globalThis:n||self).dayjs=r()})(e,(function(){var e=1e3,t=6e4,n=36e5,r=`millisecond`,i=`second`,a=`minute`,o=`hour`,s=`day`,c=`week`,l=`month`,u=`quarter`,d=`year`,f=`date`,p=`Invalid Date`,m=/^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/,h=/\[([^\]]+)]|Y{1,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g,g={name:`en`,weekdays:`Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday`.split(`_`),months:`January_February_March_April_May_June_July_August_September_October_November_December`.split(`_`),ordinal:function(e){var t=[`th`,`st`,`nd`,`rd`],n=e%100;return`[`+e+(t[(n-20)%10]||t[n]||t[0])+`]`}},_=function(e,t,n){var r=String(e);return!r||r.length>=t?e:``+Array(t+1-r.length).join(n)+e},v={s:_,z:function(e){var t=-e.utcOffset(),n=Math.abs(t),r=Math.floor(n/60),i=n%60;return(t<=0?`+`:`-`)+_(r,2,`0`)+`:`+_(i,2,`0`)},m:function e(t,n){if(t.date()<n.date())return-e(n,t);var r=12*(n.year()-t.year())+(n.month()-t.month()),i=t.clone().add(r,l),a=n-i<0,o=t.clone().add(r+(a?-1:1),l);return+(-(r+(n-i)/(a?i-o:o-i))||0)},a:function(e){return e<0?Math.ceil(e)||0:Math.floor(e)},p:function(e){return{M:l,y:d,w:c,d:s,D:f,h:o,m:a,s:i,ms:r,Q:u}[e]||String(e||``).toLowerCase().replace(/s$/,``)},u:function(e){return e===void 0}},y=`en`,b={};b[y]=g;var x=`$isDayjsObject`,S=function(e){return e instanceof E||!(!e||!e[x])},C=function e(t,n,r){var i;if(!t)return y;if(typeof t==`string`){var a=t.toLowerCase();b[a]&&(i=a),n&&(b[a]=n,i=a);var o=t.split(`-`);if(!i&&o.length>1)return e(o[0])}else{var s=t.name;b[s]=t,i=s}return!r&&i&&(y=i),i||!r&&y},w=function(e,t){if(S(e))return e.clone();var n=typeof t==`object`?t:{};return n.date=e,n.args=arguments,new E(n)},T=v;T.l=C,T.i=S,T.w=function(e,t){return w(e,{locale:t.$L,utc:t.$u,x:t.$x,$offset:t.$offset})};var E=function(){function g(e){this.$L=C(e.locale,null,!0),this.parse(e),this.$x=this.$x||e.x||{},this[x]=!0}var _=g.prototype;return _.parse=function(e){this.$d=function(e){var t=e.date,n=e.utc;if(t===null)return new Date(NaN);if(T.u(t))return new Date;if(t instanceof Date)return new Date(t);if(typeof t==`string`&&!/Z$/i.test(t)){var r=t.match(m);if(r){var i=r[2]-1||0,a=(r[7]||`0`).substring(0,3);return n?new Date(Date.UTC(r[1],i,r[3]||1,r[4]||0,r[5]||0,r[6]||0,a)):new Date(r[1],i,r[3]||1,r[4]||0,r[5]||0,r[6]||0,a)}}return new Date(t)}(e),this.init()},_.init=function(){var e=this.$d;this.$y=e.getFullYear(),this.$M=e.getMonth(),this.$D=e.getDate(),this.$W=e.getDay(),this.$H=e.getHours(),this.$m=e.getMinutes(),this.$s=e.getSeconds(),this.$ms=e.getMilliseconds()},_.$utils=function(){return T},_.isValid=function(){return this.$d.toString()!==p},_.isSame=function(e,t){var n=w(e);return this.startOf(t)<=n&&n<=this.endOf(t)},_.isAfter=function(e,t){return w(e)<this.startOf(t)},_.isBefore=function(e,t){return this.endOf(t)<w(e)},_.$g=function(e,t,n){return T.u(e)?this[t]:this.set(n,e)},_.unix=function(){return Math.floor(this.valueOf()/1e3)},_.valueOf=function(){return this.$d.getTime()},_.startOf=function(e,t){var n=this,r=!!T.u(t)||t,u=T.p(e),p=function(e,t){var i=T.w(n.$u?Date.UTC(n.$y,t,e):new Date(n.$y,t,e),n);return r?i:i.endOf(s)},m=function(e,t){return T.w(n.toDate()[e].apply(n.toDate(`s`),(r?[0,0,0,0]:[23,59,59,999]).slice(t)),n)},h=this.$W,g=this.$M,_=this.$D,v=`set`+(this.$u?`UTC`:``);switch(u){case d:return r?p(1,0):p(31,11);case l:return r?p(1,g):p(0,g+1);case c:var y=this.$locale().weekStart||0,b=(h<y?h+7:h)-y;return p(r?_-b:_+(6-b),g);case s:case f:return m(v+`Hours`,0);case o:return m(v+`Minutes`,1);case a:return m(v+`Seconds`,2);case i:return m(v+`Milliseconds`,3);default:return this.clone()}},_.endOf=function(e){return this.startOf(e,!1)},_.$set=function(e,t){var n,c=T.p(e),u=`set`+(this.$u?`UTC`:``),p=(n={},n[s]=u+`Date`,n[f]=u+`Date`,n[l]=u+`Month`,n[d]=u+`FullYear`,n[o]=u+`Hours`,n[a]=u+`Minutes`,n[i]=u+`Seconds`,n[r]=u+`Milliseconds`,n)[c],m=c===s?this.$D+(t-this.$W):t;if(c===l||c===d){var h=this.clone().set(f,1);h.$d[p](m),h.init(),this.$d=h.set(f,Math.min(this.$D,h.daysInMonth())).$d}else p&&this.$d[p](m);return this.init(),this},_.set=function(e,t){return this.clone().$set(e,t)},_.get=function(e){return this[T.p(e)]()},_.add=function(r,u){var f,p=this;r=Number(r);var m=T.p(u),h=function(e){var t=w(p);return T.w(t.date(t.date()+Math.round(e*r)),p)};if(m===l)return this.set(l,this.$M+r);if(m===d)return this.set(d,this.$y+r);if(m===s)return h(1);if(m===c)return h(7);var g=(f={},f[a]=t,f[o]=n,f[i]=e,f)[m]||1,_=this.$d.getTime()+r*g;return T.w(_,this)},_.subtract=function(e,t){return this.add(-1*e,t)},_.format=function(e){var t=this,n=this.$locale();if(!this.isValid())return n.invalidDate||p;var r=e||`YYYY-MM-DDTHH:mm:ssZ`,i=T.z(this),a=this.$H,o=this.$m,s=this.$M,c=n.weekdays,l=n.months,u=n.meridiem,d=function(e,n,i,a){return e&&(e[n]||e(t,r))||i[n].slice(0,a)},f=function(e){return T.s(a%12||12,e,`0`)},m=u||function(e,t,n){var r=e<12?`AM`:`PM`;return n?r.toLowerCase():r};return r.replace(h,(function(e,r){return r||function(e){switch(e){case`YY`:return String(t.$y).slice(-2);case`YYYY`:return T.s(t.$y,4,`0`);case`M`:return s+1;case`MM`:return T.s(s+1,2,`0`);case`MMM`:return d(n.monthsShort,s,l,3);case`MMMM`:return d(l,s);case`D`:return t.$D;case`DD`:return T.s(t.$D,2,`0`);case`d`:return String(t.$W);case`dd`:return d(n.weekdaysMin,t.$W,c,2);case`ddd`:return d(n.weekdaysShort,t.$W,c,3);case`dddd`:return c[t.$W];case`H`:return String(a);case`HH`:return T.s(a,2,`0`);case`h`:return f(1);case`hh`:return f(2);case`a`:return m(a,o,!0);case`A`:return m(a,o,!1);case`m`:return String(o);case`mm`:return T.s(o,2,`0`);case`s`:return String(t.$s);case`ss`:return T.s(t.$s,2,`0`);case`SSS`:return T.s(t.$ms,3,`0`);case`Z`:return i}return null}(e)||i.replace(`:`,``)}))},_.utcOffset=function(){return 15*-Math.round(this.$d.getTimezoneOffset()/15)},_.diff=function(r,f,p){var m,h=this,g=T.p(f),_=w(r),v=(_.utcOffset()-this.utcOffset())*t,y=this-_,b=function(){return T.m(h,_)};switch(g){case d:m=b()/12;break;case l:m=b();break;case u:m=b()/3;break;case c:m=(y-v)/6048e5;break;case s:m=(y-v)/864e5;break;case o:m=y/n;break;case a:m=y/t;break;case i:m=y/e;break;default:m=y}return p?m:T.a(m)},_.daysInMonth=function(){return this.endOf(l).$D},_.$locale=function(){return b[this.$L]},_.locale=function(e,t){if(!e)return this.$L;var n=this.clone(),r=C(e,t,!0);return r&&(n.$L=r),n},_.clone=function(){return T.w(this.$d,this)},_.toDate=function(){return new Date(this.valueOf())},_.toJSON=function(){return this.isValid()?this.toISOString():null},_.toISOString=function(){return this.$d.toISOString()},_.toString=function(){return this.$d.toUTCString()},g}(),D=E.prototype;return w.prototype=D,[[`$ms`,r],[`$s`,i],[`$m`,a],[`$H`,o],[`$W`,s],[`$M`,l],[`$y`,d],[`$D`,f]].forEach((function(e){D[e[1]]=function(t){return this.$g(t,e[0],e[1])}})),w.extend=function(e,t){return e.$i||=(e(t,E,w),!0),w},w.locale=C,w.isDayjs=S,w.unix=function(e){return w(1e3*e)},w.en=b[y],w.Ls=b,w.p={},w}))})),x=u(((e,t)=>{(function(n,r){typeof e==`object`&&t!==void 0?t.exports=r():typeof define==`function`&&define.amd?define(r):(n=typeof globalThis<`u`?globalThis:n||self).dayjs_locale_en=r()})(e,(function(){return{name:`en`,weekdays:`Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday`.split(`_`),months:`January_February_March_April_May_June_July_August_September_October_November_December`.split(`_`),ordinal:function(e){var t=[`th`,`st`,`nd`,`rd`],n=e%100;return`[`+e+(t[(n-20)%10]||t[n]||t[0])+`]`}}}))})),S=u(((e,t)=>{(function(n,r){typeof e==`object`&&t!==void 0?t.exports=r(b()):typeof define==`function`&&define.amd?define([`dayjs`],r):(n=typeof globalThis<`u`?globalThis:n||self).dayjs_locale_zh_cn=r(n.dayjs)})(e,(function(e){function t(e){return e&&typeof e==`object`&&`default`in e?e:{default:e}}var n=t(e),r={name:`zh-cn`,weekdays:`星期日_星期一_星期二_星期三_星期四_星期五_星期六`.split(`_`),weekdaysShort:`周日_周一_周二_周三_周四_周五_周六`.split(`_`),weekdaysMin:`日_一_二_三_四_五_六`.split(`_`),months:`一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月`.split(`_`),monthsShort:`1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月`.split(`_`),ordinal:function(e,t){return t===`W`?e+`周`:e+`日`},weekStart:1,yearStart:4,formats:{LT:`HH:mm`,LTS:`HH:mm:ss`,L:`YYYY/MM/DD`,LL:`YYYY年M月D日`,LLL:`YYYY年M月D日Ah点mm分`,LLLL:`YYYY年M月D日ddddAh点mm分`,l:`YYYY/M/D`,ll:`YYYY年M月D日`,lll:`YYYY年M月D日 HH:mm`,llll:`YYYY年M月D日dddd HH:mm`},relativeTime:{future:`%s内`,past:`%s前`,s:`几秒`,m:`1 分钟`,mm:`%d 分钟`,h:`1 小时`,hh:`%d 小时`,d:`1 天`,dd:`%d 天`,M:`1 个月`,MM:`%d 个月`,y:`1 年`,yy:`%d 年`},meridiem:function(e,t){var n=100*e+t;return n<600?`凌晨`:n<900?`早上`:n<1100?`上午`:n<1300?`中午`:n<1800?`下午`:`晚上`}};return n.default.locale(r,null,!0),r}))})),C=u(((e,t)=>{(function(n,r){typeof e==`object`&&t!==void 0?t.exports=r(b()):typeof define==`function`&&define.amd?define([`dayjs`],r):(n=typeof globalThis<`u`?globalThis:n||self).dayjs_locale_zh_tw=r(n.dayjs)})(e,(function(e){function t(e){return e&&typeof e==`object`&&`default`in e?e:{default:e}}var n=t(e),r={name:`zh-tw`,weekdays:`星期日_星期一_星期二_星期三_星期四_星期五_星期六`.split(`_`),weekdaysShort:`週日_週一_週二_週三_週四_週五_週六`.split(`_`),weekdaysMin:`日_一_二_三_四_五_六`.split(`_`),months:`一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月`.split(`_`),monthsShort:`1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月`.split(`_`),ordinal:function(e,t){return t===`W`?e+`週`:e+`日`},formats:{LT:`HH:mm`,LTS:`HH:mm:ss`,L:`YYYY/MM/DD`,LL:`YYYY年M月D日`,LLL:`YYYY年M月D日 HH:mm`,LLLL:`YYYY年M月D日dddd HH:mm`,l:`YYYY/M/D`,ll:`YYYY年M月D日`,lll:`YYYY年M月D日 HH:mm`,llll:`YYYY年M月D日dddd HH:mm`},relativeTime:{future:`%s內`,past:`%s前`,s:`幾秒`,m:`1 分鐘`,mm:`%d 分鐘`,h:`1 小時`,hh:`%d 小時`,d:`1 天`,dd:`%d 天`,M:`1 個月`,MM:`%d 個月`,y:`1 年`,yy:`%d 年`},meridiem:function(e,t){var n=100*e+t;return n<600?`凌晨`:n<900?`早上`:n<1100?`上午`:n<1300?`中午`:n<1800?`下午`:`晚上`}};return n.default.locale(r,null,!0),r}))})),w=u(((e,t)=>{(function(n,r){typeof e==`object`&&t!==void 0?t.exports=r():typeof define==`function`&&define.amd?define(r):(n=typeof globalThis<`u`?globalThis:n||self).dayjs_plugin_relativeTime=r()})(e,(function(){return function(e,t,n){e||={};var r=t.prototype,i={future:`in %s`,past:`%s ago`,s:`a few seconds`,m:`a minute`,mm:`%d minutes`,h:`an hour`,hh:`%d hours`,d:`a day`,dd:`%d days`,M:`a month`,MM:`%d months`,y:`a year`,yy:`%d years`};function a(e,t,n,i){return r.fromToBase(e,t,n,i)}n.en.relativeTime=i,r.fromToBase=function(t,r,a,o,s){for(var c,l,u,d=a.$locale().relativeTime||i,f=e.thresholds||[{l:`s`,r:44,d:`second`},{l:`m`,r:89},{l:`mm`,r:44,d:`minute`},{l:`h`,r:89},{l:`hh`,r:21,d:`hour`},{l:`d`,r:35},{l:`dd`,r:25,d:`day`},{l:`M`,r:45},{l:`MM`,r:10,d:`month`},{l:`y`,r:17},{l:`yy`,d:`year`}],p=f.length,m=0;m<p;m+=1){var h=f[m];h.d&&(c=o?n(t).diff(a,h.d,!0):a.diff(t,h.d,!0));var g=(e.rounding||Math.round)(Math.abs(c));if(u=c>0,g<=h.r||!h.r){g<=1&&m>0&&(h=f[m-1]);var _=d[h.l];s&&(g=s(``+g)),l=typeof _==`string`?_.replace(`%d`,g):_(g,r,h.l,u);break}}if(r)return l;var v=u?d.future:d.past;return typeof v==`function`?v(l):v.replace(`%s`,l)},r.to=function(e,t){return a(e,t,this,!0)},r.from=function(e,t){return a(e,t,this)};var o=function(e){return e.$u?n.utc():n()};r.toNow=function(e){return this.to(o(this),e)},r.fromNow=function(e){return this.from(o(this),e)}}}))})),T=u(((e,t)=>{(function(n,r){typeof e==`object`&&t!==void 0?t.exports=r():typeof define==`function`&&define.amd?define(r):(n=typeof globalThis<`u`?globalThis:n||self).dayjs_plugin_timezone=r()})(e,(function(){var e={year:0,month:1,day:2,hour:3,minute:4,second:5},t={};return function(n,r,i){var a,o=function(e,n,r){r===void 0&&(r={});var i=new Date(e);return function(e,n){n===void 0&&(n={});var r=n.timeZoneName||`short`,i=e+`|`+r,a=t[i];return a||(a=new Intl.DateTimeFormat(`en-US`,{hour12:!1,timeZone:e,year:`numeric`,month:`2-digit`,day:`2-digit`,hour:`2-digit`,minute:`2-digit`,second:`2-digit`,timeZoneName:r}),t[i]=a),a}(n,r).formatToParts(i)},s=function(t,n){for(var r=o(t,n),a=[],s=0;s<r.length;s+=1){var c=r[s],l=c.type,u=c.value,d=e[l];d>=0&&(a[d]=parseInt(u,10))}var f=a[3],p=f===24?0:f,m=a[0]+`-`+a[1]+`-`+a[2]+` `+p+`:`+a[4]+`:`+a[5]+`:000`,h=+t;return(i.utc(m).valueOf()-(h-=h%1e3))/6e4},c=r.prototype;c.tz=function(e,t){e===void 0&&(e=a);var n,r=this.utcOffset(),o=this.toDate(),s=o.toLocaleString(`en-US`,{timeZone:e}),c=Math.round((o-new Date(s))/1e3/60),l=15*-Math.round(o.getTimezoneOffset()/15)-c;if(!Number(l))n=this.utcOffset(0,t);else if(n=i(s,{locale:this.$L}).$set(`millisecond`,this.$ms).utcOffset(l,!0),t){var u=n.utcOffset();n=n.add(r-u,`minute`)}return n.$x.$timezone=e,n},c.offsetName=function(e){var t=this.$x.$timezone||i.tz.guess(),n=o(this.valueOf(),t,{timeZoneName:e}).find((function(e){return e.type.toLowerCase()===`timezonename`}));return n&&n.value};var l=c.startOf;c.startOf=function(e,t){if(!this.$x||!this.$x.$timezone)return l.call(this,e,t);var n=i(this.format(`YYYY-MM-DD HH:mm:ss:SSS`),{locale:this.$L});return l.call(n,e,t).tz(this.$x.$timezone,!0)},i.tz=function(e,t,n){var r=n&&t,o=n||t||a,c=s(+i(),o);if(typeof e!=`string`)return i(e).tz(o);var l=function(e,t,n){var r=e-60*t*1e3,i=s(r,n);if(t===i)return[r,t];var a=s(r-=60*(i-t)*1e3,n);return i===a?[r,i]:[e-60*Math.min(i,a)*1e3,Math.max(i,a)]}(i.utc(e,r).valueOf(),c,o),u=l[0],d=l[1],f=i(u).utcOffset(d);return f.$x.$timezone=o,f},i.tz.guess=function(){return Intl.DateTimeFormat().resolvedOptions().timeZone},i.tz.setDefault=function(e){a=e}}}))})),E=u(((e,t)=>{(function(n,r){typeof e==`object`&&t!==void 0?t.exports=r():typeof define==`function`&&define.amd?define(r):(n=typeof globalThis<`u`?globalThis:n||self).dayjs_plugin_utc=r()})(e,(function(){var e=`minute`,t=/[+-]\d\d(?::?\d\d)?/g,n=/([+-]|\d\d)/g;return function(r,i,a){var o=i.prototype;a.utc=function(e){return new i({date:e,utc:!0,args:arguments})},o.utc=function(t){var n=a(this.toDate(),{locale:this.$L,utc:!0});return t?n.add(this.utcOffset(),e):n},o.local=function(){return a(this.toDate(),{locale:this.$L,utc:!1})};var s=o.parse;o.parse=function(e){e.utc&&(this.$u=!0),this.$utils().u(e.$offset)||(this.$offset=e.$offset),s.call(this,e)};var c=o.init;o.init=function(){if(this.$u){var e=this.$d;this.$y=e.getUTCFullYear(),this.$M=e.getUTCMonth(),this.$D=e.getUTCDate(),this.$W=e.getUTCDay(),this.$H=e.getUTCHours(),this.$m=e.getUTCMinutes(),this.$s=e.getUTCSeconds(),this.$ms=e.getUTCMilliseconds()}else c.call(this)};var l=o.utcOffset;o.utcOffset=function(r,i){var a=this.$utils().u;if(a(r))return this.$u?0:a(this.$offset)?l.call(this):this.$offset;if(typeof r==`string`&&(r=function(e){e===void 0&&(e=``);var r=e.match(t);if(!r)return null;var i=(``+r[0]).match(n)||[`-`,0,0],a=i[0],o=60*i[1]+ +i[2];return o===0?0:a===`+`?o:-o}(r),r===null))return this;var o=Math.abs(r)<=16?60*r:r;if(o===0)return this.utc(i);var s=this.clone();if(i)return s.$offset=o,s.$u=!1,s;var c=this.$u?this.toDate().getTimezoneOffset():-1*this.utcOffset();return(s=this.local().add(o+c,e)).$offset=o,s.$x.$localOffset=c,s};var u=o.format;o.format=function(e){var t=e||(this.$u?`YYYY-MM-DDTHH:mm:ss[Z]`:``);return u.call(this,t)},o.valueOf=function(){var e=this.$utils().u(this.$offset)?0:this.$offset+(this.$x.$localOffset||this.$d.getTimezoneOffset());return this.$d.valueOf()-6e4*e},o.isUTC=function(){return!!this.$u},o.toISOString=function(){return this.toDate().toISOString()},o.toString=function(){return this.toDate().toUTCString()};var d=o.toDate;o.toDate=function(e){return e===`s`&&this.$offset?a(this.format(`YYYY-MM-DD HH:mm:ss:SSS`)).toDate():d.call(this)};var f=o.diff;o.diff=function(e,t,n){if(e&&this.$u===e.$u)return f.call(this,e,t,n);var r=this.local(),i=a(e).local();return f.call(r,i,t,n)}}}))})),D=f(b(),1);x(),S(),C();var O=f(w(),1),k=f(T(),1),A=f(E(),1);D.default.extend(k.default),D.default.extend(A.default),D.default.extend(O.default);const j={en:`en`,zh:`zh-cn`,"en-US":`en`,"zh-CN":`zh-cn`,"zh-TW":`zh-tw`};var M=class{dayjs;constructor(){this.dayjs=D.default}format(e,t){return e?this.dayjs(e).format(t||`YYYY-MM-DD HH:mm`):``}toISOString(e){return e?this.dayjs(e).utc(!1).toISOString():``}toDatetimeLocal(e){return e?this.dayjs(e).format(`YYYY-MM-DDTHH:mm`):``}timeAgo(e){if(e)return this.dayjs().to(this.dayjs(e))}setLocale(e){this.dayjs.locale(j[e]||j.en)}};const N=[];for(let e=0;e<256;++e)N.push((e+256).toString(16).slice(1));function P(e,t=0){return(N[e[t+0]]+N[e[t+1]]+N[e[t+2]]+N[e[t+3]]+`-`+N[e[t+4]]+N[e[t+5]]+`-`+N[e[t+6]]+N[e[t+7]]+`-`+N[e[t+8]]+N[e[t+9]]+`-`+N[e[t+10]]+N[e[t+11]]+N[e[t+12]]+N[e[t+13]]+N[e[t+14]]+N[e[t+15]]).toLowerCase()}let F;const I=new Uint8Array(16);function L(){if(!F){if(typeof crypto>`u`||!crypto.getRandomValues)throw Error(`crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported`);F=crypto.getRandomValues.bind(crypto)}return F(I)}const R={};function z(e,t,n){let r;if(e)r=V(e.random??e.rng?.()??L(),e.msecs,e.seq,t,n);else{let e=Date.now(),i=L();B(R,e,i),r=V(i,R.msecs,R.seq,t,n)}return t??P(r)}function B(e,t,n){return e.msecs??=-1/0,e.seq??=0,t>e.msecs?(e.seq=n[6]<<23|n[7]<<16|n[8]<<8|n[9],e.msecs=t):(e.seq=e.seq+1|0,e.seq===0&&e.msecs++),e}function V(e,t,n,r,i=0){if(e.length<16)throw Error(`Random bytes length must be >= 16`);if(!r)r=new Uint8Array(16),i=0;else if(i<0||i+16>r.length)throw RangeError(`UUID byte range ${i}:${i+15} is out of buffer bounds`);return t??=Date.now(),n??=e[6]*127<<24|e[7]<<16|e[8]<<8|e[9],r[i++]=t/1099511627776&255,r[i++]=t/4294967296&255,r[i++]=t/16777216&255,r[i++]=t/65536&255,r[i++]=t/256&255,r[i++]=t&255,r[i++]=112|n>>>28&15,r[i++]=n>>>20&255,r[i++]=128|n>>>14&63,r[i++]=n>>>6&255,r[i++]=n<<2&255|e[10]&3,r[i++]=e[11],r[i++]=e[12],r[i++]=e[13],r[i++]=e[14],r[i++]=e[15],r}var H=z,U=class{uuid(){return H()}},W=class{userPermissions;constructor(e){this.userPermissions=e}has(e,t=!0){if(!this.userPermissions)throw Error(`User permissions not set in PermissionUtils`);return this.userPermissions.includes(`*`)||!e.length?!0:this.userPermissions.length?t?e.some(e=>this.userPermissions.includes(e)):e.every(e=>this.userPermissions.includes(e)):!1}getUserPermissions(){return this.userPermissions}setUserPermissions(e){this.userPermissions=e}};const G={date:new M,attachment:new y,permission:new W,id:new U};export{g as FormType,v as THUMBNAIL_WIDTH_MAP,h as definePlugin,m as events,_ as stores,G as utils};
|
|
1
|
+
import{axiosInstance as e,consoleApiClient as t}from"@halo-dev/api-client";import{defineStore as n}from"pinia";import{ref as r}from"vue";var i=Object.create,a=Object.defineProperty,o=Object.getOwnPropertyDescriptor,s=Object.getOwnPropertyNames,c=Object.getPrototypeOf,l=Object.prototype.hasOwnProperty,u=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports),d=(e,t,n,r)=>{if(t&&typeof t==`object`||typeof t==`function`)for(var i=s(t),c=0,u=i.length,d;c<u;c++)d=i[c],!l.call(e,d)&&d!==n&&a(e,d,{get:(e=>t[e]).bind(null,d),enumerable:!(r=o(t,d))||r.enumerable});return e},f=(e,t,n)=>(n=e==null?{}:i(c(e)),d(t||!e||!e.__esModule?a(n,`default`,{value:e,enumerable:!0}):n,e));function p(e){return{all:e||=new Map,on:function(t,n){var r=e.get(t);r?r.push(n):e.set(t,[n])},off:function(t,n){var r=e.get(t);r&&(n?r.splice(r.indexOf(n)>>>0,1):e.set(t,[]))},emit:function(t,n){var r=e.get(t);r&&r.slice().map(function(e){e(n)}),(r=e.get(`*`))&&r.slice().map(function(e){e(t,n)})}}}const m=p();function h(e){return e}let g=function(e){return e.TAG=`Tag`,e.CATEGORY=`Category`,e.POST=`Post`,e.SINGLE_PAGE=`SinglePage`,e}({});const _={currentUser:n(`currentUser`,()=>{let e=r(),n=r(!1);async function i(){let{data:r}=await t.user.getCurrentUserDetail();e.value=r,n.value=r.user.metadata.name===`anonymousUser`}return{currentUser:e,isAnonymous:n,fetchCurrentUser:i}}),globalInfo:n(`global-info`,()=>{let t=r();async function n(){let{data:n}=await e.get(`/actuator/globalinfo`,{withCredentials:!0});t.value=n}return{globalInfo:t,fetchGlobalInfo:n}})},v={XL:1600,L:1200,M:800,S:400};var y=class{getThumbnailUrl(e,t){let{origin:n}=location,r=v[t];return!r||e.startsWith(`data:`)?e:e.startsWith(n)||e.startsWith(`/`)?`${e}?width=${r}`:`/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=${encodeURIComponent(e)}&width=${r}`}getUrl(e){if(typeof e==`string`)return e;if(`spec`in e)return e.status?.permalink;if(`url`in e)return e.url;throw Error(`Invalid attachment`)}convertToSimple(e){if(typeof e==`string`)return{url:e};if(`spec`in e)return{url:e.status?.permalink||``,alt:e.spec.displayName,mediaType:e.spec.mediaType};if(`url`in e)return e;throw Error(`Invalid attachment`)}},b=u(((e,t)=>{(function(n,r){typeof e==`object`&&t!==void 0?t.exports=r():typeof define==`function`&&define.amd?define(r):(n=typeof globalThis<`u`?globalThis:n||self).dayjs=r()})(e,(function(){var e=1e3,t=6e4,n=36e5,r=`millisecond`,i=`second`,a=`minute`,o=`hour`,s=`day`,c=`week`,l=`month`,u=`quarter`,d=`year`,f=`date`,p=`Invalid Date`,m=/^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/,h=/\[([^\]]+)]|Y{1,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g,g={name:`en`,weekdays:`Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday`.split(`_`),months:`January_February_March_April_May_June_July_August_September_October_November_December`.split(`_`),ordinal:function(e){var t=[`th`,`st`,`nd`,`rd`],n=e%100;return`[`+e+(t[(n-20)%10]||t[n]||t[0])+`]`}},_=function(e,t,n){var r=String(e);return!r||r.length>=t?e:``+Array(t+1-r.length).join(n)+e},v={s:_,z:function(e){var t=-e.utcOffset(),n=Math.abs(t),r=Math.floor(n/60),i=n%60;return(t<=0?`+`:`-`)+_(r,2,`0`)+`:`+_(i,2,`0`)},m:function e(t,n){if(t.date()<n.date())return-e(n,t);var r=12*(n.year()-t.year())+(n.month()-t.month()),i=t.clone().add(r,l),a=n-i<0,o=t.clone().add(r+(a?-1:1),l);return+(-(r+(n-i)/(a?i-o:o-i))||0)},a:function(e){return e<0?Math.ceil(e)||0:Math.floor(e)},p:function(e){return{M:l,y:d,w:c,d:s,D:f,h:o,m:a,s:i,ms:r,Q:u}[e]||String(e||``).toLowerCase().replace(/s$/,``)},u:function(e){return e===void 0}},y=`en`,b={};b[y]=g;var x=`$isDayjsObject`,S=function(e){return e instanceof E||!(!e||!e[x])},C=function e(t,n,r){var i;if(!t)return y;if(typeof t==`string`){var a=t.toLowerCase();b[a]&&(i=a),n&&(b[a]=n,i=a);var o=t.split(`-`);if(!i&&o.length>1)return e(o[0])}else{var s=t.name;b[s]=t,i=s}return!r&&i&&(y=i),i||!r&&y},w=function(e,t){if(S(e))return e.clone();var n=typeof t==`object`?t:{};return n.date=e,n.args=arguments,new E(n)},T=v;T.l=C,T.i=S,T.w=function(e,t){return w(e,{locale:t.$L,utc:t.$u,x:t.$x,$offset:t.$offset})};var E=function(){function g(e){this.$L=C(e.locale,null,!0),this.parse(e),this.$x=this.$x||e.x||{},this[x]=!0}var _=g.prototype;return _.parse=function(e){this.$d=function(e){var t=e.date,n=e.utc;if(t===null)return new Date(NaN);if(T.u(t))return new Date;if(t instanceof Date)return new Date(t);if(typeof t==`string`&&!/Z$/i.test(t)){var r=t.match(m);if(r){var i=r[2]-1||0,a=(r[7]||`0`).substring(0,3);return n?new Date(Date.UTC(r[1],i,r[3]||1,r[4]||0,r[5]||0,r[6]||0,a)):new Date(r[1],i,r[3]||1,r[4]||0,r[5]||0,r[6]||0,a)}}return new Date(t)}(e),this.init()},_.init=function(){var e=this.$d;this.$y=e.getFullYear(),this.$M=e.getMonth(),this.$D=e.getDate(),this.$W=e.getDay(),this.$H=e.getHours(),this.$m=e.getMinutes(),this.$s=e.getSeconds(),this.$ms=e.getMilliseconds()},_.$utils=function(){return T},_.isValid=function(){return this.$d.toString()!==p},_.isSame=function(e,t){var n=w(e);return this.startOf(t)<=n&&n<=this.endOf(t)},_.isAfter=function(e,t){return w(e)<this.startOf(t)},_.isBefore=function(e,t){return this.endOf(t)<w(e)},_.$g=function(e,t,n){return T.u(e)?this[t]:this.set(n,e)},_.unix=function(){return Math.floor(this.valueOf()/1e3)},_.valueOf=function(){return this.$d.getTime()},_.startOf=function(e,t){var n=this,r=!!T.u(t)||t,u=T.p(e),p=function(e,t){var i=T.w(n.$u?Date.UTC(n.$y,t,e):new Date(n.$y,t,e),n);return r?i:i.endOf(s)},m=function(e,t){return T.w(n.toDate()[e].apply(n.toDate(`s`),(r?[0,0,0,0]:[23,59,59,999]).slice(t)),n)},h=this.$W,g=this.$M,_=this.$D,v=`set`+(this.$u?`UTC`:``);switch(u){case d:return r?p(1,0):p(31,11);case l:return r?p(1,g):p(0,g+1);case c:var y=this.$locale().weekStart||0,b=(h<y?h+7:h)-y;return p(r?_-b:_+(6-b),g);case s:case f:return m(v+`Hours`,0);case o:return m(v+`Minutes`,1);case a:return m(v+`Seconds`,2);case i:return m(v+`Milliseconds`,3);default:return this.clone()}},_.endOf=function(e){return this.startOf(e,!1)},_.$set=function(e,t){var n,c=T.p(e),u=`set`+(this.$u?`UTC`:``),p=(n={},n[s]=u+`Date`,n[f]=u+`Date`,n[l]=u+`Month`,n[d]=u+`FullYear`,n[o]=u+`Hours`,n[a]=u+`Minutes`,n[i]=u+`Seconds`,n[r]=u+`Milliseconds`,n)[c],m=c===s?this.$D+(t-this.$W):t;if(c===l||c===d){var h=this.clone().set(f,1);h.$d[p](m),h.init(),this.$d=h.set(f,Math.min(this.$D,h.daysInMonth())).$d}else p&&this.$d[p](m);return this.init(),this},_.set=function(e,t){return this.clone().$set(e,t)},_.get=function(e){return this[T.p(e)]()},_.add=function(r,u){var f,p=this;r=Number(r);var m=T.p(u),h=function(e){var t=w(p);return T.w(t.date(t.date()+Math.round(e*r)),p)};if(m===l)return this.set(l,this.$M+r);if(m===d)return this.set(d,this.$y+r);if(m===s)return h(1);if(m===c)return h(7);var g=(f={},f[a]=t,f[o]=n,f[i]=e,f)[m]||1,_=this.$d.getTime()+r*g;return T.w(_,this)},_.subtract=function(e,t){return this.add(-1*e,t)},_.format=function(e){var t=this,n=this.$locale();if(!this.isValid())return n.invalidDate||p;var r=e||`YYYY-MM-DDTHH:mm:ssZ`,i=T.z(this),a=this.$H,o=this.$m,s=this.$M,c=n.weekdays,l=n.months,u=n.meridiem,d=function(e,n,i,a){return e&&(e[n]||e(t,r))||i[n].slice(0,a)},f=function(e){return T.s(a%12||12,e,`0`)},m=u||function(e,t,n){var r=e<12?`AM`:`PM`;return n?r.toLowerCase():r};return r.replace(h,(function(e,r){return r||function(e){switch(e){case`YY`:return String(t.$y).slice(-2);case`YYYY`:return T.s(t.$y,4,`0`);case`M`:return s+1;case`MM`:return T.s(s+1,2,`0`);case`MMM`:return d(n.monthsShort,s,l,3);case`MMMM`:return d(l,s);case`D`:return t.$D;case`DD`:return T.s(t.$D,2,`0`);case`d`:return String(t.$W);case`dd`:return d(n.weekdaysMin,t.$W,c,2);case`ddd`:return d(n.weekdaysShort,t.$W,c,3);case`dddd`:return c[t.$W];case`H`:return String(a);case`HH`:return T.s(a,2,`0`);case`h`:return f(1);case`hh`:return f(2);case`a`:return m(a,o,!0);case`A`:return m(a,o,!1);case`m`:return String(o);case`mm`:return T.s(o,2,`0`);case`s`:return String(t.$s);case`ss`:return T.s(t.$s,2,`0`);case`SSS`:return T.s(t.$ms,3,`0`);case`Z`:return i}return null}(e)||i.replace(`:`,``)}))},_.utcOffset=function(){return 15*-Math.round(this.$d.getTimezoneOffset()/15)},_.diff=function(r,f,p){var m,h=this,g=T.p(f),_=w(r),v=(_.utcOffset()-this.utcOffset())*t,y=this-_,b=function(){return T.m(h,_)};switch(g){case d:m=b()/12;break;case l:m=b();break;case u:m=b()/3;break;case c:m=(y-v)/6048e5;break;case s:m=(y-v)/864e5;break;case o:m=y/n;break;case a:m=y/t;break;case i:m=y/e;break;default:m=y}return p?m:T.a(m)},_.daysInMonth=function(){return this.endOf(l).$D},_.$locale=function(){return b[this.$L]},_.locale=function(e,t){if(!e)return this.$L;var n=this.clone(),r=C(e,t,!0);return r&&(n.$L=r),n},_.clone=function(){return T.w(this.$d,this)},_.toDate=function(){return new Date(this.valueOf())},_.toJSON=function(){return this.isValid()?this.toISOString():null},_.toISOString=function(){return this.$d.toISOString()},_.toString=function(){return this.$d.toUTCString()},g}(),D=E.prototype;return w.prototype=D,[[`$ms`,r],[`$s`,i],[`$m`,a],[`$H`,o],[`$W`,s],[`$M`,l],[`$y`,d],[`$D`,f]].forEach((function(e){D[e[1]]=function(t){return this.$g(t,e[0],e[1])}})),w.extend=function(e,t){return e.$i||=(e(t,E,w),!0),w},w.locale=C,w.isDayjs=S,w.unix=function(e){return w(1e3*e)},w.en=b[y],w.Ls=b,w.p={},w}))})),x=u(((e,t)=>{(function(n,r){typeof e==`object`&&t!==void 0?t.exports=r():typeof define==`function`&&define.amd?define(r):(n=typeof globalThis<`u`?globalThis:n||self).dayjs_locale_en=r()})(e,(function(){return{name:`en`,weekdays:`Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday`.split(`_`),months:`January_February_March_April_May_June_July_August_September_October_November_December`.split(`_`),ordinal:function(e){var t=[`th`,`st`,`nd`,`rd`],n=e%100;return`[`+e+(t[(n-20)%10]||t[n]||t[0])+`]`}}}))})),S=u(((e,t)=>{(function(n,r){typeof e==`object`&&t!==void 0?t.exports=r(b()):typeof define==`function`&&define.amd?define([`dayjs`],r):(n=typeof globalThis<`u`?globalThis:n||self).dayjs_locale_zh_cn=r(n.dayjs)})(e,(function(e){function t(e){return e&&typeof e==`object`&&`default`in e?e:{default:e}}var n=t(e),r={name:`zh-cn`,weekdays:`星期日_星期一_星期二_星期三_星期四_星期五_星期六`.split(`_`),weekdaysShort:`周日_周一_周二_周三_周四_周五_周六`.split(`_`),weekdaysMin:`日_一_二_三_四_五_六`.split(`_`),months:`一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月`.split(`_`),monthsShort:`1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月`.split(`_`),ordinal:function(e,t){return t===`W`?e+`周`:e+`日`},weekStart:1,yearStart:4,formats:{LT:`HH:mm`,LTS:`HH:mm:ss`,L:`YYYY/MM/DD`,LL:`YYYY年M月D日`,LLL:`YYYY年M月D日Ah点mm分`,LLLL:`YYYY年M月D日ddddAh点mm分`,l:`YYYY/M/D`,ll:`YYYY年M月D日`,lll:`YYYY年M月D日 HH:mm`,llll:`YYYY年M月D日dddd HH:mm`},relativeTime:{future:`%s内`,past:`%s前`,s:`几秒`,m:`1 分钟`,mm:`%d 分钟`,h:`1 小时`,hh:`%d 小时`,d:`1 天`,dd:`%d 天`,M:`1 个月`,MM:`%d 个月`,y:`1 年`,yy:`%d 年`},meridiem:function(e,t){var n=100*e+t;return n<600?`凌晨`:n<900?`早上`:n<1100?`上午`:n<1300?`中午`:n<1800?`下午`:`晚上`}};return n.default.locale(r,null,!0),r}))})),C=u(((e,t)=>{(function(n,r){typeof e==`object`&&t!==void 0?t.exports=r(b()):typeof define==`function`&&define.amd?define([`dayjs`],r):(n=typeof globalThis<`u`?globalThis:n||self).dayjs_locale_zh_tw=r(n.dayjs)})(e,(function(e){function t(e){return e&&typeof e==`object`&&`default`in e?e:{default:e}}var n=t(e),r={name:`zh-tw`,weekdays:`星期日_星期一_星期二_星期三_星期四_星期五_星期六`.split(`_`),weekdaysShort:`週日_週一_週二_週三_週四_週五_週六`.split(`_`),weekdaysMin:`日_一_二_三_四_五_六`.split(`_`),months:`一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月`.split(`_`),monthsShort:`1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月`.split(`_`),ordinal:function(e,t){return t===`W`?e+`週`:e+`日`},formats:{LT:`HH:mm`,LTS:`HH:mm:ss`,L:`YYYY/MM/DD`,LL:`YYYY年M月D日`,LLL:`YYYY年M月D日 HH:mm`,LLLL:`YYYY年M月D日dddd HH:mm`,l:`YYYY/M/D`,ll:`YYYY年M月D日`,lll:`YYYY年M月D日 HH:mm`,llll:`YYYY年M月D日dddd HH:mm`},relativeTime:{future:`%s內`,past:`%s前`,s:`幾秒`,m:`1 分鐘`,mm:`%d 分鐘`,h:`1 小時`,hh:`%d 小時`,d:`1 天`,dd:`%d 天`,M:`1 個月`,MM:`%d 個月`,y:`1 年`,yy:`%d 年`},meridiem:function(e,t){var n=100*e+t;return n<600?`凌晨`:n<900?`早上`:n<1100?`上午`:n<1300?`中午`:n<1800?`下午`:`晚上`}};return n.default.locale(r,null,!0),r}))})),w=u(((e,t)=>{(function(n,r){typeof e==`object`&&t!==void 0?t.exports=r():typeof define==`function`&&define.amd?define(r):(n=typeof globalThis<`u`?globalThis:n||self).dayjs_plugin_relativeTime=r()})(e,(function(){return function(e,t,n){e||={};var r=t.prototype,i={future:`in %s`,past:`%s ago`,s:`a few seconds`,m:`a minute`,mm:`%d minutes`,h:`an hour`,hh:`%d hours`,d:`a day`,dd:`%d days`,M:`a month`,MM:`%d months`,y:`a year`,yy:`%d years`};function a(e,t,n,i){return r.fromToBase(e,t,n,i)}n.en.relativeTime=i,r.fromToBase=function(t,r,a,o,s){for(var c,l,u,d=a.$locale().relativeTime||i,f=e.thresholds||[{l:`s`,r:44,d:`second`},{l:`m`,r:89},{l:`mm`,r:44,d:`minute`},{l:`h`,r:89},{l:`hh`,r:21,d:`hour`},{l:`d`,r:35},{l:`dd`,r:25,d:`day`},{l:`M`,r:45},{l:`MM`,r:10,d:`month`},{l:`y`,r:17},{l:`yy`,d:`year`}],p=f.length,m=0;m<p;m+=1){var h=f[m];h.d&&(c=o?n(t).diff(a,h.d,!0):a.diff(t,h.d,!0));var g=(e.rounding||Math.round)(Math.abs(c));if(u=c>0,g<=h.r||!h.r){g<=1&&m>0&&(h=f[m-1]);var _=d[h.l];s&&(g=s(``+g)),l=typeof _==`string`?_.replace(`%d`,g):_(g,r,h.l,u);break}}if(r)return l;var v=u?d.future:d.past;return typeof v==`function`?v(l):v.replace(`%s`,l)},r.to=function(e,t){return a(e,t,this,!0)},r.from=function(e,t){return a(e,t,this)};var o=function(e){return e.$u?n.utc():n()};r.toNow=function(e){return this.to(o(this),e)},r.fromNow=function(e){return this.from(o(this),e)}}}))})),T=u(((e,t)=>{(function(n,r){typeof e==`object`&&t!==void 0?t.exports=r():typeof define==`function`&&define.amd?define(r):(n=typeof globalThis<`u`?globalThis:n||self).dayjs_plugin_timezone=r()})(e,(function(){var e={year:0,month:1,day:2,hour:3,minute:4,second:5},t={};return function(n,r,i){var a,o=function(e,n,r){r===void 0&&(r={});var i=new Date(e);return function(e,n){n===void 0&&(n={});var r=n.timeZoneName||`short`,i=e+`|`+r,a=t[i];return a||(a=new Intl.DateTimeFormat(`en-US`,{hour12:!1,timeZone:e,year:`numeric`,month:`2-digit`,day:`2-digit`,hour:`2-digit`,minute:`2-digit`,second:`2-digit`,timeZoneName:r}),t[i]=a),a}(n,r).formatToParts(i)},s=function(t,n){for(var r=o(t,n),a=[],s=0;s<r.length;s+=1){var c=r[s],l=c.type,u=c.value,d=e[l];d>=0&&(a[d]=parseInt(u,10))}var f=a[3],p=f===24?0:f,m=a[0]+`-`+a[1]+`-`+a[2]+` `+p+`:`+a[4]+`:`+a[5]+`:000`,h=+t;return(i.utc(m).valueOf()-(h-=h%1e3))/6e4},c=r.prototype;c.tz=function(e,t){e===void 0&&(e=a);var n,r=this.utcOffset(),o=this.toDate(),s=o.toLocaleString(`en-US`,{timeZone:e}),c=Math.round((o-new Date(s))/1e3/60),l=15*-Math.round(o.getTimezoneOffset()/15)-c;if(!Number(l))n=this.utcOffset(0,t);else if(n=i(s,{locale:this.$L}).$set(`millisecond`,this.$ms).utcOffset(l,!0),t){var u=n.utcOffset();n=n.add(r-u,`minute`)}return n.$x.$timezone=e,n},c.offsetName=function(e){var t=this.$x.$timezone||i.tz.guess(),n=o(this.valueOf(),t,{timeZoneName:e}).find((function(e){return e.type.toLowerCase()===`timezonename`}));return n&&n.value};var l=c.startOf;c.startOf=function(e,t){if(!this.$x||!this.$x.$timezone)return l.call(this,e,t);var n=i(this.format(`YYYY-MM-DD HH:mm:ss:SSS`),{locale:this.$L});return l.call(n,e,t).tz(this.$x.$timezone,!0)},i.tz=function(e,t,n){var r=n&&t,o=n||t||a,c=s(+i(),o);if(typeof e!=`string`)return i(e).tz(o);var l=function(e,t,n){var r=e-60*t*1e3,i=s(r,n);if(t===i)return[r,t];var a=s(r-=60*(i-t)*1e3,n);return i===a?[r,i]:[e-60*Math.min(i,a)*1e3,Math.max(i,a)]}(i.utc(e,r).valueOf(),c,o),u=l[0],d=l[1],f=i(u).utcOffset(d);return f.$x.$timezone=o,f},i.tz.guess=function(){return Intl.DateTimeFormat().resolvedOptions().timeZone},i.tz.setDefault=function(e){a=e}}}))})),E=u(((e,t)=>{(function(n,r){typeof e==`object`&&t!==void 0?t.exports=r():typeof define==`function`&&define.amd?define(r):(n=typeof globalThis<`u`?globalThis:n||self).dayjs_plugin_utc=r()})(e,(function(){var e=`minute`,t=/[+-]\d\d(?::?\d\d)?/g,n=/([+-]|\d\d)/g;return function(r,i,a){var o=i.prototype;a.utc=function(e){return new i({date:e,utc:!0,args:arguments})},o.utc=function(t){var n=a(this.toDate(),{locale:this.$L,utc:!0});return t?n.add(this.utcOffset(),e):n},o.local=function(){return a(this.toDate(),{locale:this.$L,utc:!1})};var s=o.parse;o.parse=function(e){e.utc&&(this.$u=!0),this.$utils().u(e.$offset)||(this.$offset=e.$offset),s.call(this,e)};var c=o.init;o.init=function(){if(this.$u){var e=this.$d;this.$y=e.getUTCFullYear(),this.$M=e.getUTCMonth(),this.$D=e.getUTCDate(),this.$W=e.getUTCDay(),this.$H=e.getUTCHours(),this.$m=e.getUTCMinutes(),this.$s=e.getUTCSeconds(),this.$ms=e.getUTCMilliseconds()}else c.call(this)};var l=o.utcOffset;o.utcOffset=function(r,i){var a=this.$utils().u;if(a(r))return this.$u?0:a(this.$offset)?l.call(this):this.$offset;if(typeof r==`string`&&(r=function(e){e===void 0&&(e=``);var r=e.match(t);if(!r)return null;var i=(``+r[0]).match(n)||[`-`,0,0],a=i[0],o=60*i[1]+ +i[2];return o===0?0:a===`+`?o:-o}(r),r===null))return this;var o=Math.abs(r)<=16?60*r:r;if(o===0)return this.utc(i);var s=this.clone();if(i)return s.$offset=o,s.$u=!1,s;var c=this.$u?this.toDate().getTimezoneOffset():-1*this.utcOffset();return(s=this.local().add(o+c,e)).$offset=o,s.$x.$localOffset=c,s};var u=o.format;o.format=function(e){var t=e||(this.$u?`YYYY-MM-DDTHH:mm:ss[Z]`:``);return u.call(this,t)},o.valueOf=function(){var e=this.$utils().u(this.$offset)?0:this.$offset+(this.$x.$localOffset||this.$d.getTimezoneOffset());return this.$d.valueOf()-6e4*e},o.isUTC=function(){return!!this.$u},o.toISOString=function(){return this.toDate().toISOString()},o.toString=function(){return this.toDate().toUTCString()};var d=o.toDate;o.toDate=function(e){return e===`s`&&this.$offset?a(this.format(`YYYY-MM-DD HH:mm:ss:SSS`)).toDate():d.call(this)};var f=o.diff;o.diff=function(e,t,n){if(e&&this.$u===e.$u)return f.call(this,e,t,n);var r=this.local(),i=a(e).local();return f.call(r,i,t,n)}}}))})),D=f(b(),1);x(),S(),C();var O=f(w(),1),k=f(T(),1),A=f(E(),1);D.default.extend(k.default),D.default.extend(A.default),D.default.extend(O.default);const j={en:`en`,zh:`zh-cn`,"en-US":`en`,"zh-CN":`zh-cn`,"zh-TW":`zh-tw`};var M=class{dayjs;constructor(){this.dayjs=D.default}format(e,t){return e?this.dayjs(e).format(t||`YYYY-MM-DD HH:mm`):``}toISOString(e){return e?this.dayjs(e).utc(!1).toISOString():``}toDatetimeLocal(e){return e?this.dayjs(e).format(`YYYY-MM-DDTHH:mm`):``}timeAgo(e){if(e)return this.dayjs().to(this.dayjs(e))}setLocale(e){this.dayjs.locale(j[e]||j.en)}};const N=[];for(let e=0;e<256;++e)N.push((e+256).toString(16).slice(1));function P(e,t=0){return(N[e[t+0]]+N[e[t+1]]+N[e[t+2]]+N[e[t+3]]+`-`+N[e[t+4]]+N[e[t+5]]+`-`+N[e[t+6]]+N[e[t+7]]+`-`+N[e[t+8]]+N[e[t+9]]+`-`+N[e[t+10]]+N[e[t+11]]+N[e[t+12]]+N[e[t+13]]+N[e[t+14]]+N[e[t+15]]).toLowerCase()}let F;const I=new Uint8Array(16);function L(){if(!F){if(typeof crypto>`u`||!crypto.getRandomValues)throw Error(`crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported`);F=crypto.getRandomValues.bind(crypto)}return F(I)}const R={};function z(e,t,n){let r;if(e)r=V(e.random??e.rng?.()??L(),e.msecs,e.seq,t,n);else{let e=Date.now(),i=L();B(R,e,i),r=V(i,R.msecs,R.seq,t,n)}return t??P(r)}function B(e,t,n){return e.msecs??=-1/0,e.seq??=0,t>e.msecs?(e.seq=n[6]<<23|n[7]<<16|n[8]<<8|n[9],e.msecs=t):(e.seq=e.seq+1|0,e.seq===0&&e.msecs++),e}function V(e,t,n,r,i=0){if(e.length<16)throw Error(`Random bytes length must be >= 16`);if(!r)r=new Uint8Array(16),i=0;else if(i<0||i+16>r.length)throw RangeError(`UUID byte range ${i}:${i+15} is out of buffer bounds`);return t??=Date.now(),n??=e[6]*127<<24|e[7]<<16|e[8]<<8|e[9],r[i++]=t/1099511627776&255,r[i++]=t/4294967296&255,r[i++]=t/16777216&255,r[i++]=t/65536&255,r[i++]=t/256&255,r[i++]=t&255,r[i++]=112|n>>>28&15,r[i++]=n>>>20&255,r[i++]=128|n>>>14&63,r[i++]=n>>>6&255,r[i++]=n<<2&255|e[10]&3,r[i++]=e[11],r[i++]=e[12],r[i++]=e[13],r[i++]=e[14],r[i++]=e[15],r}var H=class{uuid(){return z()}},U=class{userPermissions;constructor(e){this.userPermissions=e}has(e,t=!0){if(!this.userPermissions)throw Error(`User permissions not set in PermissionUtils`);return this.userPermissions.includes(`*`)||!e.length?!0:this.userPermissions.length?t?e.some(e=>this.userPermissions.includes(e)):e.every(e=>this.userPermissions.includes(e)):!1}getUserPermissions(){return this.userPermissions}setUserPermissions(e){this.userPermissions=e}};const W={date:new M,attachment:new y,permission:new U,id:new H};export{g as FormType,v as THUMBNAIL_WIDTH_MAP,h as definePlugin,m as events,_ as stores,W as utils};
|
package/package.json
CHANGED
|
@@ -1,45 +1,51 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@halo-dev/ui-shared",
|
|
3
|
-
"
|
|
4
|
-
"version": "2.22.1",
|
|
3
|
+
"version": "2.23.0",
|
|
5
4
|
"description": "",
|
|
6
5
|
"keywords": [],
|
|
7
6
|
"homepage": "https://github.com/halo-dev/halo/tree/main/ui/packages/shared#readme",
|
|
8
7
|
"bugs": {
|
|
9
8
|
"url": "https://github.com/halo-dev/halo/issues"
|
|
10
9
|
},
|
|
11
|
-
"repository": {
|
|
12
|
-
"type": "git",
|
|
13
|
-
"url": "https://github.com/halo-dev/halo.git",
|
|
14
|
-
"directory": "ui/packages/shared"
|
|
15
|
-
},
|
|
16
10
|
"license": "MIT",
|
|
17
11
|
"author": {
|
|
18
12
|
"name": "@halo-dev",
|
|
19
13
|
"url": "https://github.com/halo-dev"
|
|
20
14
|
},
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "https://github.com/halo-dev/halo.git",
|
|
18
|
+
"directory": "ui/packages/shared"
|
|
24
19
|
},
|
|
25
|
-
"main": "./dist/index.js",
|
|
26
|
-
"module": "./dist/index.js",
|
|
27
|
-
"types": "./dist/index.d.ts",
|
|
28
20
|
"files": [
|
|
29
21
|
"dist"
|
|
30
22
|
],
|
|
23
|
+
"type": "module",
|
|
24
|
+
"main": "./dist/index.js",
|
|
25
|
+
"module": "./dist/index.js",
|
|
26
|
+
"types": "./dist/index.d.ts",
|
|
27
|
+
"exports": {
|
|
28
|
+
".": "./dist/index.js",
|
|
29
|
+
"./package.json": "./package.json"
|
|
30
|
+
},
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"mitt": "^3.0.1",
|
|
33
|
-
"@halo-dev/api-client": "2.
|
|
34
|
-
|
|
35
|
-
"peerDependencies": {
|
|
36
|
-
"vue": "^3.5.x",
|
|
37
|
-
"vue-router": "^4.6.x"
|
|
33
|
+
"@halo-dev/api-client": "2.23.0",
|
|
34
|
+
"@halo-dev/richtext-editor": "2.23.0"
|
|
38
35
|
},
|
|
39
36
|
"devDependencies": {
|
|
40
37
|
"dayjs": "^1.11.19",
|
|
41
38
|
"uuid": "^13.0.0"
|
|
42
39
|
},
|
|
40
|
+
"peerDependencies": {
|
|
41
|
+
"vue": "^3.5.x",
|
|
42
|
+
"vue-router": "^5.0.x"
|
|
43
|
+
},
|
|
44
|
+
"inlinedDependencies": {
|
|
45
|
+
"mitt": "3.0.1",
|
|
46
|
+
"dayjs": "1.11.19",
|
|
47
|
+
"uuid": "13.0.0"
|
|
48
|
+
},
|
|
43
49
|
"scripts": {
|
|
44
50
|
"build": "tsdown",
|
|
45
51
|
"dev": "tsdown --watch",
|