127 lines
5.0 KiB
JavaScript
127 lines
5.0 KiB
JavaScript
var __create = Object.create;
|
|
var __defProp = Object.defineProperty;
|
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
var __getProtoOf = Object.getPrototypeOf;
|
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
var __export = (target, all) => {
|
|
for (var name in all)
|
|
__defProp(target, name, { get: all[name], enumerable: true });
|
|
};
|
|
var __copyProps = (to, from, except, desc) => {
|
|
if (from && typeof from === "object" || typeof from === "function") {
|
|
for (let key of __getOwnPropNames(from))
|
|
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
}
|
|
return to;
|
|
};
|
|
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
// If the importer is in node compatibility mode or this is not an ESM
|
|
// file that has been converted to a CommonJS file using a Babel-
|
|
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
mod
|
|
));
|
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
|
|
// src/BigImagePreview/components/ScreenhotButtons/index.tsx
|
|
var ScreenhotButtons_exports = {};
|
|
__export(ScreenhotButtons_exports, {
|
|
default: () => ScreenhotButtons_default
|
|
});
|
|
module.exports = __toCommonJS(ScreenhotButtons_exports);
|
|
var import_react = __toESM(require("react"));
|
|
var import_antd = require("antd");
|
|
var import_classnames = __toESM(require("classnames"));
|
|
var import_BigImageModal = require("@zhst/types/BigImageModal");
|
|
var import_index = require("./index.less");
|
|
var componentName = "bigImageWrapper--v2";
|
|
var getScreenshotButtonRender = (arg) => {
|
|
const { disableBtn = [], onBigImageActionClick } = arg;
|
|
return (param) => {
|
|
const { getCropInfo, setShowCrop, cropType, selectAlgorithmVersion } = param;
|
|
let isAuto = cropType === "AUTO";
|
|
return /* @__PURE__ */ import_react.default.createElement(
|
|
"div",
|
|
{
|
|
className: (0, import_classnames.default)(`${componentName}__screenshot`),
|
|
style: {
|
|
zIndex: 100,
|
|
position: "absolute",
|
|
width: "86px"
|
|
}
|
|
},
|
|
!disableBtn.includes(import_BigImageModal.IBigImageOpt["ADD_HISTORY_WITH_CROP"]) && isAuto && /* @__PURE__ */ import_react.default.createElement(
|
|
import_antd.Button,
|
|
{
|
|
type: "text",
|
|
onClick: async (e) => {
|
|
e.stopPropagation();
|
|
const image = await getCropInfo();
|
|
setShowCrop(false);
|
|
onBigImageActionClick(import_BigImageModal.IBigImageOpt["ADD_HISTORY_WITH_CROP"], image);
|
|
}
|
|
},
|
|
"目标检索"
|
|
),
|
|
!disableBtn.includes(import_BigImageModal.IBigImageOpt["ADD_HISTORY_WITH_CROP_BODY"]) && !isAuto && /* @__PURE__ */ import_react.default.createElement(
|
|
import_antd.Button,
|
|
{
|
|
type: "text",
|
|
onClick: async (e) => {
|
|
e.stopPropagation();
|
|
const image = await getCropInfo();
|
|
setShowCrop(false);
|
|
onBigImageActionClick(import_BigImageModal.IBigImageOpt["ADD_HISTORY_WITH_CROP_BODY"], image);
|
|
}
|
|
},
|
|
"搜形体"
|
|
),
|
|
!disableBtn.includes(import_BigImageModal.IBigImageOpt["ADD_HISTORY_WITH_CROP_VEHICLE"]) && !isAuto && /* @__PURE__ */ import_react.default.createElement(
|
|
import_antd.Button,
|
|
{
|
|
type: "text",
|
|
onClick: async (e) => {
|
|
e.stopPropagation();
|
|
const image = await getCropInfo();
|
|
setShowCrop(false);
|
|
onBigImageActionClick(import_BigImageModal.IBigImageOpt["ADD_HISTORY_WITH_CROP_VEHICLE"], image);
|
|
}
|
|
},
|
|
"搜非机动车"
|
|
),
|
|
!disableBtn.includes(import_BigImageModal.IBigImageOpt["ADD_HISTORY_WITH_CROP_ARCHIVE"]) && selectAlgorithmVersion !== 0 && /* @__PURE__ */ import_react.default.createElement(
|
|
import_antd.Button,
|
|
{
|
|
type: "text",
|
|
onClick: (e) => {
|
|
e.stopPropagation();
|
|
let image = getCropInfo();
|
|
setShowCrop(false);
|
|
if (!image.rectList[0].algorithmVersion) {
|
|
image.rectList[0].algorithmVersion = 0;
|
|
image.extendRectList[0].algorithmVersion = 0;
|
|
}
|
|
onBigImageActionClick(import_BigImageModal.IBigImageOpt["ADD_HISTORY_WITH_CROP_ARCHIVE"], image);
|
|
}
|
|
},
|
|
"档案检索"
|
|
),
|
|
/* @__PURE__ */ import_react.default.createElement(
|
|
import_antd.Button,
|
|
{
|
|
type: "text",
|
|
onClick: (e) => {
|
|
e.stopPropagation();
|
|
setShowCrop(false);
|
|
}
|
|
},
|
|
"退出框选"
|
|
)
|
|
);
|
|
};
|
|
};
|
|
var ScreenhotButtons_default = getScreenshotButtonRender;
|