Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Léo-Paul Géneau
gitlab-ce
Commits
a0f7ee43
Commit
a0f7ee43
authored
May 16, 2017
by
Filipa Lacerda
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'issue-edit-inline-title-field' into 'issue-edit-inline'
Issue inline edit title field See merge request !11331
parents
47881254
64e159ad
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
150 additions
and
42 deletions
+150
-42
app/assets/javascripts/issue_show/components/app.vue
app/assets/javascripts/issue_show/components/app.vue
+37
-20
app/assets/javascripts/issue_show/components/fields/title.vue
...assets/javascripts/issue_show/components/fields/title.vue
+27
-0
app/assets/javascripts/issue_show/components/form.vue
app/assets/javascripts/issue_show/components/form.vue
+30
-0
app/assets/javascripts/issue_show/index.js
app/assets/javascripts/issue_show/index.js
+0
-18
app/assets/javascripts/issue_show/stores/index.js
app/assets/javascripts/issue_show/stores/index.js
+3
-1
spec/javascripts/issue_show/components/app_spec.js
spec/javascripts/issue_show/components/app_spec.js
+12
-0
spec/javascripts/issue_show/components/fields/title_spec.js
spec/javascripts/issue_show/components/fields/title_spec.js
+30
-0
spec/javascripts/issue_show/components/title_spec.js
spec/javascripts/issue_show/components/title_spec.js
+11
-3
No files found.
app/assets/javascripts/issue_show/components/app.vue
View file @
a0f7ee43
...
...
@@ -7,7 +7,7 @@ import Service from '../services/index';
import
Store
from
'
../stores
'
;
import
titleComponent
from
'
./title.vue
'
;
import
descriptionComponent
from
'
./description.vue
'
;
import
editActions
from
'
./edit_actions
.vue
'
;
import
formComponent
from
'
./form
.vue
'
;
export
default
{
props
:
{
...
...
@@ -41,10 +41,6 @@ export default {
required
:
false
,
default
:
''
,
},
showForm
:
{
type
:
Boolean
,
required
:
true
,
},
},
data
()
{
const
store
=
new
Store
({
...
...
@@ -56,17 +52,31 @@ export default {
return
{
store
,
state
:
store
.
state
,
formState
:
store
.
formStat
e
,
showForm
:
fals
e
,
};
},
computed
:
{
formState
()
{
return
this
.
store
.
formState
;
},
},
components
:
{
descriptionComponent
,
titleComponent
,
editActions
,
formComponent
,
},
methods
:
{
openForm
()
{
this
.
showForm
=
true
;
this
.
store
.
formState
=
{
title
:
this
.
state
.
titleText
,
};
},
closeForm
()
{
this
.
showForm
=
false
;
},
updateIssuable
()
{
this
.
service
.
updateIssuable
(
this
.
formState
)
this
.
service
.
updateIssuable
(
this
.
store
.
formState
)
.
then
(()
=>
{
eventHub
.
$emit
(
'
close.form
'
);
})
...
...
@@ -117,16 +127,25 @@ export default {
eventHub
.
$on
(
'
delete.issuable
'
,
this
.
deleteIssuable
);
eventHub
.
$on
(
'
update.issuable
'
,
this
.
updateIssuable
);
eventHub
.
$on
(
'
close.form
'
,
this
.
closeForm
);
eventHub
.
$on
(
'
open.form
'
,
this
.
openForm
);
},
beforeDestroy
()
{
eventHub
.
$off
(
'
delete.issuable
'
,
this
.
deleteIssuable
);
eventHub
.
$off
(
'
update.issuable
'
,
this
.
updateIssuable
);
eventHub
.
$off
(
'
close.form
'
,
this
.
closeForm
);
eventHub
.
$off
(
'
open.form
'
,
this
.
openForm
);
},
};
</
script
>
<
template
>
<div>
<form-component
v-if=
"canUpdate && showForm"
:form-state=
"formState"
:can-destroy=
"canDestroy"
/>
<div
v-else
>
<title-component
:issuable-ref=
"issuableRef"
:title-html=
"state.titleHtml"
...
...
@@ -138,8 +157,6 @@ export default {
:description-text=
"state.descriptionText"
:updated-at=
"state.updatedAt"
:task-status=
"state.taskStatus"
/>
<edit-actions
v-if=
"canUpdate && showForm"
:can-destroy=
"canDestroy"
/>
</div>
</div>
</
template
>
app/assets/javascripts/issue_show/components/fields/title.vue
0 → 100644
View file @
a0f7ee43
<
script
>
export
default
{
props
:
{
formState
:
{
type
:
Object
,
required
:
true
,
},
},
};
</
script
>
<
template
>
<fieldset>
<label
class=
"sr-only"
for=
"issue-title"
>
Title
</label>
<input
id=
"issue-title"
class=
"form-control"
type=
"text"
placeholder=
"Issue title"
aria-label=
"Issue title"
v-model=
"formState.title"
/>
</fieldset>
</
template
>
app/assets/javascripts/issue_show/components/form.vue
0 → 100644
View file @
a0f7ee43
<
script
>
import
titleField
from
'
./fields/title.vue
'
;
import
editActions
from
'
./edit_actions.vue
'
;
export
default
{
props
:
{
canDestroy
:
{
type
:
Boolean
,
required
:
true
,
},
formState
:
{
type
:
Object
,
required
:
true
,
},
},
components
:
{
titleField
,
editActions
,
},
};
</
script
>
<
template
>
<form>
<title-field
:form-state=
"formState"
/>
<edit-actions
:can-destroy=
"canDestroy"
/>
</form>
</
template
>
app/assets/javascripts/issue_show/index.js
View file @
a0f7ee43
...
...
@@ -35,25 +35,8 @@ document.addEventListener('DOMContentLoaded', () => {
initialTitle
:
issuableTitleElement
.
innerHTML
,
initialDescriptionHtml
:
issuableDescriptionElement
?
issuableDescriptionElement
.
innerHTML
:
''
,
initialDescriptionText
:
issuableDescriptionTextarea
?
issuableDescriptionTextarea
.
textContent
:
''
,
showForm
:
false
,
};
},
methods
:
{
openForm
()
{
this
.
showForm
=
true
;
},
closeForm
()
{
this
.
showForm
=
false
;
},
},
created
()
{
eventHub
.
$on
(
'
open.form
'
,
this
.
openForm
);
eventHub
.
$on
(
'
close.form
'
,
this
.
closeForm
);
},
beforeDestroy
()
{
eventHub
.
$off
(
'
open.form
'
,
this
.
openForm
);
eventHub
.
$off
(
'
close.form
'
,
this
.
closeForm
);
},
render
(
createElement
)
{
return
createElement
(
'
issuable-app
'
,
{
props
:
{
...
...
@@ -64,7 +47,6 @@ document.addEventListener('DOMContentLoaded', () => {
initialTitle
:
this
.
initialTitle
,
initialDescriptionHtml
:
this
.
initialDescriptionHtml
,
initialDescriptionText
:
this
.
initialDescriptionText
,
showForm
:
this
.
showForm
,
},
});
},
...
...
app/assets/javascripts/issue_show/stores/index.js
View file @
a0f7ee43
...
...
@@ -12,7 +12,9 @@ export default class Store {
taskStatus
:
''
,
updatedAt
:
''
,
};
this
.
formState
=
{};
this
.
formState
=
{
title
:
''
,
};
}
updateState
(
data
)
{
...
...
spec/javascripts/issue_show/components/app_spec.js
View file @
a0f7ee43
...
...
@@ -75,6 +75,18 @@ describe('Issuable output', () => {
});
});
it
(
'
changes element for `form` when open
'
,
(
done
)
=>
{
vm
.
showForm
=
true
;
Vue
.
nextTick
(()
=>
{
expect
(
vm
.
$el
.
tagName
,
).
toBe
(
'
FORM
'
);
done
();
});
});
it
(
'
does not show actions if permissions are incorrect
'
,
(
done
)
=>
{
vm
.
showForm
=
true
;
vm
.
canUpdate
=
false
;
...
...
spec/javascripts/issue_show/components/fields/title_spec.js
0 → 100644
View file @
a0f7ee43
import
Vue
from
'
vue
'
;
import
Store
from
'
~/issue_show/stores
'
;
import
titleField
from
'
~/issue_show/components/fields/title.vue
'
;
describe
(
'
Title field component
'
,
()
=>
{
let
vm
;
let
store
;
beforeEach
(()
=>
{
const
Component
=
Vue
.
extend
(
titleField
);
store
=
new
Store
({
titleHtml
:
''
,
descriptionHtml
:
''
,
issuableRef
:
''
,
});
store
.
formState
.
title
=
'
test
'
;
vm
=
new
Component
({
propsData
:
{
formState
:
store
.
formState
,
},
}).
$mount
();
});
it
(
'
renders form control with formState title
'
,
()
=>
{
expect
(
vm
.
$el
.
querySelector
(
'
.form-control
'
).
value
,
).
toBe
(
'
test
'
);
});
});
spec/javascripts/issue_show/components/title_spec.js
View file @
a0f7ee43
import
Vue
from
'
vue
'
;
import
Store
from
'
~/issue_show/stores
'
;
import
titleComponent
from
'
~/issue_show/components/title.vue
'
;
describe
(
'
Title component
'
,
()
=>
{
...
...
@@ -6,18 +7,25 @@ describe('Title component', () => {
beforeEach
(()
=>
{
const
Component
=
Vue
.
extend
(
titleComponent
);
const
store
=
new
Store
({
titleHtml
:
''
,
descriptionHtml
:
''
,
issuableRef
:
''
,
});
vm
=
new
Component
({
propsData
:
{
issuableRef
:
'
#1
'
,
titleHtml
:
'
Testing <img />
'
,
titleText
:
'
Testing
'
,
showForm
:
false
,
formState
:
store
.
formState
,
},
}).
$mount
();
});
it
(
'
renders title HTML
'
,
()
=>
{
expect
(
vm
.
$el
.
innerHTML
.
trim
(),
vm
.
$el
.
querySelector
(
'
h2
'
).
innerHTML
.
trim
(),
).
toBe
(
'
Testing <img>
'
);
});
...
...
@@ -39,12 +47,12 @@ describe('Title component', () => {
Vue
.
nextTick
(()
=>
{
expect
(
vm
.
$el
.
classList
.
contains
(
'
issue-realtime-pre-pulse
'
),
vm
.
$el
.
querySelector
(
'
h2
'
).
classList
.
contains
(
'
issue-realtime-pre-pulse
'
),
).
toBeTruthy
();
setTimeout
(()
=>
{
expect
(
vm
.
$el
.
classList
.
contains
(
'
issue-realtime-trigger-pulse
'
),
vm
.
$el
.
querySelector
(
'
h2
'
).
classList
.
contains
(
'
issue-realtime-trigger-pulse
'
),
).
toBeTruthy
();
done
();
...
...
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