@flexem/fc-gui 3.0.0-alpha.64 → 3.0.0-alpha.66
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/CHANGELOG.md +13 -1
- package/bundles/@flexem/fc-gui.umd.js +0 -6
- package/bundles/@flexem/fc-gui.umd.js.map +1 -1
- package/bundles/@flexem/fc-gui.umd.min.js +1 -1
- package/bundles/@flexem/fc-gui.umd.min.js.map +1 -1
- package/elements/air-quality/air-quality-element.d.ts +0 -1
- package/elements/air-quality/air-quality-element.js +0 -3
- package/elements/air-quality/air-quality-element.metadata.json +1 -1
- package/elements/weather/weater-element.d.ts +0 -1
- package/elements/weather/weater-element.js +0 -3
- package/elements/weather/weater-element.metadata.json +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -262,4 +262,16 @@
|
|
|
262
262
|
### Web端
|
|
263
263
|
#### Bug Fix
|
|
264
264
|
1. FLEXCLOUD-2487: 【线上问题】数据库连接池占满导致无响应的问题
|
|
265
|
-
- 天气元件和空气质量元件取数据时如果发现没有位置信息,会添加一个定时器再请求数据。但是定时器没有清理,现在给定时器加上了清理
|
|
265
|
+
- 天气元件和空气质量元件取数据时如果发现没有位置信息,会添加一个定时器再请求数据。但是定时器没有清理,现在给定时器加上了清理
|
|
266
|
+
|
|
267
|
+
## 3.0.0-alpha.65(2023-03-01)
|
|
268
|
+
### Web端
|
|
269
|
+
#### Bug Fix
|
|
270
|
+
1. FLEXCLOUD-2487: 【线上问题】数据库连接池占满导致无响应的问题
|
|
271
|
+
- 修改清除定时器的方法
|
|
272
|
+
|
|
273
|
+
## 3.0.0-alpha.66(2023-03-01)
|
|
274
|
+
### Web端
|
|
275
|
+
#### Bug Fix
|
|
276
|
+
1. FLEXCLOUD-2487: 【线上问题】数据库连接池占满导致无响应的问题
|
|
277
|
+
- 去掉没有位置信息时的定时器
|
|
@@ -39607,7 +39607,6 @@ class weater_element_WeatherElement extends conditional_display_element_Conditio
|
|
|
39607
39607
|
}
|
|
39608
39608
|
dispose() {
|
|
39609
39609
|
clearInterval(this.timer);
|
|
39610
|
-
clearInterval(this.gettingAddressTimer);
|
|
39611
39610
|
}
|
|
39612
39611
|
initWeatherInfo() {
|
|
39613
39612
|
this.clear();
|
|
@@ -39639,8 +39638,6 @@ class weater_element_WeatherElement extends conditional_display_element_Conditio
|
|
|
39639
39638
|
}
|
|
39640
39639
|
handleGettingAddress() {
|
|
39641
39640
|
this.handleUnusualCommon(this.localization.weatherNotAvailable);
|
|
39642
|
-
clearInterval(this.gettingAddressTimer);
|
|
39643
|
-
this.gettingAddressTimer = setTimeout(() => this.initWeatherInfo(), 1000 * 60);
|
|
39644
39641
|
}
|
|
39645
39642
|
handleNoAddress() {
|
|
39646
39643
|
this.handleUnusualCommon(this.localization.weatherNotAddress);
|
|
@@ -39846,7 +39843,6 @@ class air_quality_element_AirQualityElement extends conditional_display_element_
|
|
|
39846
39843
|
}
|
|
39847
39844
|
dispose() {
|
|
39848
39845
|
clearInterval(this.timer);
|
|
39849
|
-
clearInterval(this.gettingAddressTimer);
|
|
39850
39846
|
}
|
|
39851
39847
|
initAirQualityInfo() {
|
|
39852
39848
|
this.clear();
|
|
@@ -39898,8 +39894,6 @@ class air_quality_element_AirQualityElement extends conditional_display_element_
|
|
|
39898
39894
|
}
|
|
39899
39895
|
handleGettingAddress() {
|
|
39900
39896
|
this.handleUnusualCommon(this.localization.airQualityNotAvailable);
|
|
39901
|
-
clearInterval(this.gettingAddressTimer);
|
|
39902
|
-
this.gettingAddressTimer = setTimeout(() => this.initAirQualityInfo(), 1000 * 60);
|
|
39903
39897
|
}
|
|
39904
39898
|
handleNoAddress() {
|
|
39905
39899
|
this.handleUnusualCommon(this.localization.airQualityNotAddress);
|