mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-04-04 17:19:47 -04:00
Removes stay logging, implements functionality improvements for artisan modals.
This commit is contained in:
parent
14c2942134
commit
89fc6cc078
3 changed files with 32 additions and 21 deletions
app
templates/editor/level/modal
views/editor/level
|
@ -4,7 +4,10 @@ block modal-header-content
|
|||
h3 Artisan Compendium
|
||||
block modal-body-content
|
||||
p
|
||||
| Welcome to the Artisan Compendium. Below you will find a series of helpful guides and tutorials for getting your levels to Master Artisan quality, as well as a way to submit your level for official Artisan review! If you have any feedback on the Level Editor, please contact us at: artisans@codecombat.com
|
||||
| Welcome to the Artisan Compendium. Below you will find a series of helpful guides and tutorials for getting your levels to Master Artisan quality
|
||||
if creator == meID
|
||||
|, as well as a way to submit your level for official Artisan review
|
||||
|! If you have any feedback on the Level Editor, please contact us at: artisans@codecombat.com
|
||||
div.centered-stack
|
||||
div
|
||||
a(href='https://github.com/codecombat/codecombat/wiki/Artisan-Home', target='_blank') Wiki Homepage
|
||||
|
@ -12,25 +15,27 @@ block modal-body-content
|
|||
a(href='https://github.com/codecombat/codecombat/wiki/Artisan-How-To-Index', target='_blank') Basic How-tos
|
||||
div
|
||||
a(href='http://direct.codecombat.com/community', target='_blank') Artisan Rankings
|
||||
h4 Level Submission
|
||||
p
|
||||
| Do you want your level to be added to the campaign? Please take a moment to fill out the questions below! Don’t worry, this isn’t a timed quiz. It is just a way for the artisans at CodeCombat HQ to get a feel for the purpose of this level. If it doesn’t quite yet meet our standards for release we will give you feedback to help polish it further!
|
||||
.form
|
||||
.form-group
|
||||
label.control-label(for='credit-name') How would you like to be credited?
|
||||
input#credit-name.form-control(name='creditName')
|
||||
.form-group
|
||||
label.control-label(for='level-purpose') What is the purpose of this level?
|
||||
textarea#level-purpose.form-control(name='levelPurpose', rows=4)
|
||||
.form-group
|
||||
label.control-label(for='level-inspiration') What was the inspiration for the level?
|
||||
textarea#level-inspiration.form-control(name='levelInspiration', rows=4)
|
||||
.form-group
|
||||
label.control-label(for='level-location') Where in the campaign do you think this level belongs?
|
||||
textarea#level-location.form-control(name='levelLocation', rows=4)
|
||||
if creator == meID
|
||||
h4 Level Submission
|
||||
p
|
||||
| Do you want your level to be added to the campaign? Please take a moment to fill out the questions below! Don’t worry, this isn’t a timed quiz. It is just a way for the artisans at CodeCombat HQ to get a feel for the purpose of this level. If it doesn’t quite yet meet our standards for release we will give you feedback to help polish it further!
|
||||
.form
|
||||
.form-group
|
||||
label.control-label(for='credit-name') How would you like to be credited?
|
||||
input#credit-name.form-control(name='creditName')
|
||||
.form-group
|
||||
label.control-label(for='level-purpose') What is the purpose of this level?
|
||||
textarea#level-purpose.form-control(name='levelPurpose', rows=4)
|
||||
.form-group
|
||||
label.control-label(for='level-inspiration') What was the inspiration for the level?
|
||||
textarea#level-inspiration.form-control(name='levelInspiration', rows=4)
|
||||
.form-group
|
||||
label.control-label(for='level-location') Where in the campaign do you think this level belongs?
|
||||
textarea#level-location.form-control(name='levelLocation', rows=4)
|
||||
|
||||
|
||||
block modal-footer-content
|
||||
div
|
||||
a(href='#', data-dismiss="modal", aria-hidden="true").btn Close
|
||||
button.btn.btn-primary#level-submit Submit
|
||||
if creator == meID
|
||||
button.btn.btn-primary#level-submit Submit
|
|
@ -93,7 +93,6 @@ module.exports = class LevelEditView extends RootView
|
|||
getRenderData: (context={}) ->
|
||||
context = super(context)
|
||||
context.level = @level
|
||||
console.log context.level
|
||||
context.authorized = me.isAdmin() or @level.hasWriteAccess(me)
|
||||
context.anonymous = me.get('anonymous')
|
||||
context.recentlyPlayedOpponents = storage.load('recently-played-matches')?[@levelID] ? []
|
||||
|
@ -177,7 +176,7 @@ module.exports = class LevelEditView extends RootView
|
|||
Backbone.Mediator.publish 'editor:view-switched', {}
|
||||
|
||||
showArtisanGuide: (e) ->
|
||||
@openModalView new ArtisanGuideModal()
|
||||
@openModalView new ArtisanGuideModal level: @level
|
||||
Backbone.Mediator.publish 'editor:view-switched', {}
|
||||
|
||||
startForking: (e) ->
|
||||
|
|
|
@ -25,7 +25,15 @@ module.exports = class ArtisanGuideModal extends ModalView
|
|||
|
||||
constructor: (options) ->
|
||||
super options
|
||||
@level = options.level
|
||||
@options = level: @level.get 'name'
|
||||
@render()
|
||||
|
||||
getRenderData: ->
|
||||
c = super()
|
||||
c.creator = @level.get 'creator'
|
||||
c.meID = me.id
|
||||
c
|
||||
|
||||
levelSubmit: ->
|
||||
@playSound 'menu-button-click'
|
||||
|
@ -36,7 +44,6 @@ module.exports = class ArtisanGuideModal extends ModalView
|
|||
@populateBrowserData contactMessage
|
||||
contactMessage = _.merge contactMessage, @options
|
||||
contactMessage.country = me.get('country')
|
||||
window.tracker?.trackEvent 'Sent Feedback', message: contactMessage
|
||||
sendContactMessage contactMessage, @$el
|
||||
$.post "/db/user/#{me.id}/track/contact_codecombat"
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue