|
14 | 14 | */ |
15 | 15 | package org.htmlunit.javascript.host.html; |
16 | 16 |
|
| 17 | +import java.io.Serializable; |
| 18 | +import java.util.function.Predicate; |
| 19 | + |
| 20 | +import org.htmlunit.html.DomElement; |
| 21 | +import org.htmlunit.html.DomNode; |
| 22 | +import org.htmlunit.html.HtmlPage; |
17 | 23 | import org.htmlunit.html.HtmlTableBody; |
18 | 24 | import org.htmlunit.html.HtmlTableFooter; |
19 | 25 | import org.htmlunit.html.HtmlTableHeader; |
| 26 | +import org.htmlunit.html.HtmlTableRow; |
| 27 | +import org.htmlunit.javascript.HtmlUnitScriptable; |
| 28 | +import org.htmlunit.javascript.JavaScriptEngine; |
20 | 29 | import org.htmlunit.javascript.configuration.JsxClass; |
21 | 30 | import org.htmlunit.javascript.configuration.JsxConstructor; |
| 31 | +import org.htmlunit.javascript.configuration.JsxFunction; |
22 | 32 | import org.htmlunit.javascript.configuration.JsxGetter; |
23 | 33 | import org.htmlunit.javascript.configuration.JsxSetter; |
| 34 | +import org.htmlunit.javascript.host.dom.DOMException; |
24 | 35 |
|
25 | 36 | /** |
26 | 37 | * A JavaScript object representing "HTMLTableSectionElement", it is used by |
|
33 | 44 | @JsxClass(domClass = HtmlTableBody.class) |
34 | 45 | @JsxClass(domClass = HtmlTableHeader.class) |
35 | 46 | @JsxClass(domClass = HtmlTableFooter.class) |
36 | | -public class HTMLTableSectionElement extends RowContainer { |
| 47 | +public class HTMLTableSectionElement extends HTMLElement { |
37 | 48 |
|
38 | 49 | /** The default value of the "vAlign" property. */ |
39 | 50 | private static final String VALIGN_DEFAULT_VALUE = "top"; |
@@ -112,4 +123,128 @@ public String getChOff() { |
112 | 123 | public void setChOff(final String chOff) { |
113 | 124 | super.setChOff(chOff); |
114 | 125 | } |
| 126 | + |
| 127 | + /** |
| 128 | + * Returns the rows in the element. |
| 129 | + * @return the rows in the element |
| 130 | + */ |
| 131 | + @JsxGetter |
| 132 | + public HTMLCollection getRows() { |
| 133 | + final HTMLCollection rows = new HTMLCollection(getDomNodeOrDie(), false); |
| 134 | + rows.setIsMatchingPredicate( |
| 135 | + (Predicate<DomNode> & Serializable) |
| 136 | + node -> node instanceof HtmlTableRow && isContainedRow((HtmlTableRow) node)); |
| 137 | + return rows; |
| 138 | + } |
| 139 | + |
| 140 | + /** |
| 141 | + * Indicates if the row belongs to this container. |
| 142 | + * @param row the row to test |
| 143 | + * @return {@code true} if it belongs to this container |
| 144 | + */ |
| 145 | + protected boolean isContainedRow(final HtmlTableRow row) { |
| 146 | + return row.getParentNode() == getDomNodeOrDie(); |
| 147 | + } |
| 148 | + |
| 149 | + /** |
| 150 | + * Deletes the row at the specified index. |
| 151 | + * @see <a href="http://msdn.microsoft.com/en-us/library/ms536408.aspx">MSDN Documentation</a> |
| 152 | + * @param rowIndex the zero-based index of the row to delete |
| 153 | + */ |
| 154 | + @JsxFunction |
| 155 | + public void deleteRow(int rowIndex) { |
| 156 | + final HTMLCollection rows = getRows(); |
| 157 | + final int rowCount = rows.getLength(); |
| 158 | + if (rowIndex == -1) { |
| 159 | + rowIndex = rowCount - 1; |
| 160 | + } |
| 161 | + final boolean rowIndexValid = rowIndex >= 0 && rowIndex < rowCount; |
| 162 | + if (rowIndexValid) { |
| 163 | + final HtmlUnitScriptable row = (HtmlUnitScriptable) rows.item(Integer.valueOf(rowIndex)); |
| 164 | + row.getDomNodeOrDie().remove(); |
| 165 | + } |
| 166 | + } |
| 167 | + |
| 168 | + /** |
| 169 | + * Inserts a new row at the specified index in the element's row collection. If the index |
| 170 | + * is -1 or there is no index specified, then the row is appended at the end of the |
| 171 | + * element's row collection. |
| 172 | + * @see <a href="http://msdn.microsoft.com/en-us/library/ms536457.aspx">MSDN Documentation</a> |
| 173 | + * @param index specifies where to insert the row in the rows collection. |
| 174 | + * The default value is -1, which appends the new row to the end of the rows collection |
| 175 | + * @return the newly-created row |
| 176 | + */ |
| 177 | + @JsxFunction |
| 178 | + public HtmlUnitScriptable insertRow(final Object index) { |
| 179 | + int rowIndex = -1; |
| 180 | + if (!JavaScriptEngine.isUndefined(index)) { |
| 181 | + rowIndex = (int) JavaScriptEngine.toNumber(index); |
| 182 | + } |
| 183 | + final HTMLCollection rows = getRows(); |
| 184 | + final int rowCount = rows.getLength(); |
| 185 | + final int r; |
| 186 | + if (rowIndex == -1 || rowIndex == rowCount) { |
| 187 | + r = Math.max(0, rowCount); |
| 188 | + } |
| 189 | + else { |
| 190 | + r = rowIndex; |
| 191 | + } |
| 192 | + |
| 193 | + if (r < 0 || r > rowCount) { |
| 194 | + throw JavaScriptEngine.asJavaScriptException( |
| 195 | + getWindow(), |
| 196 | + "Index or size is negative or greater than the allowed amount " |
| 197 | + + "(index: " + rowIndex + ", " + rowCount + " rows)", |
| 198 | + DOMException.INDEX_SIZE_ERR); |
| 199 | + } |
| 200 | + |
| 201 | + return insertRow(r); |
| 202 | + } |
| 203 | + |
| 204 | + /** |
| 205 | + * Inserts a new row at the given position. |
| 206 | + * @param index the index where the row should be inserted (0 <= index <= nbRows) |
| 207 | + * @return the inserted row |
| 208 | + */ |
| 209 | + public HtmlUnitScriptable insertRow(final int index) { |
| 210 | + final HTMLCollection rows = getRows(); |
| 211 | + final int rowCount = rows.getLength(); |
| 212 | + final DomElement newRow = ((HtmlPage) getDomNodeOrDie().getPage()).createElement("tr"); |
| 213 | + if (rowCount == 0) { |
| 214 | + getDomNodeOrDie().appendChild(newRow); |
| 215 | + } |
| 216 | + else if (index == rowCount) { |
| 217 | + final HtmlUnitScriptable row = (HtmlUnitScriptable) rows.item(Integer.valueOf(index - 1)); |
| 218 | + row.getDomNodeOrDie().getParentNode().appendChild(newRow); |
| 219 | + } |
| 220 | + else { |
| 221 | + final HtmlUnitScriptable row = (HtmlUnitScriptable) rows.item(Integer.valueOf(index)); |
| 222 | + // if at the end, then in the same "sub-container" as the last existing row |
| 223 | + if (index > rowCount - 1) { |
| 224 | + row.getDomNodeOrDie().getParentNode().appendChild(newRow); |
| 225 | + } |
| 226 | + else { |
| 227 | + row.getDomNodeOrDie().insertBefore(newRow); |
| 228 | + } |
| 229 | + } |
| 230 | + return getScriptableFor(newRow); |
| 231 | + } |
| 232 | + |
| 233 | + /** |
| 234 | + * Returns the value of the {@code align} property. |
| 235 | + * @return the value of the {@code align} property |
| 236 | + */ |
| 237 | + @JsxGetter |
| 238 | + public String getAlign() { |
| 239 | + return getAlign(true); |
| 240 | + } |
| 241 | + |
| 242 | + /** |
| 243 | + * Sets the value of the {@code align} property. |
| 244 | + * @param align the value of the {@code align} property |
| 245 | + */ |
| 246 | + @JsxSetter |
| 247 | + public void setAlign(final String align) { |
| 248 | + setAlign(align, false); |
| 249 | + } |
115 | 250 | } |
0 commit comments