Skip to content

Commit

Permalink
v.1.14.9
Browse files Browse the repository at this point in the history
[fix] scroll optimizations
  • Loading branch information
scarry1992 committed Apr 27, 2022
1 parent 950562d commit 3025d6e
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 7 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Changelog
All notable changes to this project will be documented in this file.
### [1.14.9] - 2021-04-27
[fix] scroll optimizations
### [1.14.8] - 2021-04-26
[feature] widgets router state save
[feature] extended bug-report link
Expand Down
10 changes: 5 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "toolbox",
"version": "1.14.8",
"version": "1.14.9",
"description": "Flespi ToolboX",
"productName": "ToolboX",
"capacitorId": "",
Expand Down
2 changes: 2 additions & 0 deletions src/components/intervals/DevicesMessages.vue
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
<script>
import { VirtualScrollList, devicesMessagesModule } from 'qvirtualscroll'
import Vue from 'vue'
import debounce from 'lodash/debounce'
import actions from '../../mixins/actions'
import { copyToClipboard } from 'quasar'
import EmptyPane from '../EmptyPane'
Expand Down Expand Up @@ -591,6 +592,7 @@ export default {
}
},
created () {
this.updateMessagesRoute = debounce(this.updateMessagesRoute, 500, { trailing: true })
this.init()
this.offlineHandler = Vue.connector.socket.on('offline', () => {
this.$store.commit(`${this.moduleName}/setOffline`)
Expand Down
2 changes: 2 additions & 0 deletions src/components/intervals/Index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
<script>
import { VirtualScrollList, intervalsModule } from 'qvirtualscroll'
import Vue from 'vue'
import debounce from 'lodash/debounce'
import { copyToClipboard } from 'quasar'
import MessagesListItem from './MessagesListItem.vue'
import EmptyPane from '../EmptyPane'
Expand Down Expand Up @@ -586,6 +587,7 @@ export default {
}
},
created () {
this.updateMessagesRoute = debounce(this.updateMessagesRoute, 500, { trailing: true })
this.init()
this.offlineHandler = Vue.connector.socket.on('offline', () => {
this.$store.commit(`${this.moduleName}/setOffline`)
Expand Down
2 changes: 2 additions & 0 deletions src/components/logs/Index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@

<script>
import { date, copyToClipboard } from 'quasar'
import debounce from 'lodash/debounce'
import { VirtualScrollList, logsModule } from 'qvirtualscroll'
import ItemMixin from './ItemMixin'
import Vue from 'vue'
Expand Down Expand Up @@ -607,6 +608,7 @@ export default {
}
},
created () {
this.updateMessagesRoute = debounce(this.updateMessagesRoute, 500, { trailing: true })
this.init()
this.offlineHandler = Vue.connector.socket.on('offline', () => {
this.$store.commit(`${this.moduleName}/setOffline`)
Expand Down
2 changes: 2 additions & 0 deletions src/components/messages/channels/Index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
import { VirtualScrollList, channelsMessagesModuleSerial } from 'qvirtualscroll'
import Vue from 'vue'
import { copyToClipboard } from 'quasar'
import debounce from 'lodash/debounce'
import MessagesListItem from './MessagesListItem.vue'
import EmptyPane from '../../EmptyPane'
import actions from '../../../mixins/actions'
Expand Down Expand Up @@ -593,6 +594,7 @@ export default {
}
},
created () {
this.updateMessagesRoute = debounce(this.updateMessagesRoute, 500, { trailing: true })
this.init()
this.offlineHandler = Vue.connector.socket.on('offline', () => {
this.$store.commit(`${this.moduleName}/setOffline`)
Expand Down
3 changes: 2 additions & 1 deletion src/components/messages/devices/Index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ import Vue from 'vue'
import { copyToClipboard } from 'quasar'
import EmptyPane from '../../EmptyPane'
import MessagesListItem from './MessagesListItem.vue'
import get from 'lodash/get'
import debounce from 'lodash/debounce'
import actions from '../../../mixins/actions'
import routerProcess from '../../../mixins/routerProcess'
import { ACTION_MODE_MULTI, ACTION_MODE_SINGLE } from '../../../config'
Expand Down Expand Up @@ -590,6 +590,7 @@ export default {
}
},
created () {
this.updateMessagesRoute = debounce(this.updateMessagesRoute, 500, { trailing: true })
this.init()
this.offlineHandler = Vue.connector.socket.on('offline', () => {
this.$store.commit(`${this.moduleName}/setOffline`)
Expand Down

0 comments on commit 3025d6e

Please sign in to comment.