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
Boxiang Sun
gitlab-ce
Commits
b0c2772a
Commit
b0c2772a
authored
Oct 12, 2017
by
Mike Greiling
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
convert Autosave into pure es module and remove global export
parent
1e4b75ba
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
18 additions
and
25 deletions
+18
-25
app/assets/javascripts/autosave.js
app/assets/javascripts/autosave.js
+13
-18
app/assets/javascripts/issuable_form.js
app/assets/javascripts/issuable_form.js
+1
-1
app/assets/javascripts/notes.js
app/assets/javascripts/notes.js
+2
-2
app/assets/javascripts/notes/components/issue_comment_form.vue
...ssets/javascripts/notes/components/issue_comment_form.vue
+1
-2
app/assets/javascripts/notes/mixins/autosave.js
app/assets/javascripts/notes/mixins/autosave.js
+1
-2
No files found.
app/assets/javascripts/autosave.js
View file @
b0c2772a
/* eslint-disable func-names, space-before-function-paren, wrap-iife, no-param-reassign, quotes, prefer-template, no-var, one-var, no-unused-vars, one-var-declaration-per-line, no-void, consistent-return, no-empty, max-len */
/* eslint-disable no-param-reassign, prefer-template, no-var, no-void, consistent-return */
import
AccessorUtilities
from
'
./lib/utils/accessor
'
;
import
AccessorUtilities
from
'
./lib/utils/accessor
'
;
window
.
Autosave
=
(
function
()
{
export
default
class
Autosave
{
function
Autosave
(
field
,
key
,
resource
)
{
constructor
(
field
,
key
,
resource
)
{
this
.
field
=
field
;
this
.
field
=
field
;
this
.
isLocalStorageAvailable
=
AccessorUtilities
.
isLocalStorageAccessSafe
();
this
.
isLocalStorageAvailable
=
AccessorUtilities
.
isLocalStorageAccessSafe
();
this
.
resource
=
resource
;
this
.
resource
=
resource
;
...
@@ -12,14 +13,10 @@ window.Autosave = (function() {
...
@@ -12,14 +13,10 @@ window.Autosave = (function() {
this
.
key
=
'
autosave/
'
+
key
;
this
.
key
=
'
autosave/
'
+
key
;
this
.
field
.
data
(
'
autosave
'
,
this
);
this
.
field
.
data
(
'
autosave
'
,
this
);
this
.
restore
();
this
.
restore
();
this
.
field
.
on
(
'
input
'
,
(
function
(
_this
)
{
this
.
field
.
on
(
'
input
'
,
()
=>
this
.
save
());
return
function
()
{
return
_this
.
save
();
};
})(
this
));
}
}
Autosave
.
prototype
.
restore
=
function
()
{
restore
()
{
var
text
;
var
text
;
if
(
!
this
.
isLocalStorageAvailable
)
return
;
if
(
!
this
.
isLocalStorageAvailable
)
return
;
...
@@ -40,9 +37,9 @@ window.Autosave = (function() {
...
@@ -40,9 +37,9 @@ window.Autosave = (function() {
field
.
dispatchEvent
(
event
);
field
.
dispatchEvent
(
event
);
}
}
}
}
}
;
}
Autosave
.
prototype
.
save
=
function
()
{
save
()
{
var
text
;
var
text
;
text
=
this
.
field
.
val
();
text
=
this
.
field
.
val
();
...
@@ -51,15 +48,13 @@ window.Autosave = (function() {
...
@@ -51,15 +48,13 @@ window.Autosave = (function() {
}
}
return
this
.
reset
();
return
this
.
reset
();
}
;
}
Autosave
.
prototype
.
reset
=
function
()
{
reset
()
{
if
(
!
this
.
isLocalStorageAvailable
)
return
;
if
(
!
this
.
isLocalStorageAvailable
)
return
;
return
window
.
localStorage
.
removeItem
(
this
.
key
);
return
window
.
localStorage
.
removeItem
(
this
.
key
);
};
}
}
return
Autosave
;
})();
export
default
window
.
Autosave
;
window
.
Autosave
=
Autosave
;
app/assets/javascripts/issuable_form.js
View file @
b0c2772a
/* eslint-disable func-names, space-before-function-paren, no-var, prefer-rest-params, wrap-iife, no-use-before-define, no-useless-escape, no-new, quotes, object-shorthand, no-unused-vars, comma-dangle, no-alert, consistent-return, no-else-return, prefer-template, one-var, one-var-declaration-per-line, curly, max-len */
/* eslint-disable func-names, space-before-function-paren, no-var, prefer-rest-params, wrap-iife, no-use-before-define, no-useless-escape, no-new, quotes, object-shorthand, no-unused-vars, comma-dangle, no-alert, consistent-return, no-else-return, prefer-template, one-var, one-var-declaration-per-line, curly, max-len */
/* global GitLab */
/* global GitLab */
/* global Autosave */
/* global dateFormat */
/* global dateFormat */
import
Pikaday
from
'
pikaday
'
;
import
Pikaday
from
'
pikaday
'
;
import
Autosave
from
'
./autosave
'
;
import
UsersSelect
from
'
./users_select
'
;
import
UsersSelect
from
'
./users_select
'
;
import
GfmAutoComplete
from
'
./gfm_auto_complete
'
;
import
GfmAutoComplete
from
'
./gfm_auto_complete
'
;
import
ZenMode
from
'
./zen_mode
'
;
import
ZenMode
from
'
./zen_mode
'
;
...
...
app/assets/javascripts/notes.js
View file @
b0c2772a
...
@@ -5,7 +5,7 @@ default-case, prefer-template, consistent-return, no-alert, no-return-assign,
...
@@ -5,7 +5,7 @@ default-case, prefer-template, consistent-return, no-alert, no-return-assign,
no-param-reassign, prefer-arrow-callback, no-else-return, comma-dangle, no-new,
no-param-reassign, prefer-arrow-callback, no-else-return, comma-dangle, no-new,
brace-style, no-lonely-if, vars-on-top, no-unused-vars, no-sequences, no-shadow,
brace-style, no-lonely-if, vars-on-top, no-unused-vars, no-sequences, no-shadow,
newline-per-chained-call, no-useless-escape, class-methods-use-this */
newline-per-chained-call, no-useless-escape, class-methods-use-this */
/* global Autosave */
/* global ResolveService */
/* global ResolveService */
/* global mrRefreshWidgetUrl */
/* global mrRefreshWidgetUrl */
...
@@ -21,7 +21,7 @@ import Flash from './flash';
...
@@ -21,7 +21,7 @@ import Flash from './flash';
import
CommentTypeToggle
from
'
./comment_type_toggle
'
;
import
CommentTypeToggle
from
'
./comment_type_toggle
'
;
import
GLForm
from
'
./gl_form
'
;
import
GLForm
from
'
./gl_form
'
;
import
loadAwardsHandler
from
'
./awards_handler
'
;
import
loadAwardsHandler
from
'
./awards_handler
'
;
import
'
./autosave
'
;
import
Autosave
from
'
./autosave
'
;
import
'
./dropzone_input
'
;
import
'
./dropzone_input
'
;
import
TaskList
from
'
./task_list
'
;
import
TaskList
from
'
./task_list
'
;
import
{
ajaxPost
,
isInViewport
,
getPagePath
,
scrollToElement
,
isMetaKey
}
from
'
./lib/utils/common_utils
'
;
import
{
ajaxPost
,
isInViewport
,
getPagePath
,
scrollToElement
,
isMetaKey
}
from
'
./lib/utils/common_utils
'
;
...
...
app/assets/javascripts/notes/components/issue_comment_form.vue
View file @
b0c2772a
<
script
>
<
script
>
/* global Autosave */
import
{
mapActions
,
mapGetters
}
from
'
vuex
'
;
import
{
mapActions
,
mapGetters
}
from
'
vuex
'
;
import
_
from
'
underscore
'
;
import
_
from
'
underscore
'
;
import
autosize
from
'
vendor/autosize
'
;
import
autosize
from
'
vendor/autosize
'
;
import
Flash
from
'
../../flash
'
;
import
Flash
from
'
../../flash
'
;
import
'
../../autosave
'
;
import
Autosave
from
'
../../autosave
'
;
import
TaskList
from
'
../../task_list
'
;
import
TaskList
from
'
../../task_list
'
;
import
*
as
constants
from
'
../constants
'
;
import
*
as
constants
from
'
../constants
'
;
import
eventHub
from
'
../event_hub
'
;
import
eventHub
from
'
../event_hub
'
;
...
...
app/assets/javascripts/notes/mixins/autosave.js
View file @
b0c2772a
/* globals Autosave */
import
Autosave
from
'
../../autosave
'
;
import
'
../../autosave
'
;
export
default
{
export
default
{
methods
:
{
methods
:
{
...
...
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