Description:
live editor using cloud9 ace for problem
Commit status:
[Not Reviewed]
References:
Diff options:
Comments:
0 Commit comments
0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
r564:484b31caab29 - - 16 files changed: 121 inserted, 1 deleted
@@ -0,0 +1,10 | |||||
|
|
1 | + # Place all the behaviors and hooks related to the matching controller here. | ||
|
|
2 | + # All this logic will automatically be available in application.js. | ||
|
|
3 | + # You can use CoffeeScript in this file: http://jashkenas.github.com/coffee-script/ | ||
|
|
4 | + | ||
|
|
5 | + | ||
|
|
6 | + $ -> | ||
|
|
7 | + $("#live_submit").on "click", (event) -> | ||
|
|
8 | + h = $("#editor_text") | ||
|
|
9 | + e = ace.edit("editor") | ||
|
|
10 | + h.val(e.getValue()) |
@@ -0,0 +1,12 | |||||
|
|
1 | + // Place all the styles related to the sources controller here. | ||
|
|
2 | + // They will automatically be included in application.css. | ||
|
|
3 | + // You can use Sass (SCSS) here: http://sass-lang.com/ | ||
|
|
4 | + | ||
|
|
5 | + #editor { | ||
|
|
6 | + position: absolute; | ||
|
|
7 | + top: 0; | ||
|
|
8 | + right: 0; | ||
|
|
9 | + bottom: 0; | ||
|
|
10 | + left: 0; | ||
|
|
11 | + } | ||
|
|
12 | + |
@@ -0,0 +1,7 | |||||
|
|
1 | + class SourcesController < ApplicationController | ||
|
|
2 | + before_filter :authenticate, :except => [:index, :login] | ||
|
|
3 | + | ||
|
|
4 | + def direct_edit | ||
|
|
5 | + @problem = Problem.find_by_id(params[:pid]) | ||
|
|
6 | + end | ||
|
|
7 | + end |
@@ -0,0 +1,21 | |||||
|
|
1 | + %h1 Live submit | ||
|
|
2 | + = form_tag({controller: :main, :action => 'submit'}, :multipart => true, class: 'form-inline') do | ||
|
|
3 | + = hidden_field_tag 'editor_text' | ||
|
|
4 | + = hidden_field_tag 'submission[problem_id]', @problem.id | ||
|
|
5 | + .form-group | ||
|
|
6 | + = label_tag "Task:" | ||
|
|
7 | + = text_field_tag 'asdf', "#{@problem.long_name}", class: 'form-control', disabled: true | ||
|
|
8 | + | ||
|
|
9 | + .form-group | ||
|
|
10 | + = label_tag 'Language' | ||
|
|
11 | + = select_tag 'language_id', options_from_collection_for_select(Language.all, 'id', 'pretty_name',"C++"), class: 'form-control', style: "width: 100px" | ||
|
|
12 | + .form-group | ||
|
|
13 | + = submit_tag 'Submit', class: 'btn btn-success', id: 'live_submit' | ||
|
|
14 | + | ||
|
|
15 | + %br | ||
|
|
16 | + | ||
|
|
17 | + .container | ||
|
|
18 | + .row | ||
|
|
19 | + .col-md-12 | ||
|
|
20 | + %div#editor{style: 'height: 400px'} | ||
|
|
21 | + Hahaha |
@@ -0,0 +1,12 | |||||
|
|
1 | + require 'spec_helper' | ||
|
|
2 | + | ||
|
|
3 | + describe SourcesController do | ||
|
|
4 | + | ||
|
|
5 | + describe "GET 'direct_edit'" do | ||
|
|
6 | + it "returns http success" do | ||
|
|
7 | + get 'direct_edit' | ||
|
|
8 | + response.should be_success | ||
|
|
9 | + end | ||
|
|
10 | + end | ||
|
|
11 | + | ||
|
|
12 | + end |
@@ -0,0 +1,15 | |||||
|
|
1 | + require 'spec_helper' | ||
|
|
2 | + | ||
|
|
3 | + # Specs in this file have access to a helper object that includes | ||
|
|
4 | + # the SourcesHelper. For example: | ||
|
|
5 | + # | ||
|
|
6 | + # describe SourcesHelper do | ||
|
|
7 | + # describe "string concat" do | ||
|
|
8 | + # it "concats two strings with spaces" do | ||
|
|
9 | + # expect(helper.concat_strings("this","that")).to eq("this that") | ||
|
|
10 | + # end | ||
|
|
11 | + # end | ||
|
|
12 | + # end | ||
|
|
13 | + describe SourcesHelper do | ||
|
|
14 | + pending "add some examples to (or delete) #{__FILE__}" | ||
|
|
15 | + end |
@@ -0,0 +1,5 | |||||
|
|
1 | + require 'spec_helper' | ||
|
|
2 | + | ||
|
|
3 | + describe "sources/direct_edit.html.haml" do | ||
|
|
4 | + pending "add some examples to (or delete) #{__FILE__}" | ||
|
|
5 | + end |
@@ -57,8 +57,11 | |||||
|
57 | gem 'bootstrap-toggle-rails' |
|
57 | gem 'bootstrap-toggle-rails' |
|
58 | gem 'autoprefixer-rails' |
|
58 | gem 'autoprefixer-rails' |
|
59 |
|
59 | ||
|
|
60 | + gem 'ace-rails-ap' | ||
|
|
61 | + | ||
|
60 |
|
62 | ||
|
61 | gem 'haml' |
|
63 | gem 'haml' |
|
|
64 | + gem 'haml-rails' | ||
|
62 | gem 'mail' |
|
65 | gem 'mail' |
|
63 | gem 'rdiscount' |
|
66 | gem 'rdiscount' |
|
64 | gem 'test-unit' |
|
67 | gem 'test-unit' |
@@ -9,6 +9,7 | |||||
|
9 | GEM |
|
9 | GEM |
|
10 | remote: https://rubygems.org/ |
|
10 | remote: https://rubygems.org/ |
|
11 | specs: |
|
11 | specs: |
|
|
12 | + ace-rails-ap (4.0.2) | ||
|
12 | actionmailer (3.2.21) |
|
13 | actionmailer (3.2.21) |
|
13 | actionpack (= 3.2.21) |
|
14 | actionpack (= 3.2.21) |
|
14 | mail (~> 2.5.4) |
|
15 | mail (~> 2.5.4) |
@@ -61,6 +62,11 | |||||
|
61 | execjs (2.3.0) |
|
62 | execjs (2.3.0) |
|
62 | haml (4.0.6) |
|
63 | haml (4.0.6) |
|
63 | tilt |
|
64 | tilt |
|
|
65 | + haml-rails (0.4) | ||
|
|
66 | + actionpack (>= 3.1, < 4.1) | ||
|
|
67 | + activesupport (>= 3.1, < 4.1) | ||
|
|
68 | + haml (>= 3.1, < 4.1) | ||
|
|
69 | + railties (>= 3.1, < 4.1) | ||
|
64 | hike (1.2.3) |
|
70 | hike (1.2.3) |
|
65 | i18n (0.7.0) |
|
71 | i18n (0.7.0) |
|
66 | in_place_editing (1.2.0) |
|
72 | in_place_editing (1.2.0) |
@@ -161,6 +167,7 | |||||
|
161 | ruby |
|
167 | ruby |
|
162 |
|
168 | ||
|
163 | DEPENDENCIES |
|
169 | DEPENDENCIES |
|
|
170 | + ace-rails-ap | ||
|
164 | autoprefixer-rails |
|
171 | autoprefixer-rails |
|
165 | best_in_place (~> 3.0.1) |
|
172 | best_in_place (~> 3.0.1) |
|
166 | bootstrap-sass (~> 3.2.0) |
|
173 | bootstrap-sass (~> 3.2.0) |
@@ -169,6 +176,7 | |||||
|
169 | coffee-rails (~> 3.2.2) |
|
176 | coffee-rails (~> 3.2.2) |
|
170 | dynamic_form |
|
177 | dynamic_form |
|
171 | haml |
|
178 | haml |
|
|
179 | + haml-rails | ||
|
172 | in_place_editing |
|
180 | in_place_editing |
|
173 | jquery-rails |
|
181 | jquery-rails |
|
174 | jquery-tablesorter |
|
182 | jquery-tablesorter |
@@ -18,6 +18,7 | |||||
|
18 | //= require bootstrap-toggle |
|
18 | //= require bootstrap-toggle |
|
19 | //= require select2 |
|
19 | //= require select2 |
|
20 | //= require custom |
|
20 | //= require custom |
|
|
21 | + //= require ace-rails-ap | ||
|
21 |
|
22 | ||
|
22 |
|
23 | ||
|
23 | // since this is after blank line, it is not downloaded |
|
24 | // since this is after blank line, it is not downloaded |
@@ -38,4 +38,8 | |||||
|
38 | target.text '...' |
|
38 | target.text '...' |
|
39 | return |
|
39 | return |
|
40 |
|
40 | ||
|
|
41 | + editor = ace.edit("editor") | ||
|
|
42 | + editor.setTheme("ace/theme/monokai") | ||
|
|
43 | + editor.getSession().setMode("ace/mode/javascript") | ||
|
|
44 | + | ||
|
41 | return |
|
45 | return |
@@ -69,6 +69,14 | |||||
|
69 | @submission.source.encode!('UTF-8','UTF-8',invalid: :replace, replace: '') |
|
69 | @submission.source.encode!('UTF-8','UTF-8',invalid: :replace, replace: '') |
|
70 | @submission.source_filename = params['file'].original_filename |
|
70 | @submission.source_filename = params['file'].original_filename |
|
71 | end |
|
71 | end |
|
|
72 | + | ||
|
|
73 | + if (params[:editor_text]) | ||
|
|
74 | + language = Language.find_by_id(params[:language_id]) | ||
|
|
75 | + @submission.source = params[:editor_text] | ||
|
|
76 | + @submission.source_filename = "live_edit.#{language.ext}" | ||
|
|
77 | + @submission.language = language | ||
|
|
78 | + end | ||
|
|
79 | + | ||
|
72 | @submission.submitted_at = Time.new.gmtime |
|
80 | @submission.submitted_at = Time.new.gmtime |
|
73 | @submission.ip_address = request.remote_ip |
|
81 | @submission.ip_address = request.remote_ip |
|
74 |
|
82 |
@@ -61,6 +61,10 | |||||
|
61 | result[:total_sub] = Submission.where(problem_id: self.id).count |
|
61 | result[:total_sub] = Submission.where(problem_id: self.id).count |
|
62 | result[:attempted_user] = Submission.where(problem_id: self.id).group_by(:user_id) |
|
62 | result[:attempted_user] = Submission.where(problem_id: self.id).group_by(:user_id) |
|
63 | end |
|
63 | end |
|
|
64 | + | ||
|
|
65 | + def long_name | ||
|
|
66 | + "[#{name}] #{full_name}" | ||
|
|
67 | + end | ||
|
64 |
|
68 | ||
|
65 | protected |
|
69 | protected |
|
66 |
|
70 |
@@ -23,4 +23,4 | |||||
|
23 | = " | " |
|
23 | = " | " |
|
24 | = link_to("[#{t 'main.src_link'}]",{:action => 'source', :id => submission.id}) |
|
24 | = link_to("[#{t 'main.src_link'}]",{:action => 'source', :id => submission.id}) |
|
25 | = " | " |
|
25 | = " | " |
|
26 |
- = link_to "[#{t 'main.submissions_link'}]", :action => 'submission', :id => problem |
|
26 | + = link_to "[#{t 'main.submissions_link'}]", :action => 'submission', :id => submission.problem.id |
@@ -1,4 +1,6 | |||||
|
1 | CafeGrader::Application.routes.draw do |
|
1 | CafeGrader::Application.routes.draw do |
|
|
2 | + get "sources/direct_edit" | ||
|
|
3 | + | ||
|
2 | root :to => 'main#login' |
|
4 | root :to => 'main#login' |
|
3 |
|
5 | ||
|
4 |
|
6 | ||
@@ -33,6 +35,12 | |||||
|
33 | end |
|
35 | end |
|
34 | end |
|
36 | end |
|
35 |
|
37 | ||
|
|
38 | + #resources :sources do | ||
|
|
39 | + # collection do | ||
|
|
40 | + # end | ||
|
|
41 | + #end | ||
|
|
42 | + get 'sources/direct_edit/:pid', to: 'sources#direct_edit', as: 'direct_edit' | ||
|
|
43 | + | ||
|
36 |
|
44 | ||
|
37 | match 'tasks/view/:file.:ext' => 'tasks#view' |
|
45 | match 'tasks/view/:file.:ext' => 'tasks#view' |
|
38 | match 'tasks/download/:id/:file.:ext' => 'tasks#download' |
|
46 | match 'tasks/download/:id/:file.:ext' => 'tasks#download' |
You need to be logged in to leave comments.
Login now