-
Notifications
You must be signed in to change notification settings - Fork 45
/
rails-controller-layout.el
216 lines (196 loc) · 10.8 KB
/
rails-controller-layout.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
;;; rails-controller-layout.el ---
;; Copyright (C) 2006 Dmitry Galinsky <dima dot exe at gmail dot com>
;; Authors: Dmitry Galinsky <dima dot exe at gmail dot com>
;; Keywords: ruby rails languages oop
;; $URL$
;; $Id$
;;; License
;; This program is free software; you can redistribute it and/or
;; modify it under the terms of the GNU General Public License
;; as published by the Free Software Foundation; either version 2
;; of the License, or (at your option) any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program; if not, write to the Free Software
;; Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
;;; Code:
(defvar rails-controller-layout:recent-template-type nil)
(defun rails-controller-layout:switch-to-action-in-controller (controller-name action-name)
"Open CONTROLLER-NAME and go to ACTION-NAME."
(if (or (rails-core:find-file-if-exist (rails-core:controller-file controller-name))
(rails-core:find-file-if-exist (rails-core:mailer-file controller-name)))
(progn
(goto-char (point-min))
(when action-name
(if (search-forward-regexp (concat "^[ ]*def[ ]*" action-name) nil t)
(recenter))
(message (format "%s: %s" (substring (symbol-name (rails-core:buffer-type)) 1) controller-name))))))
(defun rails-controller-layout:switch-to-view (controller-name action-name)
"Open the ACTION-NAME file for CONTROLLER-NAME in the views directory."
(when action-name
(let ((views (rails-controller-layout:view-files controller-name action-name))
(title (substring (symbol-name (rails-core:buffer-type)) 1)))
(cond
((= (length views) 1)
(find-file (first views))
(message "%s: %s#%s" title controller-name action-name))
((= (length views) 0)
(rails-controller-layout:create-view-for-action controller-name action-name))))))
(defun rails-controller-layout:toggle-action-view ()
(interactive)
(let ((controller-name (rails-core:current-controller))
(action-name (rails-core:current-action)))
(case (rails-core:buffer-type)
(:view
(rails-controller-layout:switch-to-action-in-controller controller-name action-name))
(:mailer
(rails-controller-layout:switch-to-view controller-name action-name))
(:controller
(if action-name
(rails-controller-layout:switch-to-view controller-name action-name)
(rails-controller-layout:switch-to :functional-test))))))
(defun rails-controller-layout:create-view-for-action (controller-name action-name)
(let ((type
(if rails-controller-layout:recent-template-type
rails-controller-layout:recent-template-type
(car rails-templates-list))))
(setq type
(completing-read (format "View for %s#%s not found, create %s.[%s]? "
controller-name action-name action-name type)
rails-templates-list
nil t type))
(setq rails-controller-layout:recent-template-type type)
(let ((file (rails-core:file (concat "app/views/"
(replace-regexp-in-string "_controller" ""
(rails-core:file-by-class controller-name t))))))
(make-directory file t)
(find-file (format "%s/%s.%s" file action-name type)))))
(defun rails-controller-layout:view-files (controller-name &optional action)
"Retun a list containing the view file for CONTROLLER-NAME#ACTION.
If the action is nil, return all views for the controller."
(rails-project:with-root
(root)
(directory-files
(rails-core:file
(rails-core:views-dir
(rails-core:short-controller-name controller-name))) t
(if action
(concat "^" action (rails-core:regex-for-match-view))
(rails-core:regex-for-match-view)))))
(defun rails-controller-layout:views-menu (controller-name)
"Make menu of view for CONTROLLER-NAME."
(let (menu)
(setq menu
(mapcar (lambda(i)
(list (concat (if (string-match "^_" (file-name-nondirectory i)) "Partial" "View")
": "
(file-name-nondirectory i))
i))
(rails-controller-layout:view-files controller-name nil)))
(when (zerop (length menu))
(setq menu (list)))
menu))
(defun rails-controller-layout:keymap (type)
(let* ((name (capitalize (substring (symbol-name type) 1)))
(map (make-sparse-keymap))
(menu (make-sparse-keymap)))
(when type
(define-keys menu
([goto-migration] '(menu-item "Go to Migration"
rails-controller-layout:switch-to-migration
:enable (and (not (rails-core:current-mailer))
(rails-core:migration-file-by-model
(singularize-string (rails-core:current-controller))))))
([goto-model] '(menu-item "Go to Model"
rails-controller-layout:switch-to-model
:enable (and (not (rails-core:current-mailer))
(rails-core:model-exist-p
(singularize-string (rails-core:current-controller))))))
([goto-helper] '(menu-item "Go to Helper"
rails-controller-layout:switch-to-helper
:enable (and (not (rails-core:current-mailer))
(not (eq (rails-core:buffer-type) :helper)))))
([goto-ftest] '(menu-item "Go to Functional Test"
rails-controller-layout:switch-to-functional-test
:enable (and (not (rails-core:current-mailer))
(not (eq (rails-core:buffer-type) :functional-test)))))
([goto-controller] '(menu-item "Go to Controller"
rails-controller-layout:switch-to-controller
:enable (and (not (rails-core:current-mailer))
(not (eq (rails-core:buffer-type) :controller)))))
([goto-utest] '(menu-item "Go to Unit Test"
rails-controller-layout:switch-to-unit-test
:enable (rails-core:current-mailer))))
(define-keys map
((rails-key "g") 'rails-controller-layout:switch-to-migration)
((rails-key "m") 'rails-controller-layout:switch-to-model)
((rails-key "h") 'rails-controller-layout:switch-to-helper)
((rails-key "f") 'rails-controller-layout:switch-to-functional-test)
((rails-key "c") 'rails-controller-layout:switch-to-controller)
((rails-key "u") 'rails-controller-layout:switch-to-unit-test)
([menu-bar rails-controller-layout] (cons name menu))))
map))
(defun rails-controller-layout:switch-to (type)
(let* ((name (capitalize (substring (symbol-name type) 1)))
(controller (rails-core:current-controller))
(model (singularize-string controller))
(mailer (rails-core:current-mailer))
(item (case type
(:helper (rails-core:helper-file controller))
(:functional-test (rails-core:functional-test-file controller))
(:controller (rails-core:controller-file controller))
(:model (rails-core:model-file model))
(:unit-test (rails-core:unit-test-file mailer))
(:migration (rails-core:migration-file-by-model model)))))
(if item
(let ((file (rails-core:file item)))
(if (file-exists-p file)
(progn
(find-file file)
(message (format "%s: %s" (substring (symbol-name type) 1) item)))
(message "File %s not exists" file)))
(message "%s not found" name))))
(defun rails-controller-layout:switch-to-helper () (interactive) (rails-controller-layout:switch-to :helper))
(defun rails-controller-layout:switch-to-functional-test () (interactive) (rails-controller-layout:switch-to :functional-test))
(defun rails-controller-layout:switch-to-controller () (interactive) (rails-controller-layout:switch-to :controller))
(defun rails-controller-layout:switch-to-model () (interactive) (rails-controller-layout:switch-to :model))
(defun rails-controller-layout:switch-to-migration () (interactive) (rails-controller-layout:switch-to :migration))
(defun rails-controller-layout:switch-to-unit-test () (interactive) (rails-controller-layout:switch-to :unit-test))
(defun rails-controller-layout:menu ()
(interactive)
(let* ((type (rails-core:buffer-type))
(title (capitalize (substring (symbol-name type) 1)))
(controller (rails-core:current-controller))
(action (rails-core:current-action))
(model (singularize-string controller))
(mailer (rails-core:current-mailer))
(item (rails-controller-layout:views-menu (or controller mailer))))
(add-to-list 'item (rails-core:menu-separator))
(when controller
(when (rails-core:model-exist-p model)
(when (rails-core:migration-file-by-model model)
(add-to-list 'item (cons "Migration" :migration)))
(add-to-list 'item (cons "Model" :model)))
(unless (eq type :helper)
(add-to-list 'item (cons "Helper" :helper)))
(unless (eq type :functional-test)
(add-to-list 'item (cons "Functional Test" :functional-test)))
(unless (eq type :controller)
(add-to-list 'item (cons "Controller" :controller))))
(when mailer
(add-to-list 'item (cons "Unit Test" (rails-core:unit-test-file mailer)))
(when (eq type :view)
(add-to-list 'item (cons "Mailer" (rails-core:mailer-file mailer)))))
(setq item
(rails-core:menu
(list (concat title " " controller
(when action (format " (%s)" action)))
(cons "Please select.."
item))))
(typecase item
(symbol (rails-controller-layout:switch-to item))
(string (rails-core:find-file-if-exist item)))))
(provide 'rails-controller-layout)