@kengic/core.react 0.0.1-beta.52 → 0.0.1-beta.54
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/kengic-core.react.js
CHANGED
|
@@ -66454,56 +66454,71 @@ function List(e, t) {
|
|
|
66454
66454
|
}
|
|
66455
66455
|
List.method = "GET";
|
|
66456
66456
|
List.url = "/workstation/workstation/list";
|
|
66457
|
-
function
|
|
66457
|
+
function useKg() {
|
|
66458
66458
|
const e = useIntl();
|
|
66459
66459
|
return {
|
|
66460
66460
|
/**
|
|
66461
|
-
*
|
|
66462
|
-
* <p>https://ant.design/components/modal#modalmethod</p>
|
|
66461
|
+
* 翻译.
|
|
66463
66462
|
*
|
|
66464
|
-
* @param
|
|
66463
|
+
* @param id 被翻译的数据.
|
|
66464
|
+
* @return 翻译后的数据.
|
|
66465
66465
|
*/
|
|
66466
|
-
|
|
66467
|
-
|
|
66468
|
-
const r = Modal.confirm({
|
|
66469
|
-
icon: /* @__PURE__ */ jsxRuntimeExports.jsx(Icon$2, { icon: "ant-design:exclamation-circle-outlined" }),
|
|
66470
|
-
title: e.formatMessage({ id: "kg.confirm" }),
|
|
66471
|
-
content: e.formatMessage({ id: "kg.confirmDelete" }),
|
|
66472
|
-
okText: e.formatMessage({ id: "kg.confirm" }),
|
|
66473
|
-
okButtonProps: {
|
|
66474
|
-
danger: !0,
|
|
66475
|
-
...t.okButtonProps ?? {}
|
|
66476
|
-
},
|
|
66477
|
-
cancelButtonProps: {
|
|
66478
|
-
// 通过设置样式, 隐藏取消按钮
|
|
66479
|
-
class: t.kgHideCancelButton === !0 ? "kg-invisible" : "",
|
|
66480
|
-
disabled: !1,
|
|
66481
|
-
...t.cancelButtonProps ?? {}
|
|
66482
|
-
},
|
|
66483
|
-
cancelText: e.formatMessage({ id: "kg.cancel" }),
|
|
66484
|
-
closable: !1,
|
|
66485
|
-
centered: !0,
|
|
66486
|
-
autoFocusButton: null,
|
|
66487
|
-
keyboard: !1,
|
|
66488
|
-
...t
|
|
66489
|
-
});
|
|
66490
|
-
return r.showLoading = () => {
|
|
66491
|
-
r.update((n) => {
|
|
66492
|
-
const a = cloneDeep(n);
|
|
66493
|
-
return a.okButtonProps.loading = !0, a.cancelButtonProps.disabled = !0, a;
|
|
66494
|
-
});
|
|
66495
|
-
}, r.hideLoading = () => {
|
|
66496
|
-
r.update((n) => {
|
|
66497
|
-
const a = cloneDeep(n);
|
|
66498
|
-
return a.okButtonProps.loading = !1, a.cancelButtonProps.disabled = !1, a;
|
|
66499
|
-
});
|
|
66500
|
-
}, r;
|
|
66466
|
+
t(t) {
|
|
66467
|
+
return e.formatMessage({ id: t });
|
|
66501
66468
|
}
|
|
66502
66469
|
};
|
|
66503
66470
|
}
|
|
66471
|
+
class KgUtil {
|
|
66472
|
+
/**
|
|
66473
|
+
* 确认弹窗.
|
|
66474
|
+
* 设置了多个属性的默认值, 简化使用.
|
|
66475
|
+
* https://www.antdv.com/components/modal
|
|
66476
|
+
* @param props
|
|
66477
|
+
*/
|
|
66478
|
+
static confirm(t) {
|
|
66479
|
+
const r = Modal.confirm({
|
|
66480
|
+
animation: !1,
|
|
66481
|
+
autoFocusButton: null,
|
|
66482
|
+
cancelButtonProps: {
|
|
66483
|
+
// 通过设置样式, 隐藏取消按钮
|
|
66484
|
+
className: t.kgHideCancelButton === !0 ? "kg-invisible" : "",
|
|
66485
|
+
disabled: !1,
|
|
66486
|
+
...t.cancelButtonProps ?? {}
|
|
66487
|
+
},
|
|
66488
|
+
cancelText: t.intl.formatMessage({ id: "kg.cancel" }),
|
|
66489
|
+
centered: !0,
|
|
66490
|
+
closable: !1,
|
|
66491
|
+
content: t.intl.formatMessage({ id: "kg.confirmDelete" }),
|
|
66492
|
+
icon: /* @__PURE__ */ jsxRuntimeExports.jsx(Icon$2, { icon: "ant-design:exclamation-circle-outlined" }),
|
|
66493
|
+
keyboard: !1,
|
|
66494
|
+
maskTransitionName: "",
|
|
66495
|
+
okButtonProps: {
|
|
66496
|
+
danger: !0,
|
|
66497
|
+
...t.okButtonProps ?? {}
|
|
66498
|
+
},
|
|
66499
|
+
okText: t.intl.formatMessage({ id: "kg.confirm" }),
|
|
66500
|
+
onCancel() {
|
|
66501
|
+
},
|
|
66502
|
+
title: t.intl.formatMessage({ id: "kg.confirm" }),
|
|
66503
|
+
transitionName: "",
|
|
66504
|
+
...t
|
|
66505
|
+
});
|
|
66506
|
+
return r.showLoading = () => {
|
|
66507
|
+
r.update((n) => {
|
|
66508
|
+
const a = cloneDeep(n);
|
|
66509
|
+
return a.okButtonProps.loading = !0, a.cancelButtonProps.disabled = !0, a;
|
|
66510
|
+
});
|
|
66511
|
+
}, r.hideLoading = () => {
|
|
66512
|
+
r.update((n) => {
|
|
66513
|
+
const a = cloneDeep(n);
|
|
66514
|
+
return a.okButtonProps.loading = !1, a.cancelButtonProps.disabled = !1, a;
|
|
66515
|
+
});
|
|
66516
|
+
}, r;
|
|
66517
|
+
}
|
|
66518
|
+
}
|
|
66504
66519
|
function KgWorkStationModal() {
|
|
66505
66520
|
var ia;
|
|
66506
|
-
const e = useID(), t = doKgWorkStation(e), r =
|
|
66521
|
+
const e = useID(), t = doKgWorkStation(e), r = useIntl(), n = useKg(), a = useReduxDispatch(), s = useReduxSelector(getIsVisible(e)), u = useReduxSelector(getIsOpen(e)), [g, C] = reactExports.useState([]), [w, D] = reactExports.useState([]), [G, ne] = reactExports.useState([]), oe = useReduxSelector(getWorkStation(e)), se = useReduxSelector(getWorkStationArea(e)), ue = ((ia = g.find((ca) => ca.devcod === w[0])) == null ? void 0 : ia.workstationAreas) ?? [], ae = {
|
|
66507
66522
|
hideSelectAll: !0,
|
|
66508
66523
|
onChange(ca) {
|
|
66509
66524
|
D(ca.length > 1 ? [ca[0]] : ca);
|
|
@@ -66536,13 +66551,14 @@ function KgWorkStationModal() {
|
|
|
66536
66551
|
}
|
|
66537
66552
|
function ta() {
|
|
66538
66553
|
const ca = () => {
|
|
66539
|
-
|
|
66554
|
+
a(setWorkStation({ id: e, workStation: g.find((sa) => sa.devcod === w[0]) ?? null })), a(setWorkStationArea({ id: e, workStationArea: ue.find((sa) => sa.wrkare === G[0]) ?? null }));
|
|
66540
66555
|
};
|
|
66541
|
-
s ? (w[0] !== (oe == null ? void 0 : oe.devcod) || G[0] !== (se == null ? void 0 : se.wrkare)) && (ca(),
|
|
66542
|
-
content:
|
|
66556
|
+
s ? (w[0] !== (oe == null ? void 0 : oe.devcod) || G[0] !== (se == null ? void 0 : se.wrkare)) && (ca(), KgUtil.confirm({
|
|
66557
|
+
content: r.formatMessage({ id: "KgWorkStation.reloadMessage" }),
|
|
66558
|
+
intl: r,
|
|
66543
66559
|
kgHideCancelButton: !0,
|
|
66544
66560
|
okButtonProps: { danger: !1 },
|
|
66545
|
-
okText: n.
|
|
66561
|
+
okText: n.t("kg.refresh"),
|
|
66546
66562
|
onOk: () => {
|
|
66547
66563
|
window.location.reload();
|
|
66548
66564
|
}
|
package/package.json
CHANGED
package/src/hook/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './kg
|
|
1
|
+
export * from './kg.hook.tsx';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './kg.util.tsx';
|
|
@@ -1,17 +1,22 @@
|
|
|
1
1
|
import { ModalFuncProps } from 'antd';
|
|
2
|
-
|
|
2
|
+
import { IntlShape } from 'react-intl';
|
|
3
|
+
/**
|
|
4
|
+
* 工具方法.
|
|
5
|
+
*/
|
|
6
|
+
export declare class KgUtil {
|
|
3
7
|
/**
|
|
4
|
-
*
|
|
5
|
-
*
|
|
6
|
-
*
|
|
8
|
+
* 确认弹窗.
|
|
9
|
+
* 设置了多个属性的默认值, 简化使用.
|
|
10
|
+
* https://www.antdv.com/components/modal
|
|
7
11
|
* @param props
|
|
8
12
|
*/
|
|
9
|
-
confirm(props: IKgVarButtonModalProperties): ModalFunc;
|
|
10
|
-
}
|
|
13
|
+
static confirm(props: IKgVarButtonModalProperties): ModalFunc;
|
|
14
|
+
}
|
|
11
15
|
/**
|
|
12
16
|
* 按钮确认弹窗的参数.
|
|
13
17
|
*/
|
|
14
18
|
export type IKgVarButtonModalProperties = ModalFuncProps & {
|
|
19
|
+
intl: IntlShape;
|
|
15
20
|
/** 是否隐藏取消按钮. */
|
|
16
21
|
kgHideCancelButton?: boolean;
|
|
17
22
|
};
|