]> code.citadel.org Git - citadel.git/blobdiff - webcit/notes.c
Color selector for sticky notes is now opaque instead
[citadel.git] / webcit / notes.c
index 7497746ca5dc3e4ecf6775e5b326925a2867ec09..1fcb6213d5870eff42a2d65344a4f1ea23eb01e1 100644 (file)
 #include "groupdav.h"
 #include "webserver.h"
 
-
-/*
- * Uncomment this #define in order to get the new vNote-based sticky notes view.
- * We're keeping both versions here so that I can work on the new view without breaking
- * the existing implementation prior to completion.
- */
-
-/* #define NEW_NOTES_VIEW */
-
-
-#ifndef 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)
-{
-       char buf[SIZ];
-       char notetext[SIZ];
-       char display_notetext[SIZ];
-       char eid[128];
-       int in_text = 0;
-       int i, len;
-
-       serv_printf("MSG0 %ld", msgnum);
-       serv_getln(buf, sizeof buf);
-       if (buf[0] != '1') {
-               wprintf("%s<br />\n", &buf[4]);
-               return;
-       }
-
-       strcpy(notetext, "");
-       strcpy(eid, "");
-       while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
-
-               /* Fill the buffer */
-               if ( (in_text) && (strlen(notetext) < SIZ-256) ) {
-                       strcat(notetext, buf);
-               }
-
-               if ( (!in_text) && (!strncasecmp(buf, "exti=", 5)) ) {
-                       safestrncpy(eid, &buf[5], sizeof eid);
-               }
-
-               if ( (!in_text) && (!strcasecmp(buf, "text")) ) {
-                       in_text = 1;
-               }
-       }
-
-       /* Now sanitize the buffer */
-       len = strlen(notetext);
-       for (i=0; i<len; ++i) {
-               if (isspace(notetext[i])) notetext[i] = ' ';
-       }
-
-       /* Make it HTML-happy and print it. */
-       stresc(display_notetext, SIZ, notetext, 0, 0);
-
-       /* Lets try it as a draggable */
-       if (!IsEmptyStr(eid)) {
-               wprintf ("<IMG ALIGN=MIDDLE src=\"static/storenotes_48x.gif\" id=\"note_%s\" alt=\"Note\" ", eid); 
-               wprintf ("class=\"notes\">\n");
-               wprintf ("<script type=\"text/javascript\">\n");
-               wprintf ("new Draggable (\"note_%s\", {revert:true})\n", eid);
-               wprintf ("</script>\n");
-       }
-       else {
-               wprintf ("<IMG ALIGN=MIDDLE src=\"static/storenotes_48x.gif\" id=\"note_%ld\" ", msgnum); 
-               wprintf ("class=\"notes\">\n");
-               wprintf ("<script type=\"text/javascript\">\n");
-               wprintf ("new Draggable (\"note_%ld\", {revert:true})\n", msgnum);
-               wprintf ("</script>\n");
-       }
-       
-       if (!IsEmptyStr(eid)) {
-               wprintf("<span id=\"note%s\">%s</span><br />\n", eid, display_notetext);
-       }
-       else {
-               wprintf("<span id=\"note%ld\">%s</span><br />\n", msgnum, display_notetext);
-       }
-
-       /* Offer in-place editing. */
-       if (!IsEmptyStr(eid)) {
-               wprintf("<script type=\"text/javascript\">"
-                       "new Ajax.InPlaceEditor('note%s', 'updatenote?nonce=%ld?eid=%s', {rows:5,cols:72});"
-                       "</script>\n",
-                       eid,
-                       WC->nonce,
-                       eid
-               );
-       }
-}
-#endif
-
-
-/*
- * This gets called by the Ajax.InPlaceEditor when we save a note.
- */
-void updatenote(void)
-{
-       char buf[SIZ];
-       char notetext[SIZ];
-       char display_notetext[SIZ];
-       long msgnum;
-       int in_text = 0;
-       int i, len;
-
-       serv_printf("ENT0 1||0|0||||||%s", bstr("eid"));
-       serv_getln(buf, sizeof buf);
-       if (buf[0] == '4') {
-               text_to_server(bstr("value"));
-               serv_puts("000");
-       }
-
-       begin_ajax_response();
-       msgnum = locate_message_by_uid(bstr("eid"));
-       if (msgnum >= 0L) {
-               serv_printf("MSG0 %ld", msgnum);
-               serv_getln(buf, sizeof buf);
-               if (buf[0] == '1') {
-                       strcpy(notetext, "");
-                       while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
-               
-                               /* Fill the buffer */
-                               if ( (in_text) && (strlen(notetext) < SIZ-256) ) {
-                                       strcat(notetext, buf);
-                               }
-               
-                               if ( (!in_text) && (!strcasecmp(buf, "text")) ) {
-                                       in_text = 1;
-                               }
-                       }
-                       /* Now sanitize the buffer */
-                       len = strlen(notetext);
-                       for (i=0; i<len; ++i) {
-                               if (isspace(notetext[i])) notetext[i] = ' ';
-                       }
-               
-                       /* Make it HTML-happy and print it. */
-                       stresc(display_notetext, SIZ, notetext, 0, 0);
-                       wprintf("%s\n", display_notetext);
-               }
-       }
-       else {
-               wprintf("%s", _("An error has occurred."));
-       }
-
-       end_ajax_response();
-}
-
-
-
+char *pastel_palette[] = {
+       "#808080",
+       "#ff8080",
+       "#8080ff",
+       "#ffff80",
+       "#80ff80",
+       "#ff80ff",
+       "#80ffff",
+       "#ff8080",
+       "#808080"
+};
 
 
 /*
  * Display a <div> containing a rendered sticky note.
  */
 void display_vnote_div(struct vnote *v) {
+       int i;
 
        /* begin outer div */
 
@@ -189,11 +48,30 @@ void display_vnote_div(struct vnote *v) {
        wprintf("\">");
 
        wprintf("<table border=0 cellpadding=0 cellspacing=0 valign=middle width=100%%><tr>");
-       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';\" "
-               "><img src=\"static/closewindow.gif\">");
+       wprintf("<td align=left valign=middle>");
+       wprintf("<img onclick=\"NotesClickPalette(event,'%s')\" ", v->uid);
+       wprintf("src=\"static/8paint16.gif\">");
+
+       /* embed color selector */
+       wprintf("<div id=\"palette-%s\" ", v->uid);
+       wprintf("class=\"stickynote_palette\" ");
+       wprintf("<table border=0 cellpadding=0 cellspacing=0>");
+       for (i=0; i<9; ++i) {
+               if ((i%3)==0) wprintf("<tr>");
+               wprintf("<td bgcolor=\"%s\"> </td>", pastel_palette[i]);
+               if (((i+1)%3)==0) wprintf("</tr>");
+       }
+       wprintf("</table>");
+       wprintf("</div>");
+
+       wprintf("</td>");
+
+       wprintf("<td></td>");   // nothing in the title bar, it's just for resizing
+
+       wprintf("<td align=right valign=middle>");
+       wprintf("<img onclick=\"DeleteStickyNote(event,'%s','%s')\" ", v->uid, _("Delete this note?") );
+       wprintf("src=\"static/closewindow.gif\">");
        wprintf("</td></tr></table>");
 
        wprintf("</div>\n");
@@ -285,6 +163,9 @@ struct vnote *vnote_new_from_msg(long msgnum) {
                        if (!vnote_from_body) {
                                vnote_from_body = vnote_new();
                                vnote_from_body->uid = strdup(uid_from_headers);
+                               vnote_from_body->color_red = 0xFF;
+                               vnote_from_body->color_green = 0xff;    // pastel yellow
+                               vnote_from_body->color_blue = 0x80;
                                vnote_from_body->body = malloc(32768);
                                vnote_from_body->body[0] = 0;
                                body_len = 0;
@@ -317,6 +198,26 @@ struct vnote *vnote_new_from_msg(long msgnum) {
 }
 
 
+/*
+ * Serialize a vnote and write it to the server
+ */
+void write_vnote_to_server(struct vnote *v) 
+{
+       char buf[1024];
+
+       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");
+       }
+}
+
+
+
+
 /*
  * Background ajax call to receive updates from the browser when a note is moved, resized, or updated.
  */
@@ -343,6 +244,21 @@ void ajax_update_note(void) {
                return;
        }
        msgnum = atol(&buf[4]);
+       lprintf(9, "Note msg = %ld\n", msgnum);
+
+       // Was this request a delete operation?  If so, nuke it...
+       if (havebstr("deletenote")) {
+               if (!strcasecmp(bstr("deletenote"), "yes")) {
+                       serv_printf("DELE %ld", msgnum);
+                       serv_getln(buf, sizeof buf);
+                       begin_ajax_response();
+                       wprintf("%s", buf);
+                       end_ajax_response();
+                       return;
+               }
+       }
+
+       // If we get to this point it's an update, not a delete
        v = vnote_new_from_msg(msgnum);
        if (!v) {
                begin_ajax_response();
@@ -370,14 +286,7 @@ void ajax_update_note(void) {
        }
 
        /* 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");
-       }
+       write_vnote_to_server(v);
 
        begin_ajax_response();
        if (v->body) {
@@ -391,10 +300,6 @@ void ajax_update_note(void) {
 
 
 
-
-
-#ifdef NEW_NOTES_VIEW
-
 /*
  * display sticky notes
  *
@@ -420,4 +325,25 @@ void display_note(long msgnum, int unread) {
        }
 }
 
-#endif
+
+
+/*
+ * Create a new note
+ */
+void add_new_note(void) {
+       struct vnote *v;
+
+       v = vnote_new();
+       if (v) {
+               v->uid = malloc(128);
+               generate_uuid(v->uid);
+               v->color_red = 0xFF;
+               v->color_green = 0xff;  // pastel yellow
+               v->color_blue = 0x80;
+               v->body = strdup(_("Click on any note to edit it."));
+               write_vnote_to_server(v);
+               vnote_free(v);
+       }
+       
+       readloop("readfwd");
+}