Skip to content

Commit

Permalink
Merge pull request #1707 from riganti/KnockoutBindingGroup-doccomments
Browse files Browse the repository at this point in the history
Add documentation comments to the KnockoutBindingGroup
  • Loading branch information
tomasherceg authored Oct 7, 2023
2 parents 4231d99 + 2cd5d48 commit a9358eb
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions src/Framework/Framework/Controls/KnockoutBindingGroup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,15 @@

namespace DotVVM.Framework.Controls
{
/// <summary> Represents a JS object holding multiple binding expressions or constant values. The binding handler will receive the JS object with the evaluated bindings, or the constants provided to the KnockoutBindingGroup.Add method. The group can either be passed to IHtmlWriter or converted into a string expression using <see cref="ToString()"/> </summary>
public class KnockoutBindingGroup: IEnumerable<KnockoutBindingGroup.KnockoutBindingInfo>
{

private List<KnockoutBindingInfo> entries = new List<KnockoutBindingInfo>();

private readonly List<KnockoutBindingInfo> entries = new List<KnockoutBindingInfo>();
public bool IsEmpty => entries.Count == 0;
public int Count => entries.Count;


/// <summary> Adds value of the specified dotvvm <paramref name="property"/>. If the property contains a value binding, the JS expression is added to the group. Otherwise, the JSON serialized constant value is added. </summary>
public virtual void Add(string name, DotvvmControl control, DotvvmProperty property, Action? nullBindingAction = null)
{
var binding = control.GetValueBinding(property);
Expand All @@ -30,17 +32,20 @@ public virtual void Add(string name, DotvvmControl control, DotvvmProperty prope
}
}

/// <summary> Adds the JS <paramref name="expression"/> to the group. </summary>
public virtual void Add(string name, string expression)
{
entries.Add(new KnockoutBindingInfo(name, expression));
}

/// <summary> Adds another nested group. If the nested group is empty, nothing is added (undefined will be in the field). </summary>
public void Add(string name, KnockoutBindingGroup nestedGroup)
{
if (!nestedGroup.IsEmpty)
Add(name, nestedGroup.ToString());
}

/// <summary> Adds a knockout binding expression of the specified value binding. </summary>
public void Add(string name, DotvvmBindableObject contextControl, IValueBinding binding)
{
var expression = binding.GetKnockoutBindingExpression(contextControl);
Expand All @@ -56,12 +61,14 @@ public virtual void Add(string name, string expression, bool surroundWithDoubleQ
Add(name, expression);
}

/// <summary> Adds the specified value as a JSON serialized constant expression. </summary>
public virtual void AddValue(string name, object? value)
{
var expression = JsonConvert.SerializeObject(value, DefaultSerializerSettingsProvider.Instance.Settings);
Add(name, expression);
}

/// <summary> Copies all fields from the <paramref name="other"/> binding group. </summary>
public virtual void AddFrom(KnockoutBindingGroup other)
{
entries.AddRange(other.entries);
Expand All @@ -74,6 +81,7 @@ protected virtual string GetKnockoutBindingExpression(DotvvmBindableObject obj,
return valueBinding.GetKnockoutBindingExpression(obj);
}

/// <summary> Returns the JS object expression with the <c>Add</c>ed fields. </summary>
public override string ToString()
{
if (entries.Count == 0) return "{}";
Expand All @@ -84,6 +92,7 @@ public override string ToString()

IEnumerator IEnumerable.GetEnumerator() => GetEnumerator();

/// <summary> A named expression - a field in the <see cref="KnockoutBindingGroup" /> </summary>
public class KnockoutBindingInfo
{
public KnockoutBindingInfo(string name, string expression)
Expand All @@ -92,7 +101,9 @@ public KnockoutBindingInfo(string name, string expression)
Expression = expression;
}

/// <summary> The field name in the resulting JS object. </summary>
public string Name { get; }
/// <summary> JS expression returning the desired value. </summary>
public string Expression { get; }

public override string ToString()
Expand Down

0 comments on commit a9358eb

Please sign in to comment.