482a46b568
Updated project files for `Beam.Dynamic`, `Beam.Exports`, `Beam.Temporary.Cli`, and `Beam` to include additional metadata and specific package versions. Refactored `DataBindings` and `ResolvedBindings` to records, added a new `Text` property in `Binding.cs`, and introduced `ParseNumbers` in `OnlineCleaner`. New classes `PuppetContext` and `PuppetUnitDownloader` added for Playwright integration. Introduced `ImmutableState` struct and `UnitDownloaderBinary` class for improved download management. Updated tests in `UnitTest1.cs` for number localization. Added `Beam.Puppeteer` project to the solution.
28 lines
1.0 KiB
C#
28 lines
1.0 KiB
C#
|
|
|
|
using aeqw89.DataKeys;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Beam.Temporary.Cli {
|
|
public class TextResource : IKeyed<TextResource> {
|
|
public required DataKey<TextResource> Key { get; set; }
|
|
public string? FriendlyName { get; set; }
|
|
public DataKey<WebResource>? AssociatedSource { get; set; }
|
|
public DataKey<WebResource>? AssociatedMetaSource { get; set; }
|
|
public required ImmutableState TemplateInitialData { get; set; }
|
|
public ImmutableState? MetaTemplateInitialData { get; set; }
|
|
|
|
public TextResourceRecord ToRecord(BeamDataDictionary sdd) {
|
|
return new(this,
|
|
AssociatedSource is null ? null : sdd.Aggregators[AssociatedSource],
|
|
AssociatedMetaSource is null ? null : sdd.Auxillaries[AssociatedMetaSource]);
|
|
}
|
|
}
|
|
|
|
public record TextResourceRecord(TextResource Resource, WebResource? AssociatedSource, WebResource? AssociatedMetaSource);
|
|
}
|