Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
S
stable-diffusion-webui
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
stable-diffusion-webui
Commits
0e5527b4
Unverified
Commit
0e5527b4
authored
Sep 17, 2022
by
DepFA
Committed by
GitHub
Sep 17, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add previous and next to modal with key shortcuts
parent
fb668c58
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
59 additions
and
19 deletions
+59
-19
script.js
script.js
+59
-19
No files found.
script.js
View file @
0e5527b4
...
@@ -83,35 +83,53 @@ function closeModal() {
...
@@ -83,35 +83,53 @@ function closeModal() {
function
showModal
(
event
)
{
function
showModal
(
event
)
{
var
source
=
event
.
target
||
event
.
srcElement
;
var
source
=
event
.
target
||
event
.
srcElement
;
gradioApp
().
getElementById
(
"modalImage"
).
src
=
source
.
src
gradioApp
().
getElementById
(
"modalImage"
).
src
=
source
.
src
gradioApp
().
getElementById
(
"lightboxModal"
).
style
.
display
=
"block"
;
var
lb
=
gradioApp
().
getElementById
(
"lightboxModal"
)
lb
.
style
.
display
=
"block"
;
lb
.
focus
()
event
.
stopPropagation
()
event
.
stopPropagation
()
}
}
function
negmod
(
n
,
m
)
{
return
((
n
%
m
)
+
m
)
%
m
;
}
function
modalImageSwitch
(
offset
){
var
galleryButtons
=
gradioApp
().
querySelectorAll
(
".gallery-item.transition-all"
)
function
showGalleryImage
(){
if
(
galleryButtons
.
length
>
1
){
setTimeout
(
function
()
{
var
currentButton
=
gradioApp
().
querySelector
(
".gallery-item.transition-all.
\\
!ring-2"
)
fullImg_preview
=
gradioApp
().
querySelectorAll
(
'img.w-full.object-contain'
)
if
(
fullImg_preview
!=
null
){
fullImg_preview
.
forEach
(
function
function_name
(
e
)
{
if
(
e
&&
e
.
parentElement
.
tagName
==
'DIV'
){
e
.
style
.
cursor
=
'pointer'
var
result
=
-
1
galleryButtons
.
forEach
(
function
(
v
,
i
){
if
(
v
==
currentButton
)
{
result
=
i
}
})
e
.
addEventListener
(
'click'
,
function
(
evt
)
{
if
(
result
!=
-
1
){
showModal
(
evt
)
nextButton
=
galleryButtons
[
negmod
((
result
+
offset
),
galleryButtons
.
length
)]
nextButton
.
click
()
gradioApp
().
getElementById
(
"modalImage"
).
src
=
nextButton
.
children
[
0
].
src
setTimeout
(
function
(){
gradioApp
().
getElementById
(
"lightboxModal"
).
focus
()},
10
)
}
}
},
true
);
}
}
});
}
},
100
);
function
modalNextImage
(
event
){
modalImageSwitch
(
1
)
event
.
stopPropagation
()
}
}
function
galleryImageHandler
(
e
){
function
modalPrevImage
(
event
){
if
(
e
&&
e
.
parentElement
.
tagName
==
'BUTTON'
){
modalImageSwitch
(
-
1
)
e
.
onclick
=
showGalleryImage
;
event
.
stopPropagation
()
}
function
modalKeyHandler
(
event
){
switch
(
event
.
key
)
{
case
"ArrowLeft"
:
modalPrevImage
(
event
)
break
;
case
"ArrowRight"
:
modalNextImage
(
event
)
break
;
}
}
}
}
...
@@ -185,13 +203,35 @@ document.addEventListener("DOMContentLoaded", function() {
...
@@ -185,13 +203,35 @@ document.addEventListener("DOMContentLoaded", function() {
modalClose
.
innerHTML
=
'×'
modalClose
.
innerHTML
=
'×'
modalClose
.
onclick
=
closeModal
;
modalClose
.
onclick
=
closeModal
;
modal
.
id
=
"lightboxModal"
;
modal
.
id
=
"lightboxModal"
;
modal
.
tabIndex
=
0
modal
.
addEventListener
(
'keydown'
,
modalKeyHandler
,
true
)
modal
.
appendChild
(
modalClose
)
modal
.
appendChild
(
modalClose
)
const
modalImage
=
document
.
createElement
(
'img'
)
const
modalImage
=
document
.
createElement
(
'img'
)
modalImage
.
id
=
'modalImage'
;
modalImage
.
id
=
'modalImage'
;
modalImage
.
onclick
=
closeModal
;
modalImage
.
onclick
=
closeModal
;
modalImage
.
tabIndex
=
0
modalImage
.
addEventListener
(
'keydown'
,
modalKeyHandler
,
true
)
modal
.
appendChild
(
modalImage
)
modal
.
appendChild
(
modalImage
)
const
modalPrev
=
document
.
createElement
(
'a'
)
modalPrev
.
className
=
'modalPrev'
;
modalPrev
.
innerHTML
=
'❮'
modalPrev
.
tabIndex
=
0
modalPrev
.
addEventListener
(
'click'
,
modalPrevImage
,
true
);
modalPrev
.
addEventListener
(
'keydown'
,
modalKeyHandler
,
true
)
modal
.
appendChild
(
modalPrev
)
const
modalNext
=
document
.
createElement
(
'a'
)
modalNext
.
className
=
'modalNext'
;
modalNext
.
innerHTML
=
'❯'
modalNext
.
tabIndex
=
0
modalNext
.
addEventListener
(
'click'
,
modalNextImage
,
true
);
modalNext
.
addEventListener
(
'keydown'
,
modalKeyHandler
,
true
)
modal
.
appendChild
(
modalNext
)
gradioApp
().
getRootNode
().
appendChild
(
modal
)
gradioApp
().
getRootNode
().
appendChild
(
modal
)
document
.
body
.
appendChild
(
modalFragment
);
document
.
body
.
appendChild
(
modalFragment
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment