Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Sharkey
Manage
Activity
Members
Labels
Plan
Issues
336
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
24
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
TransFem.org
Sharkey
Commits
b5e87a46
Unverified
Commit
b5e87a46
authored
4 years ago
by
MeiMei
Committed by
GitHub
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
アップロードプログレスバーが動かないのを修正 Fix #6306 (#6307)
parent
ddbdb94b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/client/components/uploader.vue
+14
-12
14 additions, 12 deletions
src/client/components/uploader.vue
with
14 additions
and
12 deletions
src/client/components/uploader.vue
+
14
−
12
View file @
b5e87a46
...
...
@@ -4,16 +4,16 @@
<li
v-for=
"ctx in uploads"
:key=
"ctx.id"
>
<div
class=
"img"
:style=
"
{ backgroundImage: `url(${ ctx.img })` }">
</div>
<div
class=
"top"
>
<p
class=
"name"
><fa
icon=
"
s
pinner"
pulse
/>
{{
ctx
.
name
}}
</p>
<p
class=
"name"
><fa
:
icon=
"
faS
pinner"
pulse
/>
{{
ctx
.
name
}}
</p>
<p
class=
"status"
>
<span
class=
"initing"
v-if=
"ctx.progress
== undefined"
>
{{
$t
(
'
waiting
'
)
}}
<mk-ellipsis/></span>
<span
class=
"kb"
v-if=
"ctx.progress != undefined"
>
{{
String
(
Math
.
floor
(
ctx
.
progress
.
v
alue
/
1024
)).
replace
(
/
(\d)(?=(\d\d\d)
+
(?!\d))
/g
,
'
$1,
'
)
}}
<i>
KB
</i>
/
{{
String
(
Math
.
floor
(
ctx
.
progress
.
m
ax
/
1024
)).
replace
(
/
(\d)(?=(\d\d\d)
+
(?!\d))
/g
,
'
$1,
'
)
}}
<i>
KB
</i></span>
<span
class=
"percentage"
v-if=
"ctx.progress != undefined"
>
{{
Math
.
floor
((
ctx
.
progress
.
v
alue
/
ctx
.
progress
.
m
ax
)
*
100
)
}}
</span>
<span
class=
"initing"
v-if=
"ctx.progress
Value =
== undefined"
>
{{
$t
(
'
waiting
'
)
}}
<mk-ellipsis/></span>
<span
class=
"kb"
v-if=
"ctx.progress
Value
!=
=
undefined"
>
{{
String
(
Math
.
floor
(
ctx
.
progress
V
alue
/
1024
)).
replace
(
/
(\d)(?=(\d\d\d)
+
(?!\d))
/g
,
'
$1,
'
)
}}
<i>
KB
</i>
/
{{
String
(
Math
.
floor
(
ctx
.
progress
M
ax
/
1024
)).
replace
(
/
(\d)(?=(\d\d\d)
+
(?!\d))
/g
,
'
$1,
'
)
}}
<i>
KB
</i></span>
<span
class=
"percentage"
v-if=
"ctx.progress
Value
!=
=
undefined"
>
{{
Math
.
floor
((
ctx
.
progress
V
alue
/
ctx
.
progress
M
ax
)
*
100
)
}}
</span>
</p>
</div>
<progress
v-if=
"ctx.progress != undefined && ctx.progress
.v
alue != ctx.progress
.m
ax"
:value=
"ctx.progress
.v
alue"
:max=
"ctx.progress
.m
ax"
></progress>
<div
class=
"progress initing"
v-if=
"ctx.progress
== undefined"
></div>
<div
class=
"progress waiting"
v-if=
"ctx.progress != undefined && ctx.progress
.v
alue == ctx.progress
.m
ax"
></div>
<progress
v-if=
"ctx.progress
Value
!=
=
undefined && ctx.progress
V
alue !=
=
ctx.progress
M
ax"
:value=
"ctx.progress
V
alue"
:max=
"ctx.progress
M
ax"
></progress>
<div
class=
"progress initing"
v-if=
"ctx.progress
Value =
== undefined"
></div>
<div
class=
"progress waiting"
v-if=
"ctx.progress
Value
!=
=
undefined && ctx.progress
V
alue ==
=
ctx.progress
M
ax"
></div>
</li>
</ol>
</div>
...
...
@@ -24,12 +24,14 @@ import Vue from 'vue';
import
i18n
from
'
../i18n
'
;
import
{
apiUrl
}
from
'
../config
'
;
//import getMD5 from '../../scripts/get-md5';
import
{
faSpinner
}
from
'
@fortawesome/free-solid-svg-icons
'
;
export
default
Vue
.
extend
({
i18n
,
data
()
{
return
{
uploads
:
[]
uploads
:
[],
faSpinner
};
},
methods
:
{
...
...
@@ -56,7 +58,8 @@ export default Vue.extend({
const
ctx
=
{
id
:
id
,
name
:
name
||
file
.
name
||
'
untitled
'
,
progress
:
undefined
,
progressMax
:
undefined
,
progressValue
:
undefined
,
img
:
window
.
URL
.
createObjectURL
(
file
)
};
...
...
@@ -84,9 +87,8 @@ export default Vue.extend({
xhr
.
upload
.
onprogress
=
e
=>
{
if
(
e
.
lengthComputable
)
{
if
(
ctx
.
progress
==
undefined
)
ctx
.
progress
=
{};
ctx
.
progress
.
max
=
e
.
total
;
ctx
.
progress
.
value
=
e
.
loaded
;
ctx
.
progressMax
=
e
.
total
;
ctx
.
progressValue
=
e
.
loaded
;
}
};
...
...
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