mirror of https://github.com/adamdruppe/arsd.git
classlist update to JS
This commit is contained in:
parent
5f64fe5d5b
commit
9ab2e5572d
78
dom.d
78
dom.d
|
@ -1,4 +1,3 @@
|
||||||
// FIXME: add classList. it is a live list and removes whitespace and duplicates when you use it.
|
|
||||||
// FIXME: xml namespace support???
|
// FIXME: xml namespace support???
|
||||||
// FIXME: https://developer.mozilla.org/en-US/docs/Web/API/Element/insertAdjacentHTML
|
// FIXME: https://developer.mozilla.org/en-US/docs/Web/API/Element/insertAdjacentHTML
|
||||||
// FIXME: parentElement is parentNode that skips DocumentFragment etc but will be hard to work in with my compatibility...
|
// FIXME: parentElement is parentNode that skips DocumentFragment etc but will be hard to work in with my compatibility...
|
||||||
|
@ -1556,10 +1555,72 @@ class Element : DomParent {
|
||||||
|
|
||||||
|
|
||||||
/// get all the classes on this element
|
/// get all the classes on this element
|
||||||
@property string[] classes() {
|
@property string[] classes() const {
|
||||||
return split(className, " ");
|
// FIXME: remove blank names
|
||||||
|
auto cs = split(className, " ");
|
||||||
|
foreach(ref c; cs)
|
||||||
|
c = c.strip();
|
||||||
|
return cs;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/++
|
||||||
|
The object [classList] returns.
|
||||||
|
+/
|
||||||
|
static struct ClassListHelper {
|
||||||
|
Element this_;
|
||||||
|
this(inout(Element) this_) inout {
|
||||||
|
this.this_ = this_;
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
bool contains(string cn) const {
|
||||||
|
return this_.hasClass(cn);
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
void add(string cn) {
|
||||||
|
this_.addClass(cn);
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
void remove(string cn) {
|
||||||
|
this_.removeClass(cn);
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
void toggle(string cn) {
|
||||||
|
if(contains(cn))
|
||||||
|
remove(cn);
|
||||||
|
else
|
||||||
|
add(cn);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/++
|
||||||
|
Returns a helper object to work with classes, just like javascript.
|
||||||
|
|
||||||
|
History:
|
||||||
|
Added August 25, 2022
|
||||||
|
+/
|
||||||
|
@property inout(ClassListHelper) classList() inout {
|
||||||
|
return inout(ClassListHelper)(this);
|
||||||
|
}
|
||||||
|
// FIXME: classList is supposed to whitespace and duplicates when you use it. need to test.
|
||||||
|
|
||||||
|
unittest {
|
||||||
|
Element element = Element.make("div");
|
||||||
|
element.classList.add("foo");
|
||||||
|
assert(element.classList.contains("foo"));
|
||||||
|
element.classList.remove("foo");
|
||||||
|
assert(!element.classList.contains("foo"));
|
||||||
|
element.classList.toggle("bar");
|
||||||
|
assert(element.classList.contains("bar"));
|
||||||
|
}
|
||||||
|
|
||||||
|
/// ditto
|
||||||
|
alias classNames = classes;
|
||||||
|
|
||||||
|
|
||||||
/// Adds a string to the class attribute. The class attribute is used a lot in CSS.
|
/// Adds a string to the class attribute. The class attribute is used a lot in CSS.
|
||||||
@scriptable
|
@scriptable
|
||||||
Element addClass(string c) {
|
Element addClass(string c) {
|
||||||
|
@ -1597,7 +1658,7 @@ class Element : DomParent {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Returns whether the given class appears in this element.
|
/// Returns whether the given class appears in this element.
|
||||||
bool hasClass(string c) {
|
bool hasClass(string c) const {
|
||||||
string cn = className;
|
string cn = className;
|
||||||
|
|
||||||
auto idx = cn.indexOf(c);
|
auto idx = cn.indexOf(c);
|
||||||
|
@ -1605,7 +1666,7 @@ class Element : DomParent {
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
foreach(cla; cn.split(" "))
|
foreach(cla; cn.split(" "))
|
||||||
if(cla == c)
|
if(cla.strip == c)
|
||||||
return true;
|
return true;
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
@ -1836,13 +1897,6 @@ class Element : DomParent {
|
||||||
return e;
|
return e;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
Splits the className into an array of each class given
|
|
||||||
*/
|
|
||||||
string[] classNames() const {
|
|
||||||
return className().split(" ");
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Fetches the first consecutive text nodes concatenated together.
|
Fetches the first consecutive text nodes concatenated together.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue