feat: introduce new composable data providers and increment version

- Added `AnchorDataProvider`, `AnchorCollectionDataProvider`, `ContentsDataProvider`, `ContentsArrayDataProvider`, `DropDownDataProvider`, `ListContentDataProvider`, and `ParagraphedContentDataProvider` for enhanced data extraction flexibility.
- Updated project version to 2.5.0.
This commit is contained in:
qwsdcvghyu89
2025-11-15 20:51:18 +11:00
parent b5faf58b1a
commit 647b2b0f37
11 changed files with 279 additions and 4 deletions
@@ -0,0 +1,30 @@
using HtmlAgilityPack;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Beam.Abstractions;
namespace Beam.Dynamic {
public class ContentsDataProvider : IComposableDataProvider<string> {
public IBinding? Content { get; set; }
public string Get(HtmlDocument document) {
var node = Select(document);
return node is null ? "" : Get(node);
}
public string Get(HtmlNode node) {
return node.InnerText;
}
public HtmlNode? Select(HtmlDocument doc) {
return Content?.Select(doc);
}
public HtmlNode? Select(HtmlNode node) {
return node;
}
}
}