To extend an existing models also known as Basics we need to inherit from the existing model and then register the new model in place of the old model.
using Nikcio.UHeadless.Reflection.Factories;
using Nikcio.UHeadless.UmbracoElements.Properties.Commands;
using Nikcio.UHeadless.UmbracoElements.Properties.EditorsValues.BlockList.Models;
using Nikcio.UHeadless.UmbracoElements.Properties.Models;
public class CustomBlockListModel : BasicBlockListModel<BasicBlockListItem<BasicProperty>> {
public string MyCustomProperty { get; set; }
public CustomBlockListModel(CreatePropertyValue createPropertyValue, IDependencyReflectorFactory dependencyReflectorFactory) : base(createPropertyValue, dependencyReflectorFactory) {
MyCustomProperty = "Hello I'm Custom!";
}
}
Here we are creating a custom block list model value and adding the property MyCustomProperty
. We also reuse the BasicBlockListItem
and BasicProperty
model. These can also be overridden with custom classes and used in this model. (Note: If you make a custom BasicBlockListItem
or BasicProperty
these models can be used directly in the CustomBlockListModel
without being registed elsewhere.)
services.AddUmbraco(_env, _config)
.AddBackOffice()
.AddWebsite()
.AddComposers()
.AddUHeadless(new() {
PropertyServicesOptions = new() {
PropertyMapOptions = new() {
PropertyMappings = new() {
map => map.AddEditorMapping<CustomBlockListModel>(Constants.PropertyEditors.Aliases.BlockList)
}
}
}
})
.Build();
You need to register the mapping in the PropertyMapOptions. Here you can use the methods:
AddAliasMapping
Adds a mapping of a type to a content type alias combined with a property type alias.
AddEditorMapping
Adds a mapping of a type to a editor alias.
Now you can query a block list editor and you value should now be presented along with the custom property data.
Most of the Umbraco editors have a default Basic value set that will be used if no custom property mapping is set.
Find all the defaults under AddPropertyMapDefaults
in PropertyMap
If no basic is found the BasicPropertyValue
is used instead.
All property values support dependency injection which means you can inject any service you need into the constructor to create properties. For example:
public class CustomBlockListModel : BasicBlockListModel<BasicBlockListItem<BasicProperty>> {
public string MyCustomProperty { get; set; }
public CustomBlockListModel(CreatePropertyValue createPropertyValue, IDependencyReflectorFactory dependencyReflectorFactory, IContentService contentservice) : base(createPropertyValue, dependencyReflectorFactory) {
MyCustomProperty = "Hello I'm Custom!";
}
}