|
| 1 | +// Prevent compiler errors when using jQuery. "$" will be given a type of |
| 2 | +// "any", so that we can use it anywhere, and assume it has any fields or |
| 3 | +// methods, without the compiler producing an error. |
| 4 | +var $: any; |
| 5 | + |
| 6 | +// a global for the main ElementList of the program. See newEntryForm for |
| 7 | +// explanation |
| 8 | +var mainList: ElementList; |
| 9 | + |
| 10 | +/** |
| 11 | + * ElementList provides a way of seeing all of the data stored on the server. |
| 12 | + */ |
| 13 | +class ElementList { |
| 14 | + /** |
| 15 | + * refresh is the public method for updating messageList |
| 16 | + */ |
| 17 | + refresh() { |
| 18 | + // Issue a GET, and then pass the result to update() |
| 19 | + $.ajax({ |
| 20 | + type: "GET", |
| 21 | + url: "/messages", |
| 22 | + dataType: "json", |
| 23 | + success: mainList.update |
| 24 | + }); |
| 25 | + } |
| 26 | + |
| 27 | + /** |
| 28 | + * update is the private method used by refresh() to update messageList |
| 29 | + */ |
| 30 | + private update(data: any) { |
| 31 | + $("#messageList").html("<table>"); |
| 32 | + for (let i = 0; i < data.mData.length; ++i) { |
| 33 | + $("#messageList").append("<tr><td>" + data.mData[i].mTitle + |
| 34 | + "</td>" + mainList.buttons(data.mData[i].mId) + "</tr>"); |
| 35 | + } |
| 36 | + $("#messageList").append("</table>"); |
| 37 | + // Find all of the delete buttons, and set their behavior |
| 38 | + $(".delbtn").click(mainList.clickDelete); |
| 39 | + // Find all of the Edit buttons, and set their behavior |
| 40 | + $(".editbtn").click(mainList.clickEdit); |
| 41 | + } |
| 42 | + |
| 43 | + /** |
| 44 | + * buttons() adds a 'delete' button and an 'edit' button to the HTML for each |
| 45 | + * row |
| 46 | + */ |
| 47 | + private buttons(id: string): string { |
| 48 | + return "<td><button class='editbtn' data-value='" + id |
| 49 | + + "'>Edit</button></td>" |
| 50 | + + "<td><button class='delbtn' data-value='" + id |
| 51 | + + "'>Delete</button></td>"; |
| 52 | + } |
| 53 | + |
| 54 | + /** |
| 55 | + * clickEdit is the code we run in response to a click of a delete button |
| 56 | + */ |
| 57 | + private clickEdit() { |
| 58 | + // as in clickDelete, we need the ID of the row |
| 59 | + let id = $(this).data("value"); |
| 60 | + $.ajax({ |
| 61 | + type: "GET", |
| 62 | + url: "/messages/" + id, |
| 63 | + dataType: "json", |
| 64 | + success: editEntryForm.init |
| 65 | + }); |
| 66 | + } |
| 67 | + |
| 68 | + /** |
| 69 | + * clickDelete is the code we run in response to a click of a delete button |
| 70 | + */ |
| 71 | + private clickDelete() { |
| 72 | + // TODO: check the response |
| 73 | + let id = $(this).data("value"); |
| 74 | + $.ajax({ |
| 75 | + type: "DELETE", |
| 76 | + url: "/messages/" + id, |
| 77 | + dataType: "json", |
| 78 | + // TODO: we should really have a function that looks at the return |
| 79 | + // value and possibly prints an error message. |
| 80 | + success: mainList.refresh |
| 81 | + }) |
| 82 | + } |
| 83 | +} // end class ElementList |
| 84 | + |
| 85 | + |
| 86 | +// a global for the EditEntryForm of the program. See newEntryForm for |
| 87 | +// explanation |
| 88 | +var editEntryForm: EditEntryForm; |
| 89 | + |
| 90 | +/** |
| 91 | + * EditEntryForm encapsulates all of the code for the form for editing an entry |
| 92 | + */ |
| 93 | +class EditEntryForm { |
| 94 | + /** |
| 95 | + * To initialize the object, we say what method of EditEntryForm should be |
| 96 | + * run in response to each of the form's buttons being clicked. |
| 97 | + */ |
| 98 | + constructor() { |
| 99 | + $("#editCancel").click(this.clearForm); |
| 100 | + $("#editButton").click(this.submitForm); |
| 101 | + } |
| 102 | + |
| 103 | + /** |
| 104 | + * init() is called from an AJAX GET, and should populate the form if and |
| 105 | + * only if the GET did not have an error |
| 106 | + */ |
| 107 | + init(data: any) { |
| 108 | + if (data.mStatus === "ok") { |
| 109 | + $("#editTitle").val(data.mData.mTitle); |
| 110 | + $("#editMessage").val(data.mData.mContent); |
| 111 | + $("#editId").val(data.mData.mId); |
| 112 | + $("#editCreated").text(data.mData.mCreated); |
| 113 | + // show the edit form |
| 114 | + $("#addElement").hide(); |
| 115 | + $("#editElement").show(); |
| 116 | + $("#showElements").hide(); |
| 117 | + } |
| 118 | + else if (data.mStatus === "error") { |
| 119 | + window.alert("Error: " + data.mMessage); |
| 120 | + } |
| 121 | + else { |
| 122 | + window.alert("An unspecified error occurred"); |
| 123 | + } |
| 124 | + } |
| 125 | + |
| 126 | + /** |
| 127 | + * Clear the form's input fields |
| 128 | + */ |
| 129 | + clearForm() { |
| 130 | + $("#editTitle").val(""); |
| 131 | + $("#editMessage").val(""); |
| 132 | + $("#editId").val(""); |
| 133 | + $("#editCreated").text(""); |
| 134 | + // reset the UI |
| 135 | + $("#addElement").hide(); |
| 136 | + $("#editElement").hide(); |
| 137 | + $("#showElements").show(); |
| 138 | + } |
| 139 | + |
| 140 | + /** |
| 141 | + * Check if the input fields are both valid, and if so, do an AJAX call. |
| 142 | + */ |
| 143 | + submitForm() { |
| 144 | + // get the values of the two fields, force them to be strings, and check |
| 145 | + // that neither is empty |
| 146 | + let title = "" + $("#editTitle").val(); |
| 147 | + let msg = "" + $("#editMessage").val(); |
| 148 | + // NB: we assume that the user didn't modify the value of #editId |
| 149 | + let id = "" + $("#editId").val(); |
| 150 | + if (title === "" || msg === "") { |
| 151 | + window.alert("Error: title or message is not valid"); |
| 152 | + return; |
| 153 | + } |
| 154 | + // set up an AJAX post. When the server replies, the result will go to |
| 155 | + // onSubmitResponse |
| 156 | + $.ajax({ |
| 157 | + type: "PUT", |
| 158 | + url: "/messages/" + id, |
| 159 | + dataType: "json", |
| 160 | + data: JSON.stringify({ mTitle: title, mMessage: msg }), |
| 161 | + success: editEntryForm.onSubmitResponse |
| 162 | + }); |
| 163 | + } |
| 164 | + |
| 165 | + /** |
| 166 | + * onSubmitResponse runs when the AJAX call in submitForm() returns a |
| 167 | + * result. |
| 168 | + * |
| 169 | + * @param data The object returned by the server |
| 170 | + */ |
| 171 | + private onSubmitResponse(data: any) { |
| 172 | + // If we get an "ok" message, clear the form and refresh the main |
| 173 | + // listing of messages |
| 174 | + if (data.mStatus === "ok") { |
| 175 | + editEntryForm.clearForm(); |
| 176 | + mainList.refresh(); |
| 177 | + } |
| 178 | + // Handle explicit errors with a detailed popup message |
| 179 | + else if (data.mStatus === "error") { |
| 180 | + window.alert("The server replied with an error:\n" + data.mMessage); |
| 181 | + } |
| 182 | + // Handle other errors with a less-detailed popup message |
| 183 | + else { |
| 184 | + window.alert("Unspecified error"); |
| 185 | + } |
| 186 | + } |
| 187 | +} // end class EditEntryForm |
| 188 | + |
| 189 | +// The 'this' keyword does not behave in JavaScript/TypeScript like it does in |
| 190 | +// Java. Since there is only one NewEntryForm, we will save it to a global, so |
| 191 | +// that we can reference it from methods of the NewEntryForm in situations where |
| 192 | +// 'this' won't work correctly. |
| 193 | +var newEntryForm: NewEntryForm; |
| 194 | + |
| 195 | +/** |
| 196 | + * NewEntryForm encapsulates all of the code for the form for adding an entry |
| 197 | + */ |
| 198 | +class NewEntryForm { |
| 199 | + /** |
| 200 | + * To initialize the object, we say what method of NewEntryForm should be |
| 201 | + * run in response to each of the form's buttons being clicked. |
| 202 | + */ |
| 203 | + constructor() { |
| 204 | + $("#addCancel").click(this.clearForm); |
| 205 | + $("#addButton").click(this.submitForm); |
| 206 | + } |
| 207 | + |
| 208 | + /** |
| 209 | + * Clear the form's input fields |
| 210 | + */ |
| 211 | + clearForm() { |
| 212 | + $("#newTitle").val(""); |
| 213 | + $("#newMessage").val(""); |
| 214 | + } |
| 215 | + |
| 216 | + /** |
| 217 | + * Check if the input fields are both valid, and if so, do an AJAX call. |
| 218 | + */ |
| 219 | + submitForm() { |
| 220 | + // get the values of the two fields, force them to be strings, and check |
| 221 | + // that neither is empty |
| 222 | + let title = "" + $("#newTitle").val(); |
| 223 | + let msg = "" + $("#newMessage").val(); |
| 224 | + if (title === "" || msg === "") { |
| 225 | + window.alert("Error: title or message is not valid"); |
| 226 | + return; |
| 227 | + } |
| 228 | + // set up an AJAX post. When the server replies, the result will go to |
| 229 | + // onSubmitResponse |
| 230 | + $.ajax({ |
| 231 | + type: "POST", |
| 232 | + url: "/messages", |
| 233 | + dataType: "json", |
| 234 | + data: JSON.stringify({ mTitle: title, mMessage: msg }), |
| 235 | + success: newEntryForm.onSubmitResponse |
| 236 | + }); |
| 237 | + console.log("Sent."); |
| 238 | + mainList.refresh(); |
| 239 | + } |
| 240 | + |
| 241 | + /** |
| 242 | + * onSubmitResponse runs when the AJAX call in submitForm() returns a |
| 243 | + * result. |
| 244 | + * |
| 245 | + * @param data The object returned by the server |
| 246 | + */ |
| 247 | + private onSubmitResponse(data: any) { |
| 248 | + // If we get an "ok" message, clear the form |
| 249 | + if (data.mStatus === "ok") { |
| 250 | + newEntryForm.clearForm(); |
| 251 | + mainList.refresh(); |
| 252 | + } |
| 253 | + // Handle explicit errors with a detailed popup message |
| 254 | + else if (data.mStatus === "error") { |
| 255 | + window.alert("The server replied with an error:\n" + data.mMessage); |
| 256 | + } |
| 257 | + // Handle other errors with a less-detailed popup message |
| 258 | + else { |
| 259 | + window.alert("Unspecified error"); |
| 260 | + } |
| 261 | + } |
| 262 | +} // end class NewEntryForm |
| 263 | + |
| 264 | +// Run some configuration code when the web page loads |
| 265 | +$(document).ready(function () { |
| 266 | + // Create the object that controls the "New Entry" form |
| 267 | + newEntryForm = new NewEntryForm(); |
| 268 | + // Create the object for the main data list, and populate it with data from |
| 269 | + // the server |
| 270 | + // Create the object that controls the "Edit Entry" form |
| 271 | + editEntryForm = new EditEntryForm(); |
| 272 | + |
| 273 | + mainList = new ElementList(); |
| 274 | + mainList.refresh(); |
| 275 | + |
| 276 | + // set up initial UI state |
| 277 | + $("#editElement").hide(); |
| 278 | + $("#addElement").hide(); |
| 279 | + $("#showElements").show(); |
| 280 | + |
| 281 | + // set up the "Add Message" button |
| 282 | + $("#showFormButton").click(function () { |
| 283 | + $("#addElement").show(); |
| 284 | + $("#showElements").hide(); |
| 285 | + }); |
| 286 | +}); |
0 commit comments