ソースを参照

Merge pull request #346 from 0x3333/master

Added SafeHtml as alternative to html string.
tags/gwtquery-project-1.5-beta1
Manuel Carrasco Moñino 9年前
コミット
a18b7b637a

+ 79
- 0
gwtquery-core/src/main/java/com/google/gwt/query/client/GQuery.java ファイルの表示

import com.google.gwt.query.client.plugins.widgets.WidgetsUtils; import com.google.gwt.query.client.plugins.widgets.WidgetsUtils;
import com.google.gwt.regexp.shared.MatchResult; import com.google.gwt.regexp.shared.MatchResult;
import com.google.gwt.regexp.shared.RegExp; import com.google.gwt.regexp.shared.RegExp;
import com.google.gwt.safehtml.shared.SafeHtml;
import com.google.gwt.user.client.DOM; import com.google.gwt.user.client.DOM;
import com.google.gwt.user.client.Event; import com.google.gwt.user.client.Event;
import com.google.gwt.user.client.EventListener; import com.google.gwt.user.client.EventListener;
public static GQuery $(String selectorOrHtml) { public static GQuery $(String selectorOrHtml) {
return $(selectorOrHtml, document); return $(selectorOrHtml, document);
} }
/**
* This function accepts a SafeHtml creating a GQuery element containing those elements.
*/
public static GQuery $(SafeHtml safeHtml) {
return $(safeHtml.asString());
}


/** /**
* This function accepts a string containing a CSS selector which is then used to match a set of * This function accepts a string containing a CSS selector which is then used to match a set of
public GQuery after(String html) { public GQuery after(String html) {
return domManip(html, DomMan.AFTER); return domManip(html, DomMan.AFTER);
} }
/**
* Insert content after each of the matched elements. The elements must already be inserted into
* the document (you can't insert an element after another if it's not in the page).
*/
public GQuery after(SafeHtml safeHtml) {
return after(safeHtml.asString());
}


private void allNextSiblingElements(Element firstChildElement, JsNodeArray result, Element elem, private void allNextSiblingElements(Element firstChildElement, JsNodeArray result, Element elem,
GQuery until, String filterSelector) { GQuery until, String filterSelector) {
public GQuery append(String html) { public GQuery append(String html) {
return domManip(html, DomMan.APPEND); return domManip(html, DomMan.APPEND);
} }
/**
* Append content to the inside of every matched element. This operation is similar to doing an
* appendChild to all the specified elements, adding them into the document.
*/
public GQuery append(SafeHtml safeHtml) {
return append(safeHtml.asString());
}


/** /**
* All of the matched set of elements will be inserted at the end of the element(s) specified by * All of the matched set of elements will be inserted at the end of the element(s) specified by
$(html).append(this); $(html).append(this);
return this; return this;
} }
/**
* All of the matched set of elements will be inserted at the end of the element(s) specified by
* the parameter other.
*
* The operation $(A).appendTo(B) is, essentially, the reverse of doing a regular $(A).append(B),
* instead of appending B to A, you're appending A to B.
*/
public GQuery appendTo(SafeHtml safeHtml) {
return appendTo(safeHtml.asString());
}


/** /**
* Convert to Plugin interface provided by Class literal. * Convert to Plugin interface provided by Class literal.
} }
return this; return this;
} }
/**
* Set the innerHTML of every matched element.
*/
public GQuery html(SafeHtml safeHtml) {
return html(safeHtml.asString());
}


/** /**
* Get the id of the first matched element. * Get the id of the first matched element.
public GQuery wrap(String html) { public GQuery wrap(String html) {
return wrap($(html)); return wrap($(html));
} }
/**
* Wrap each matched element with the specified SafeHtml content. This wrapping process is most useful
* for injecting additional structure into a document, without ruining the original semantic
* qualities of a document. This works by going through the first element provided (which is
* generated, on the fly, from the provided SafeHtml) and finds the deepest descendant element within
* its structure -- it is that element that will enwrap everything else.
*/
public GQuery wrap(SafeHtml safeHtml) {
return wrap(safeHtml.asString());
}


/** /**
* Wrap all the elements in the matched set into a single wrapper element. This is different from * Wrap all the elements in the matched set into a single wrapper element. This is different from
public GQuery wrapAll(String html) { public GQuery wrapAll(String html) {
return wrapAll($(html)); return wrapAll($(html));
} }
/**
* Wrap all the elements in the matched set into a single wrapper element. This is different from
* .wrap() where each element in the matched set would get wrapped with an element. This wrapping
* process is most useful for injecting additional structure into a document, without ruining the
* original semantic qualities of a document.
*
* This works by going through the first element provided (which is generated, on the fly, from
* the provided SafeHtml) and finds the deepest descendant element within its structure -- it is that
* element that will enwrap everything else.
*/
public GQuery wrapAll(SafeHtml safeHtml) {
return wrapAll(safeHtml.asString());
}


/** /**
* Wrap the inner child contents of each matched element (including text nodes) with an HTML * Wrap the inner child contents of each matched element (including text nodes) with an HTML
public GQuery wrapInner(String html) { public GQuery wrapInner(String html) {
return wrapInner($(html)); return wrapInner($(html));
} }
/**
* Wrap the inner child contents of each matched element (including text nodes) with an SafeHtml
* structure. This wrapping process is most useful for injecting additional structure into a
* document, without ruining the original semantic qualities of a document. This works by going
* through the first element provided (which is generated, on the fly, from the provided SafeHtml) and
* finds the deepest ancestor element within its structure -- it is that element that will enwrap
* everything else.
*/
public GQuery wrapInner(SafeHtml safeHtml) {
return wrapInner(safeHtml.asString());
}


private String join(String chr, String... values) { private String join(String chr, String... values) {
String value = ""; String value = "";

読み込み中…
キャンセル
保存