Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
What Format
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Anton Sarukhanov
What Format
Commits
e5e5d787
Commit
e5e5d787
authored
5 years ago
by
Anton Sarukhanov
Browse files
Options
Downloads
Patches
Plain Diff
Add status indicator to clarify UI.
parent
eb200f95
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Pipeline
#115
passed with stage
Stage:
in 39 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
whatformat/static/script.js
+32
-2
32 additions, 2 deletions
whatformat/static/script.js
whatformat/templates/landing.html
+2
-0
2 additions, 0 deletions
whatformat/templates/landing.html
with
34 additions
and
2 deletions
whatformat/static/script.js
+
32
−
2
View file @
e5e5d787
...
...
@@ -5,17 +5,47 @@ function throttle(func, time) {
function
handle_date_change
(
e
)
{
async
function
_handle_date_change
()
{
var
response
=
await
fetch
(
'
/date?date=
'
+
encodeURIComponent
(
e
.
target
.
value
));
value
=
e
.
target
.
value
.
trim
()
if
(
value
===
''
)
{
_clear_all
();
return
;
}
if
(
e
.
target
.
dataset
.
last
===
value
)
{
return
;
}
_set_format
();
_set_format
();
_set_status
(
'
One second...
'
);
var
response
=
await
fetch
(
'
/date?date=
'
+
encodeURIComponent
(
value
));
var
response_json
=
await
response
.
json
();
format_strings
=
''
;
for
(
entry
in
response_json
)
{
format_strings
+=
'
<p>
'
+
response_json
[
entry
]
+
'
</p>
'
;
}
document
.
querySelector
(
'
#format
'
).
innerHTML
=
format_strings
;
if
(
format_strings
)
{
_set_format
(
format_strings
);
}
else
{
_set_status
(
'
Sorry, we couldn
\'
t interpret that.
'
);
}
e
.
target
.
dataset
.
last
=
value
;
}
throttle
((
e
)
=>
{
_handle_date_change
(
e
);
},
100
);
}
function
_clear_all
()
{
document
.
querySelector
(
'
#status
'
).
innerHTML
=
''
;
document
.
querySelector
(
'
#format
'
).
innerHTML
=
''
;
}
function
_set_format
(
formats_html
=
''
)
{
document
.
querySelector
(
'
#format
'
).
innerHTML
=
formats_html
;
_set_status
();
}
function
_set_status
(
status_html
=
''
)
{
document
.
querySelector
(
'
#status
'
).
innerHTML
=
status_html
;
}
var
date_input
=
document
.
querySelector
(
'
#date
'
);
date_input
.
addEventListener
(
'
focus
'
,
handle_date_change
,
false
);
date_input
.
addEventListener
(
'
change
'
,
handle_date_change
,
false
);
...
...
This diff is collapsed.
Click to expand it.
whatformat/templates/landing.html
+
2
−
0
View file @
e5e5d787
...
...
@@ -18,6 +18,8 @@
<form
id=
"detect-format"
><input
id=
"date"
name=
"date"
value=
"{{ date_string if date_string }}"
placeholder=
"Enter a date and/or time here."
autocomplete=
"off"
/></form>
<section
id=
"format"
>
</section>
<section
id=
"status"
>
</section>
</main>
<script
src=
"/static/script.js"
></script>
</body>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment