summaryrefslogtreecommitdiffstats
path: root/comm/mail/components/compose/content/dialogs/EdInsertTable.js
blob: 5da0da46d39e4f93a330e648576df815c960b968 (plain)
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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

/* import-globals-from ../editorUtilities.js */
/* import-globals-from EdDialogCommon.js */

// Cancel() is in EdDialogCommon.js

var gTableElement = null;
var gRows;
var gColumns;
var gActiveEditor;

// dialog initialization code

document.addEventListener("dialogaccept", onAccept);
document.addEventListener("dialogcancel", onCancel);

function Startup() {
  gActiveEditor = GetCurrentTableEditor();
  if (!gActiveEditor) {
    dump("Failed to get active editor!\n");
    window.close();
    return;
  }

  try {
    gTableElement = gActiveEditor.createElementWithDefaults("table");
  } catch (e) {}

  if (!gTableElement) {
    dump("Failed to create a new table!\n");
    window.close();
    return;
  }
  gDialog.rowsInput = document.getElementById("rowsInput");
  gDialog.columnsInput = document.getElementById("columnsInput");
  gDialog.widthInput = document.getElementById("widthInput");
  gDialog.borderInput = document.getElementById("borderInput");
  gDialog.widthPixelOrPercentMenulist = document.getElementById(
    "widthPixelOrPercentMenulist"
  );
  gDialog.OkButton = document.querySelector("dialog").getButton("accept");

  // Make a copy to use for AdvancedEdit
  globalElement = gTableElement.cloneNode(false);
  try {
    if (
      Services.prefs.getBoolPref("editor.use_css") &&
      IsHTMLEditor() &&
      !(gActiveEditor.flags & Ci.nsIEditor.eEditorMailMask)
    ) {
      // only for Composer and not for htmlmail
      globalElement.setAttribute("style", "text-align: left;");
    }
  } catch (e) {}

  // Initialize all widgets with image attributes
  InitDialog();

  // Set initial number to 2 rows, 2 columns:
  // Note, these are not attributes on the table,
  //  so don't put them in InitDialog(),
  //  else the user's values will be trashed when they use
  //  the Advanced Edit dialog
  gDialog.rowsInput.value = 2;
  gDialog.columnsInput.value = 2;

  // If no default value on the width, set to 100%
  if (gDialog.widthInput.value.length == 0) {
    gDialog.widthInput.value = "100";
    gDialog.widthPixelOrPercentMenulist.selectedIndex = 1;
  }

  SetTextboxFocusById("rowsInput");

  SetWindowLocation();
}

// Set dialog widgets with attribute data
// We get them from globalElement copy so this can be used
//   by AdvancedEdit(), which is shared by all property dialogs
function InitDialog() {
  // Get default attributes set on the created table:
  // Get the width attribute of the element, stripping out "%"
  // This sets contents of menu combobox list
  // 2nd param = null: Use current selection to find if parent is table cell or window
  gDialog.widthInput.value = InitPixelOrPercentMenulist(
    globalElement,
    null,
    "width",
    "widthPixelOrPercentMenulist",
    gPercent
  );
  gDialog.borderInput.value = globalElement.getAttribute("border");
}

function ChangeRowOrColumn(id) {
  // Allow only integers
  forceInteger(id);

  // Enable OK only if both rows and columns have a value > 0
  var enable =
    gDialog.rowsInput.value.length > 0 &&
    gDialog.rowsInput.value > 0 &&
    gDialog.columnsInput.value.length > 0 &&
    gDialog.columnsInput.value > 0;

  SetElementEnabled(gDialog.OkButton, enable);
  SetElementEnabledById("AdvancedEditButton1", enable);
}

// Get and validate data from widgets.
// Set attributes on globalElement so they can be accessed by AdvancedEdit()
function ValidateData() {
  gRows = ValidateNumber(
    gDialog.rowsInput,
    null,
    1,
    gMaxRows,
    null,
    null,
    true
  );
  if (gValidationError) {
    return false;
  }

  gColumns = ValidateNumber(
    gDialog.columnsInput,
    null,
    1,
    gMaxColumns,
    null,
    null,
    true
  );
  if (gValidationError) {
    return false;
  }

  // Set attributes: NOTE: These may be empty strings (last param = false)
  ValidateNumber(
    gDialog.borderInput,
    null,
    0,
    gMaxPixels,
    globalElement,
    "border",
    false
  );
  // TODO: Deal with "BORDER" without value issue
  if (gValidationError) {
    return false;
  }

  ValidateNumber(
    gDialog.widthInput,
    gDialog.widthPixelOrPercentMenulist,
    1,
    gMaxTableSize,
    globalElement,
    "width",
    false
  );
  if (gValidationError) {
    return false;
  }

  return true;
}

function onAccept(event) {
  if (ValidateData()) {
    gActiveEditor.beginTransaction();
    try {
      gActiveEditor.cloneAttributes(gTableElement, globalElement);

      // Create necessary rows and cells for the table
      var tableBody = gActiveEditor.createElementWithDefaults("tbody");
      if (tableBody) {
        gTableElement.appendChild(tableBody);

        // Create necessary rows and cells for the table
        for (var i = 0; i < gRows; i++) {
          var newRow = gActiveEditor.createElementWithDefaults("tr");
          if (newRow) {
            tableBody.appendChild(newRow);
            for (var j = 0; j < gColumns; j++) {
              var newCell = gActiveEditor.createElementWithDefaults("td");
              if (newCell) {
                newRow.appendChild(newCell);
              }
            }
          }
        }
      }
      // Detect when entire cells are selected:
      // Get number of cells selected
      var tagNameObj = { value: "" };
      var countObj = { value: 0 };
      var element = gActiveEditor.getSelectedOrParentTableElement(
        tagNameObj,
        countObj
      );
      var deletePlaceholder = false;

      if (tagNameObj.value == "table") {
        // Replace entire selected table with new table, so delete the table
        gActiveEditor.deleteTable();
      } else if (tagNameObj.value == "td") {
        if (countObj.value >= 1) {
          if (countObj.value > 1) {
            // Assume user wants to replace a block of
            //  contiguous cells with a table, so
            //  join the selected cells
            gActiveEditor.joinTableCells(false);

            // Get the cell everything was merged into
            element = gActiveEditor.getSelectedCells()[0];

            // Collapse selection into just that cell
            gActiveEditor.selection.collapse(element, 0);
          }

          if (element) {
            // Empty just the contents of the cell
            gActiveEditor.deleteTableCellContents();

            // Collapse selection to start of empty cell...
            gActiveEditor.selection.collapse(element, 0);
            // ...but it will contain a <br> placeholder
            deletePlaceholder = true;
          }
        }
      }

      // true means delete selection when inserting
      gActiveEditor.insertElementAtSelection(gTableElement, true);

      if (
        deletePlaceholder &&
        gTableElement &&
        gTableElement.nextElementSibling
      ) {
        // Delete the placeholder <br>
        gActiveEditor.deleteNode(gTableElement.nextElementSibling);
      }
    } catch (e) {}

    gActiveEditor.endTransaction();

    SaveWindowLocation();
    return;
  }
  event.preventDefault();
}