@heycar/heycars-map 2.3.0-drag1 → 2.3.0-drag2

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.
@@ -1,5 +1,5 @@
1
1
  import { h } from "vue";
2
- import { B as BusinessRecomendPlaceMap } from "../chunks/BusinessRecomendPlaceMap.f16e3b67.js";
2
+ import { B as BusinessRecomendPlaceMap } from "../chunks/BusinessRecomendPlaceMap.81a4b640.js";
3
3
  import { useBusinessRecomendPlaceMap } from "../hooks-business/useBusinessRecomendPlaceMap.js";
4
4
  import { defineSetup } from "../types/helper.js";
5
5
  import { d as demo } from "../chunks/Demo.css.e921a2f6.js";
@@ -27,7 +27,7 @@ import "../GreenZone/GreenZone.js";
27
27
  import "../PassengerCircle/PassengerCircle.js";
28
28
  import "../PickupPoints/PickupPoints.js";
29
29
  import "./useCacheCenterPlace.js";
30
- import { B, f, D, E, R, c, a, e, b, d, Z } from "../../chunks/BusinessRecomendPlaceMap.f16e3b67.js";
30
+ import { B, f, D, E, R, c, a, e, b, d, Z } from "../../chunks/BusinessRecomendPlaceMap.81a4b640.js";
31
31
  export {
32
32
  B as BusinessRecomendPlaceMap,
33
33
  f as BusinessRecomendPlaceMapInner,
@@ -1,4 +1,4 @@
1
- import { B, f, D, E, R, c, a, e, b, d, Z } from "../../chunks/BusinessRecomendPlaceMap.f16e3b67.js";
1
+ import { B, f, D, E, R, c, a, e, b, d, Z } from "../../chunks/BusinessRecomendPlaceMap.81a4b640.js";
2
2
  export {
3
3
  B as BusinessRecomendPlaceMap,
4
4
  f as BusinessRecomendPlaceMapInner,
@@ -18,10 +18,10 @@ import { throwNoneManualAbortError, MANUAL_ABORT_MESSAGE } from "../../utils/Man
18
18
  import { watchPostEffectOnce, generateCreateElementV2PropsOn } from "../../utils/compare.js";
19
19
  import { equalAssign, isPlacesInclude } from "../../utils/helper.js";
20
20
  import { detectBrowserPlatform } from "../../utils/platform.js";
21
- import { place2point, isPlaceEqual, pipeOnlyLastEffect, isZoneEqual, geoPositionError2businessTimeout, pipeDefer } from "../../utils/transform.js";
21
+ import { place2point, isPlaceEqual, isZoneEqual, geoPositionError2businessTimeout, pipeDefer } from "../../utils/transform.js";
22
22
  import { toCoordinatePlaceType, toCoordinatePointType, toCoordinateRecommendZonePlacesType } from "../../utils/typeChecking.js";
23
23
  import { AbsoluteAddressBox } from "../AbsoluteAddressBox/AbsoluteAddressBox.js";
24
- import { E as EMPTY_PLACE, m as memoize, R as RECOMMEND_PLACE_DRAG_LIMIT, a as RECOMMEND_PLACE_LARGE_LIMIT, b as RECOMMEND_PLACE_ZONE_ICON_MIN, c as RECOMMEND_PLACE_ICON_ZOOM_MIN, d as RECOMMEND_PLACE_ZONE_TEXT_MIN, e as RECOMMEND_PLACE_TEXT_ZOOM_MIN, D as DEFAULT_ZOOM, Z as ZONE_FITVIEW_PANDING } from "../../chunks/BusinessRecomendPlaceMap.f16e3b67.js";
24
+ import { E as EMPTY_PLACE, m as memoize, R as RECOMMEND_PLACE_DRAG_LIMIT, a as RECOMMEND_PLACE_LARGE_LIMIT, b as RECOMMEND_PLACE_ZONE_ICON_MIN, c as RECOMMEND_PLACE_ICON_ZOOM_MIN, d as RECOMMEND_PLACE_ZONE_TEXT_MIN, e as RECOMMEND_PLACE_TEXT_ZOOM_MIN, D as DEFAULT_ZOOM, Z as ZONE_FITVIEW_PANDING } from "../../chunks/BusinessRecomendPlaceMap.81a4b640.js";
25
25
  import { DeviceOrientation } from "../DeviceOrientation/DeviceOrientation.js";
26
26
  import { GreenZone } from "../GreenZone/GreenZone.js";
27
27
  import { PassengerCircle } from "../PassengerCircle/PassengerCircle.js";
@@ -35,8 +35,8 @@ const BusinessReselectPlaceMapInner = defineSetup("BusinessReselectPlaceMapInner
35
35
  emptyTitle,
36
36
  queryingTitle,
37
37
  geoErrorOnceNotificationKey = `BusinessRecomendPlaceMap_${Date.now()}`,
38
- getAvailable,
39
- getRecomendPlace,
38
+ getAvailable: inputGetAvailable,
39
+ getRecomendPlace: inputGetRecomendPlace,
40
40
  mapContext,
41
41
  disableLocator,
42
42
  defaultPlace: inputDefaultPlace = {
@@ -53,8 +53,8 @@ const BusinessReselectPlaceMapInner = defineSetup("BusinessReselectPlaceMapInner
53
53
  coordinatifyValueOfOnChangeRecommendPlace,
54
54
  coordinatifyGeoPosition
55
55
  } = useMapCoordinatify();
56
- const pipedGetAvailable = getAvailable && pipeOnlyLastEffect((p) => getAvailable(coordinatifyPlace(p)));
57
- const pipedGetRecomendPlace = pipeOnlyLastEffect((p, context) => getRecomendPlace(coordinatifyPlace(p), context).then((r) => r && unCoordinatifyRecommendZonePlaces(toCoordinateRecommendZonePlacesType(r))));
56
+ const getAvailable = inputGetAvailable && ((p) => inputGetAvailable(coordinatifyPlace(p)));
57
+ const getRecomendPlace = (p, context) => inputGetRecomendPlace(coordinatifyPlace(p), context).then((r) => r && unCoordinatifyRecommendZonePlaces(toCoordinateRecommendZonePlacesType(r)));
58
58
  const {
59
59
  apiMapDistance
60
60
  } = useMapGeometry();
@@ -199,8 +199,8 @@ const BusinessReselectPlaceMapInner = defineSetup("BusinessReselectPlaceMapInner
199
199
  queryingPlaceName: queryingTitle,
200
200
  context: centerSource,
201
201
  signal: abortController.signal,
202
- getAvailable: pipedGetAvailable,
203
- getRecomendPlace: pipedGetRecomendPlace,
202
+ getAvailable,
203
+ getRecomendPlace,
204
204
  getLimit: (context) => {
205
205
  const source = context == null ? void 0 : context.source;
206
206
  switch (source) {
@@ -19,7 +19,7 @@ import { throwNoneManualAbortError, MANUAL_ABORT_MESSAGE } from "../utils/Manual
19
19
  import { watchPostEffectOnce, generateCreateElementV2PropsOn } from "../utils/compare.js";
20
20
  import { equalAssign, isPlacesInclude } from "../utils/helper.js";
21
21
  import { detectBrowserPlatform } from "../utils/platform.js";
22
- import { place2point, isPlaceEqual, pipeOnlyLastEffect, isZoneEqual, geoPositionError2businessTimeout, pipeDefer } from "../utils/transform.js";
22
+ import { place2point, isPlaceEqual, isZoneEqual, geoPositionError2businessTimeout, pipeDefer } from "../utils/transform.js";
23
23
  import { toCoordinatePointType, toCoordinateRecommendZonePlacesType, toCoordinatePlaceType } from "../utils/typeChecking.js";
24
24
  import { AbsoluteAddressBox } from "../business-components/AbsoluteAddressBox/AbsoluteAddressBox.js";
25
25
  import { DeviceOrientation } from "../business-components/DeviceOrientation/DeviceOrientation.js";
@@ -284,8 +284,8 @@ const BusinessRecomendPlaceMapInner = defineSetup("BusinessRecomendPlaceMapInner
284
284
  emptyTitle,
285
285
  queryingTitle,
286
286
  geoErrorOnceNotificationKey = `BusinessRecomendPlaceMap_${Date.now()}`,
287
- getAvailable,
288
- getRecomendPlace,
287
+ getAvailable: inputGetAvailable,
288
+ getRecomendPlace: inputGetRecomendPlace,
289
289
  mapContext
290
290
  } = props;
291
291
  const abortController = new AbortController();
@@ -298,8 +298,8 @@ const BusinessRecomendPlaceMapInner = defineSetup("BusinessRecomendPlaceMapInner
298
298
  coordinatifyValueOfOnChangeRecommendPlace,
299
299
  coordinatifyGeoPosition
300
300
  } = useMapCoordinatify();
301
- const pipedGetAvailable = getAvailable && pipeOnlyLastEffect((p) => getAvailable(coordinatifyPlace(p)));
302
- const pipedGetRecomendPlace = pipeOnlyLastEffect((p, context) => getRecomendPlace(coordinatifyPlace(p), context).then((r) => r && unCoordinatifyRecommendZonePlaces(toCoordinateRecommendZonePlacesType(r))));
301
+ const getAvailable = inputGetAvailable && ((p) => inputGetAvailable(coordinatifyPlace(p)));
302
+ const getRecomendPlace = (p, context) => inputGetRecomendPlace(coordinatifyPlace(p), context).then((r) => r && unCoordinatifyRecommendZonePlaces(toCoordinateRecommendZonePlacesType(r)));
303
303
  const {
304
304
  apiMapDistance
305
305
  } = useMapGeometry();
@@ -473,8 +473,8 @@ const BusinessRecomendPlaceMapInner = defineSetup("BusinessRecomendPlaceMapInner
473
473
  queryingPlaceName: queryingTitle,
474
474
  context: centerSource,
475
475
  signal: abortController.signal,
476
- getAvailable: pipedGetAvailable,
477
- getRecomendPlace: pipedGetRecomendPlace,
476
+ getAvailable,
477
+ getRecomendPlace,
478
478
  getLimit: (context) => {
479
479
  const source = context == null ? void 0 : context.source;
480
480
  switch (source) {
@@ -1,5 +1,5 @@
1
1
  import { reactive, ref, readonly } from "vue-demi";
2
- import { E as EMPTY_PLACE } from "../chunks/BusinessRecomendPlaceMap.f16e3b67.js";
2
+ import { E as EMPTY_PLACE } from "../chunks/BusinessRecomendPlaceMap.81a4b640.js";
3
3
  import { CenterPlaceStatus } from "../types/interface.js";
4
4
  import { proxyFunctionalProperty, assertAssingedBeforeUsed } from "../utils/helper.js";
5
5
  const useBusinessRecomendPlaceMap = () => {
package/dist/v2/index.js CHANGED
@@ -2,7 +2,7 @@ import "./utils/alipayPolyfill.js";
2
2
  import { AbsoluteAddressBox } from "./business-components/AbsoluteAddressBox/AbsoluteAddressBox.js";
3
3
  import { AddressBox } from "./business-components/AddressBox/AddressBox.js";
4
4
  import { BusinessQuotingMap } from "./business-components/BusinessQuotingMap/BusinessQuotingMap.js";
5
- import { B } from "./chunks/BusinessRecomendPlaceMap.f16e3b67.js";
5
+ import { B } from "./chunks/BusinessRecomendPlaceMap.81a4b640.js";
6
6
  import { BusinessReselectPlaceMap } from "./business-components/BusinessReselectPlaceMap/BusinessReselectPlaceMap.js";
7
7
  import { BusinessTaxiEndMap } from "./business-components/BusinessTaxiEndMap/BusinessTaxiEndMap.js";
8
8
  import { BusinessTaxiServiceMap } from "./business-components/BusinessTaxiServiceMap/BusinessTaxiServiceMap.js";
@@ -181,8 +181,13 @@ const createAbortableOneConcurrent = (creator, opt) => {
181
181
  if (isRunning)
182
182
  controller == null ? void 0 : controller.abort(MANUAL_ABORT_MESSAGE);
183
183
  isRunning = true;
184
- controller = new AbortController();
185
- const result = creator(controller.signal)(...args).finally(() => isRunning = false);
184
+ const ac = new AbortController();
185
+ controller = ac;
186
+ const result = creator(ac.signal)(...args).finally(() => {
187
+ if (ac.signal.aborted)
188
+ return;
189
+ isRunning = false;
190
+ });
186
191
  return (opt == null ? void 0 : opt.silent) ? result.catch(throwNoneManualAbortError) : result;
187
192
  };
188
193
  const abort = () => {
@@ -1,6 +1,6 @@
1
1
  const availableLogKeys = /* @__PURE__ */ new Set();
2
2
  const pkgName = "@heycar/heycars-map";
3
- const pkgVersion = "2.3.0-drag1";
3
+ const pkgVersion = "2.3.0-drag2";
4
4
  const isEnableLog = (name) => {
5
5
  const searchParam = new URLSearchParams(location.search);
6
6
  return searchParam.has(`log-${name}`);
@@ -1,5 +1,5 @@
1
1
  import { createVNode } from "vue";
2
- import { B as BusinessRecomendPlaceMap } from "../chunks/BusinessRecomendPlaceMap.dda27543.js";
2
+ import { B as BusinessRecomendPlaceMap } from "../chunks/BusinessRecomendPlaceMap.7133beea.js";
3
3
  import { useBusinessRecomendPlaceMap } from "../hooks-business/useBusinessRecomendPlaceMap.js";
4
4
  import { defineSetup } from "../types/helper.js";
5
5
  import { d as demo } from "../chunks/Demo.css.e921a2f6.js";
@@ -27,7 +27,7 @@ import "../GreenZone/GreenZone.js";
27
27
  import "../PassengerCircle/PassengerCircle.js";
28
28
  import "../PickupPoints/PickupPoints.js";
29
29
  import "./useCacheCenterPlace.js";
30
- import { B, f, D, E, R, c, a, e, b, d, Z } from "../../chunks/BusinessRecomendPlaceMap.dda27543.js";
30
+ import { B, f, D, E, R, c, a, e, b, d, Z } from "../../chunks/BusinessRecomendPlaceMap.7133beea.js";
31
31
  export {
32
32
  B as BusinessRecomendPlaceMap,
33
33
  f as BusinessRecomendPlaceMapInner,
@@ -1,4 +1,4 @@
1
- import { B, f, D, E, R, c, a, e, b, d, Z } from "../../chunks/BusinessRecomendPlaceMap.dda27543.js";
1
+ import { B, f, D, E, R, c, a, e, b, d, Z } from "../../chunks/BusinessRecomendPlaceMap.7133beea.js";
2
2
  export {
3
3
  B as BusinessRecomendPlaceMap,
4
4
  f as BusinessRecomendPlaceMapInner,
@@ -18,10 +18,10 @@ import { throwNoneManualAbortError, MANUAL_ABORT_MESSAGE } from "../../utils/Man
18
18
  import { watchPostEffectOnce, generateCreateElementV2PropsOn } from "../../utils/compare.js";
19
19
  import { equalAssign, isPlacesInclude } from "../../utils/helper.js";
20
20
  import { detectBrowserPlatform } from "../../utils/platform.js";
21
- import { place2point, isPlaceEqual, pipeOnlyLastEffect, isZoneEqual, geoPositionError2businessTimeout, pipeDefer } from "../../utils/transform.js";
21
+ import { place2point, isPlaceEqual, isZoneEqual, geoPositionError2businessTimeout, pipeDefer } from "../../utils/transform.js";
22
22
  import { toCoordinatePlaceType, toCoordinatePointType, toCoordinateRecommendZonePlacesType } from "../../utils/typeChecking.js";
23
23
  import { AbsoluteAddressBox } from "../AbsoluteAddressBox/AbsoluteAddressBox.js";
24
- import { E as EMPTY_PLACE, m as memoize, R as RECOMMEND_PLACE_DRAG_LIMIT, a as RECOMMEND_PLACE_LARGE_LIMIT, b as RECOMMEND_PLACE_ZONE_ICON_MIN, c as RECOMMEND_PLACE_ICON_ZOOM_MIN, d as RECOMMEND_PLACE_ZONE_TEXT_MIN, e as RECOMMEND_PLACE_TEXT_ZOOM_MIN, D as DEFAULT_ZOOM, Z as ZONE_FITVIEW_PANDING } from "../../chunks/BusinessRecomendPlaceMap.dda27543.js";
24
+ import { E as EMPTY_PLACE, m as memoize, R as RECOMMEND_PLACE_DRAG_LIMIT, a as RECOMMEND_PLACE_LARGE_LIMIT, b as RECOMMEND_PLACE_ZONE_ICON_MIN, c as RECOMMEND_PLACE_ICON_ZOOM_MIN, d as RECOMMEND_PLACE_ZONE_TEXT_MIN, e as RECOMMEND_PLACE_TEXT_ZOOM_MIN, D as DEFAULT_ZOOM, Z as ZONE_FITVIEW_PANDING } from "../../chunks/BusinessRecomendPlaceMap.7133beea.js";
25
25
  import { DeviceOrientation } from "../DeviceOrientation/DeviceOrientation.js";
26
26
  import { GreenZone } from "../GreenZone/GreenZone.js";
27
27
  import { PassengerCircle } from "../PassengerCircle/PassengerCircle.js";
@@ -35,8 +35,8 @@ const BusinessReselectPlaceMapInner = defineSetup("BusinessReselectPlaceMapInner
35
35
  emptyTitle,
36
36
  queryingTitle,
37
37
  geoErrorOnceNotificationKey = `BusinessRecomendPlaceMap_${Date.now()}`,
38
- getAvailable,
39
- getRecomendPlace,
38
+ getAvailable: inputGetAvailable,
39
+ getRecomendPlace: inputGetRecomendPlace,
40
40
  mapContext,
41
41
  disableLocator,
42
42
  defaultPlace: inputDefaultPlace = {
@@ -53,8 +53,8 @@ const BusinessReselectPlaceMapInner = defineSetup("BusinessReselectPlaceMapInner
53
53
  coordinatifyValueOfOnChangeRecommendPlace,
54
54
  coordinatifyGeoPosition
55
55
  } = useMapCoordinatify();
56
- const pipedGetAvailable = getAvailable && pipeOnlyLastEffect((p) => getAvailable(coordinatifyPlace(p)));
57
- const pipedGetRecomendPlace = pipeOnlyLastEffect((p, context) => getRecomendPlace(coordinatifyPlace(p), context).then((r) => r && unCoordinatifyRecommendZonePlaces(toCoordinateRecommendZonePlacesType(r))));
56
+ const getAvailable = inputGetAvailable && ((p) => inputGetAvailable(coordinatifyPlace(p)));
57
+ const getRecomendPlace = (p, context) => inputGetRecomendPlace(coordinatifyPlace(p), context).then((r) => r && unCoordinatifyRecommendZonePlaces(toCoordinateRecommendZonePlacesType(r)));
58
58
  const {
59
59
  apiMapDistance
60
60
  } = useMapGeometry();
@@ -199,8 +199,8 @@ const BusinessReselectPlaceMapInner = defineSetup("BusinessReselectPlaceMapInner
199
199
  queryingPlaceName: queryingTitle,
200
200
  context: centerSource,
201
201
  signal: abortController.signal,
202
- getAvailable: pipedGetAvailable,
203
- getRecomendPlace: pipedGetRecomendPlace,
202
+ getAvailable,
203
+ getRecomendPlace,
204
204
  getLimit: (context) => {
205
205
  const source = context == null ? void 0 : context.source;
206
206
  switch (source) {
@@ -19,7 +19,7 @@ import { throwNoneManualAbortError, MANUAL_ABORT_MESSAGE } from "../utils/Manual
19
19
  import { watchPostEffectOnce, generateCreateElementV2PropsOn } from "../utils/compare.js";
20
20
  import { equalAssign, isPlacesInclude } from "../utils/helper.js";
21
21
  import { detectBrowserPlatform } from "../utils/platform.js";
22
- import { place2point, isPlaceEqual, pipeOnlyLastEffect, isZoneEqual, geoPositionError2businessTimeout, pipeDefer } from "../utils/transform.js";
22
+ import { place2point, isPlaceEqual, isZoneEqual, geoPositionError2businessTimeout, pipeDefer } from "../utils/transform.js";
23
23
  import { toCoordinatePointType, toCoordinateRecommendZonePlacesType, toCoordinatePlaceType } from "../utils/typeChecking.js";
24
24
  import { AbsoluteAddressBox } from "../business-components/AbsoluteAddressBox/AbsoluteAddressBox.js";
25
25
  import { DeviceOrientation } from "../business-components/DeviceOrientation/DeviceOrientation.js";
@@ -284,8 +284,8 @@ const BusinessRecomendPlaceMapInner = defineSetup("BusinessRecomendPlaceMapInner
284
284
  emptyTitle,
285
285
  queryingTitle,
286
286
  geoErrorOnceNotificationKey = `BusinessRecomendPlaceMap_${Date.now()}`,
287
- getAvailable,
288
- getRecomendPlace,
287
+ getAvailable: inputGetAvailable,
288
+ getRecomendPlace: inputGetRecomendPlace,
289
289
  mapContext
290
290
  } = props;
291
291
  const abortController = new AbortController();
@@ -298,8 +298,8 @@ const BusinessRecomendPlaceMapInner = defineSetup("BusinessRecomendPlaceMapInner
298
298
  coordinatifyValueOfOnChangeRecommendPlace,
299
299
  coordinatifyGeoPosition
300
300
  } = useMapCoordinatify();
301
- const pipedGetAvailable = getAvailable && pipeOnlyLastEffect((p) => getAvailable(coordinatifyPlace(p)));
302
- const pipedGetRecomendPlace = pipeOnlyLastEffect((p, context) => getRecomendPlace(coordinatifyPlace(p), context).then((r) => r && unCoordinatifyRecommendZonePlaces(toCoordinateRecommendZonePlacesType(r))));
301
+ const getAvailable = inputGetAvailable && ((p) => inputGetAvailable(coordinatifyPlace(p)));
302
+ const getRecomendPlace = (p, context) => inputGetRecomendPlace(coordinatifyPlace(p), context).then((r) => r && unCoordinatifyRecommendZonePlaces(toCoordinateRecommendZonePlacesType(r)));
303
303
  const {
304
304
  apiMapDistance
305
305
  } = useMapGeometry();
@@ -473,8 +473,8 @@ const BusinessRecomendPlaceMapInner = defineSetup("BusinessRecomendPlaceMapInner
473
473
  queryingPlaceName: queryingTitle,
474
474
  context: centerSource,
475
475
  signal: abortController.signal,
476
- getAvailable: pipedGetAvailable,
477
- getRecomendPlace: pipedGetRecomendPlace,
476
+ getAvailable,
477
+ getRecomendPlace,
478
478
  getLimit: (context) => {
479
479
  const source = context == null ? void 0 : context.source;
480
480
  switch (source) {
@@ -1,5 +1,5 @@
1
1
  import { reactive, ref, readonly } from "vue-demi";
2
- import { E as EMPTY_PLACE } from "../chunks/BusinessRecomendPlaceMap.dda27543.js";
2
+ import { E as EMPTY_PLACE } from "../chunks/BusinessRecomendPlaceMap.7133beea.js";
3
3
  import { CenterPlaceStatus } from "../types/interface.js";
4
4
  import { proxyFunctionalProperty, assertAssingedBeforeUsed } from "../utils/helper.js";
5
5
  const useBusinessRecomendPlaceMap = () => {
package/dist/v3/index.js CHANGED
@@ -2,7 +2,7 @@ import "./utils/alipayPolyfill.js";
2
2
  import { AbsoluteAddressBox } from "./business-components/AbsoluteAddressBox/AbsoluteAddressBox.js";
3
3
  import { AddressBox } from "./business-components/AddressBox/AddressBox.js";
4
4
  import { BusinessQuotingMap } from "./business-components/BusinessQuotingMap/BusinessQuotingMap.js";
5
- import { B } from "./chunks/BusinessRecomendPlaceMap.dda27543.js";
5
+ import { B } from "./chunks/BusinessRecomendPlaceMap.7133beea.js";
6
6
  import { BusinessReselectPlaceMap } from "./business-components/BusinessReselectPlaceMap/BusinessReselectPlaceMap.js";
7
7
  import { BusinessTaxiEndMap } from "./business-components/BusinessTaxiEndMap/BusinessTaxiEndMap.js";
8
8
  import { BusinessTaxiServiceMap } from "./business-components/BusinessTaxiServiceMap/BusinessTaxiServiceMap.js";
@@ -181,8 +181,13 @@ const createAbortableOneConcurrent = (creator, opt) => {
181
181
  if (isRunning)
182
182
  controller == null ? void 0 : controller.abort(MANUAL_ABORT_MESSAGE);
183
183
  isRunning = true;
184
- controller = new AbortController();
185
- const result = creator(controller.signal)(...args).finally(() => isRunning = false);
184
+ const ac = new AbortController();
185
+ controller = ac;
186
+ const result = creator(ac.signal)(...args).finally(() => {
187
+ if (ac.signal.aborted)
188
+ return;
189
+ isRunning = false;
190
+ });
186
191
  return (opt == null ? void 0 : opt.silent) ? result.catch(throwNoneManualAbortError) : result;
187
192
  };
188
193
  const abort = () => {
@@ -1,6 +1,6 @@
1
1
  const availableLogKeys = /* @__PURE__ */ new Set();
2
2
  const pkgName = "@heycar/heycars-map";
3
- const pkgVersion = "2.3.0-drag1";
3
+ const pkgVersion = "2.3.0-drag2";
4
4
  const isEnableLog = (name) => {
5
5
  const searchParam = new URLSearchParams(location.search);
6
6
  return searchParam.has(`log-${name}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@heycar/heycars-map",
3
- "version": "2.3.0-drag1",
3
+ "version": "2.3.0-drag2",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "checkVersion": "./bin/checkVersion.js",