Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Agavgavi agavgavi/dashboard (without htmx) #631

Open
wants to merge 14 commits into
base: master
Choose a base branch
from

Conversation

mdipierro
Copy link
Contributor

No description provided.

Comment on lines 1 to 6
var app = Q.app();
var params = new URLSearchParams(window.location.search);
app.data.loading = 0;
app.data.app = params.get('app');
app.data.dbname = params.get('dbname');
app.data.tablename = params.get('tablename');
app.data.url = '/_dashboard/rest/{app}/{dbname}/{tablename}'.format(app.data);
app.data.filter = params.get('filter') || '';
app.data.order = params.get('order') || '';
app.start();
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I believe this whole file can be removed now that it isn't included anymore.

Comment on lines 285 to 295
grid.formatters_by_type["date"] = (
lambda value: value.strftime("%m/%d/%Y") if value else ""
)

grid.formatters_by_type["time"] = (
lambda value: value.strftime("%H:%M:%S") if value else ""
)

grid.formatters_by_type["datetime"] = (
lambda value: value.isoformat() if value else ""
)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These formatters were included to replace the javascript timezone based formatting that already exists in the Grid due to HTMX's issues with injecting Javascript. If we are going back to just normal HTML then I do believe that these are unecessary but I haven't tried it.

@mdipierro
Copy link
Contributor Author

mdipierro commented Sep 6, 2021 via email

@mdipierro
Copy link
Contributor Author

mdipierro commented Sep 6, 2021 via email

@agavgavi
Copy link
Contributor

agavgavi commented Sep 6, 2021

I am busy tonight sadly with family and unable to do so, my apologies.

@mdipierro
Copy link
Contributor Author

mdipierro commented Sep 6, 2021 via email

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants