mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-28 05:56:37 +10:00
Implements TemplateDropdown class to create custom template dropdowns ## What does this MR do? Refactorize template dropdowns. This MR creates a base TemplateSelector class so it can be reused for multiple types of templates. ## Does this MR meet the acceptance criteria? - [ ] [CHANGELOG](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CHANGELOG) entry added - [ ] [Documentation created/updated](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/doc/development/doc_styleguide.md) - [ ] API support added - [ ] Tests - [ ] Added for this feature/bug - [x] All builds are passing - [ ] Conform by the [style guides](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CONTRIBUTING.md#style-guides) - [x] Branch has no merge conflicts with `master` (if you do - rebase it please) - [x] [Squashed related commits together](https://git-scm.com/book/en/Git-Tools-Rewriting-History#Squashing-Commits) See merge request !4697
42 lines
1.3 KiB
CoffeeScript
42 lines
1.3 KiB
CoffeeScript
class @EditBlob
|
|
constructor: (assets_path, ace_mode = null) ->
|
|
ace.config.set "modePath", "#{assets_path}/ace"
|
|
ace.config.loadModule "ace/ext/searchbox"
|
|
@editor = ace.edit("editor")
|
|
@editor.focus()
|
|
@editor.getSession().setMode "ace/mode/#{ace_mode}" if ace_mode
|
|
|
|
# Before a form submission, move the content from the Ace editor into the
|
|
# submitted textarea
|
|
$('form').submit =>
|
|
$("#file-content").val(@editor.getValue())
|
|
|
|
@initModePanesAndLinks()
|
|
|
|
new BlobLicenseSelectors { @editor }
|
|
new BlobGitignoreSelectors { @editor }
|
|
|
|
initModePanesAndLinks: ->
|
|
@$editModePanes = $(".js-edit-mode-pane")
|
|
@$editModeLinks = $(".js-edit-mode a")
|
|
@$editModeLinks.click @editModeLinkClickHandler
|
|
|
|
editModeLinkClickHandler: (event) =>
|
|
event.preventDefault()
|
|
currentLink = $(event.target)
|
|
paneId = currentLink.attr("href")
|
|
currentPane = @$editModePanes.filter(paneId)
|
|
@$editModeLinks.parent().removeClass "active hover"
|
|
currentLink.parent().addClass "active hover"
|
|
@$editModePanes.hide()
|
|
currentPane.fadeIn 200
|
|
if paneId is "#preview"
|
|
$.post currentLink.data("preview-url"),
|
|
content: @editor.getValue()
|
|
, (response) ->
|
|
currentPane.empty().append response
|
|
currentPane.syntaxHighlight()
|
|
|
|
else
|
|
@editor.focus()
|