]> code.citadel.org Git - citadel.git/blobdiff - webcit/notes.c
More sticky-notes work. Click-to-edit now
[citadel.git] / webcit / notes.c
index e1e3042a22616114595a5dbeed5d9db9fc957237..93dba977dcd67808d7e0e34fa850b9a40997ceac 100644 (file)
@@ -159,16 +159,17 @@ void updatenote(void)
 }
 
 
-#ifdef NEW_NOTES_VIEW
+
+
 
 /*
  * Display a <div> containing a rendered sticky note.
  */
-void display_vnote_div(struct vnote *v, long msgnum) {
+void display_vnote_div(struct vnote *v) {
 
        /* begin outer div */
 
-       wprintf("<div id=\"note%ld\" ", msgnum);
+       wprintf("<div id=\"note-%s\" ", v->uid);
        wprintf("class=\"stickynote_outer\" ");
        wprintf("style=\"");
        wprintf("left: %dpx; ", v->pos_left);
@@ -180,15 +181,15 @@ void display_vnote_div(struct vnote *v, long msgnum) {
 
        /* begin title bar */
 
-       wprintf("<div id=\"titlebar%ld\" ", msgnum);
+       wprintf("<div id=\"titlebar-%s\" ", v->uid);
        wprintf("class=\"stickynote_titlebar\" ");
-       wprintf("onMouseDown=\"NotesDragMouseDown(event,%ld)\" ", msgnum);
+       wprintf("onMouseDown=\"NotesDragMouseDown(event,'%s')\" ", v->uid);
        wprintf("style=\"");
        wprintf("background-color: #%02X%02X%02X ", v->color_red/2, v->color_green/2, v->color_blue/2);
        wprintf("\">");
 
        wprintf("<table border=0 cellpadding=0 cellspacing=0 valign=middle width=100%%><tr>");
-       wprintf("<td>&nbsp;</td>", msgnum);
+       wprintf("<td></td>");   // nothing in the title bar, it's just for dragging
 
        wprintf("<td align=right valign=middle "
                // "onclick=\"javascript:$('address_book_popup').style.display='none';\" "
@@ -197,20 +198,52 @@ void display_vnote_div(struct vnote *v, long msgnum) {
 
        wprintf("</div>\n");
 
+       /* begin note body */
+
+       wprintf("<div id=\"notebody-%s\" ", v->uid);
+       wprintf("class=\"stickynote_body\"");
+       wprintf(">");
        escputs(v->body);
+       wprintf("</div>\n");
+
+       wprintf("<script type=\"text/javascript\">");
+       wprintf(" new Ajax.InPlaceEditor('notebody-%s', 'ajax_update_note?note_uid=%s', "
+               "{rows:%d,cols:%d,highlightcolor:'#%02X%02X%02X',highlightendcolor:'#%02X%02X%02X',"
+               "okText:'%s',cancelText:'%s',clickToEditText:'%s'});",
+               v->uid,
+               v->uid,
+               (v->pos_height / 16) - 5,
+               (v->pos_width / 9) - 1,
+               v->color_red, v->color_green, v->color_blue,
+               v->color_red, v->color_green, v->color_blue,
+               _("Save"),
+               _("Cancel"),
+               _("Click on any note to edit it.")
+       );
+       wprintf("</script>\n");
+
+       /* begin resize handle */
+
+       wprintf("<div id=\"resize-%s\" ", v->uid);
+       wprintf("class=\"stickynote_resize\" ");
+       wprintf("onMouseDown=\"NotesResizeMouseDown(event,'%s')\"", v->uid);
+       wprintf(">");
+
+       wprintf("<img src=\"static/resizecorner.png\">");
 
        wprintf("</div>\n");
-}
 
+       /* end of note */
+
+       wprintf("</div>\n");
+}
 
 
 
 /*
- * display sticky notes
- *
- * msgnum = Message number on the local server of the note to be displayed
+ * Fetch a message from the server and extract a vNote from it
  */
-void display_note(long msgnum, int unread) {
+struct vnote *vnote_new_from_msg(long msgnum) {
        char buf[1024];
        char mime_partnum[256];
        char mime_filename[256];
@@ -224,7 +257,7 @@ void display_note(long msgnum, int unread) {
        sprintf(buf, "MSG4 %ld", msgnum);       /* we need the mime headers */
        serv_puts(buf);
        serv_getln(buf, sizeof buf);
-       if (buf[0] != '1') return;
+       if (buf[0] != '1') return NULL;
 
        while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
                if (!strncasecmp(buf, "part=", 5)) {
@@ -245,18 +278,115 @@ void display_note(long msgnum, int unread) {
                if (relevant_source != NULL) {
                        struct vnote *v = vnote_new_from_str(relevant_source);
                        free(relevant_source);
-                       display_vnote_div(v, msgnum);
-                       vnote_free(v);
-
-                       /* FIXME remove these debugging messages when finished */
-                       wprintf("<script type=\"text/javascript\">");
-                       wprintf("document.write('L: ' + $('note%ld').style.left + '<br>');", msgnum);
-                       wprintf("document.write('T: ' + $('note%ld').style.top + '<br>');", msgnum);
-                       wprintf("document.write('W: ' + $('note%ld').style.width + '<br>');", msgnum);
-                       wprintf("document.write('H: ' + $('note%ld').style.height + '<br>');", msgnum);
-                       wprintf("</script>");
+                       return(v);
                }
        }
+
+       return NULL;
+}
+
+
+/*
+ * Background ajax call to receive updates from the browser when a note is moved, resized, or updated.
+ */
+void ajax_update_note(void) {
+
+       char buf[1024];
+       int msgnum;
+       struct vnote *v = NULL;
+
+        if (!havebstr("note_uid")) {
+               begin_ajax_response();
+               wprintf("Received ajax_update_note() request without a note UID.");
+               end_ajax_response();
+               return;
+       }
+
+       lprintf(9, "Note UID = %s\n", bstr("note_uid"));
+       serv_printf("EUID %s", bstr("note_uid"));
+       serv_getln(buf, sizeof buf);
+       if (buf[0] != '2') {
+               begin_ajax_response();
+               wprintf("Cannot find message containing vNote with the requested uid!");
+               end_ajax_response();
+               return;
+       }
+       msgnum = atol(&buf[4]);
+       v = vnote_new_from_msg(msgnum);
+       if (!v) {
+               begin_ajax_response();
+               wprintf("Cannot locate a vNote within message %ld\n", msgnum);
+               end_ajax_response();
+               return;
+       }
+
+       /* Make any requested changes */
+        if (havebstr("top")) {
+               v->pos_top = atoi(bstr("top"));
+       }
+        if (havebstr("left")) {
+               v->pos_left = atoi(bstr("left"));
+       }
+        if (havebstr("height")) {
+               v->pos_height = atoi(bstr("height"));
+       }
+        if (havebstr("width")) {
+               v->pos_width = atoi(bstr("width"));
+       }
+        if (havebstr("value")) {       // I would have preferred 'body' but InPlaceEditor hardcodes 'value'
+               if (v->body) free(v->body);
+               v->body = strdup(bstr("value"));
+       }
+
+       /* Serialize it and save it to the message base.  Server will delete the old one. */
+       serv_puts("ENT0 1|||4");
+       serv_getln(buf, sizeof buf);
+       if (buf[0] == '4') {
+               serv_puts("Content-type: text/vnote");
+               serv_puts("");
+               serv_puts(vnote_serialize(v));
+               serv_puts("000");
+       }
+
+       begin_ajax_response();
+       if (v->body) {
+               escputs(v->body);
+       }
+       end_ajax_response();
+
+       vnote_free(v);
+}
+
+
+
+
+
+
+#ifdef NEW_NOTES_VIEW
+
+/*
+ * display sticky notes
+ *
+ * msgnum = Message number on the local server of the note to be displayed
+ */
+void display_note(long msgnum, int unread) {
+       struct vnote *v;
+
+       v = vnote_new_from_msg(msgnum);
+       if (v) {
+               display_vnote_div(v);
+
+               /* uncomment these lines to see ugly debugging info 
+               wprintf("<script type=\"text/javascript\">");
+               wprintf("document.write('L: ' + $('note-%s').style.left + '; ');", v->uid);
+               wprintf("document.write('T: ' + $('note-%s').style.top + '; ');", v->uid);
+               wprintf("document.write('W: ' + $('note-%s').style.width + '; ');", v->uid);
+               wprintf("document.write('H: ' + $('note-%s').style.height + '<br>');", v->uid);
+               wprintf("</script>");
+               */
+
+               vnote_free(v);
+       }
 }
 
 #endif