This commit is contained in:
2020-10-27 18:11:20 +00:00
parent 6389057138
commit 316f9ec7cf
2 changed files with 35 additions and 29 deletions

View File

@@ -6,15 +6,6 @@
todo: Lagging typing in name field on customize form for data grid filter
Try turning on full diagnostics and debugger break on any exception, see if it's just throwing constantly when typing
Try stripping out other UI elements to see if it's just too much stuff
Ask on https://github.com/vuetifyjs/vuetify/issues how to diagnose this lagging
todo: Extension UI being full screen is a bit odd, it's not clear how to exit at a glance or that you are in an extension
maybe try to shrink it to 90% of the full screen so that the grid shows around the background edges so it's clear it's overtop
improve Exit UI button so more prominent or in upper corner or something
DASHBOARD / KPI / BIZ METRICS
@@ -31,26 +22,6 @@ todo: DASHBOARD
I guess a wrapper over the graphs so they can be called directly during server render as well as from vuetify at client
ON HOLD
=-=-=-=-
todo: breaking change in latest vuetify with integer bound to v-text-field have kept this version awaiting fix, reported
https://github.com/vuetifyjs/vuetify/pull/12451
If not fixed in a timely manner can downgrade to the build before this one
todo: hide swagger logo and branding in api explorer
Is this really that important?
also, in the docs is a section specifically saying I should do something because I'm using newtonsoft json not microsoft built in
https://github.com/domaindrivendev/Swashbuckle.AspNetCore#systemtextjson-stj-vs-newtonsoft
https://github.com/domaindrivendev/Swashbuckle.AspNetCore
todo: service workers for monaco going in root of website folder, must be a config setting to move it into the proper place (not there)
couldn't find anything about it, may need to post to ask, it's not the end of the world but kind of stupid looking as all the rest of the js is in subfolder
https://github.com/microsoft/monaco-editor-webpack-plugin/issues/126
awaiting reply, if nothing by the time I get here then delete and wait for email notification or if I care enough again to bother with it (cosmetic)
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@ ROADMAP STAGE 5 - FINALIZE ALL NON BIZ OBJECT SPECIFIC FUNCTIONALITY
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@ -109,6 +80,40 @@ todo: clickable urls
(If get here and not doing it put it into a v.next case where appropriate or spec doc for future reference or just ditch it)
ON HOLD FROM EARLIER
=-=-=-=-=-=-=-=-=-=-=-
todo: breaking change in latest vuetify with integer bound to v-text-field have kept this version awaiting fix, reported
https://github.com/vuetifyjs/vuetify/pull/12451
If not fixed in a timely manner can downgrade to the build before this one
todo: ON HOLD TIL LATER Lagging typing in name field on customize form for data grid filter
Giving up on this for now, but noticed the following:
No exceptions or errors just regular processing
On a lighter grid with less columns it's much faster so the column count contributes majorly
If I remove the v-model binding from the name control it types fast so it's the recalc going on from the model change
TO TRY LATER:
More computed property usage (if any now) and less methods because functions run on every change wherease computed are not if not necessary
methods are going to be slower than computed properties theoretically
Pick through and replace function calls in UI with computed properties bit by bit and see what happens
Several collections bound to array in data object, is that array changing on typing text? Triggering something?
Should it be bound to a computed getter instead of directly to the data object?
todo: hide swagger logo and branding in api explorer
Is this really that important?
also, in the docs is a section specifically saying I should do something because I'm using newtonsoft json not microsoft built in
https://github.com/domaindrivendev/Swashbuckle.AspNetCore#systemtextjson-stj-vs-newtonsoft
https://github.com/domaindrivendev/Swashbuckle.AspNetCore
todo: service workers for monaco going in root of website folder, must be a config setting to move it into the proper place (not there)
couldn't find anything about it, may need to post to ask, it's not the end of the world but kind of stupid looking as all the rest of the js is in subfolder
https://github.com/microsoft/monaco-editor-webpack-plugin/issues/126
awaiting reply, if nothing by the time I get here then delete and wait for email notification or if I care enough again to bother with it (cosmetic)
todo: consider feature to set server to always use a pre-set browser locale settings and not the ones in the browse itself
Scenario is user in another country but needs to login and work with central server?
server - wide

View File

@@ -25,6 +25,7 @@
data-cy="name"
></v-text-field>
</v-col>
<v-col cols="12" sm="6" lg="4" xl="3">
<v-checkbox
v-model="obj.public"