Need to customize the OOB content fragment and content fragment list components in AEM + React SPA. Also we need to add the custom plugins in the RTE of content fragment model. Please help me with the steps.
If you want to customize content fragment list components then one approach is that you do it through custom model class, which will eventually use delegate feature of AEM sling models. Delegate your custom model class to core component CF list model class and then override the method used in it. You can refer the core class :"com.adobe.cq.wcm.core.components.models.contentfragment.ContentFragmentList" to dig deep into it as what all functionality is present into it.
If you want to customize content fragment list components then one approach is that you do it through custom model class, which will eventually use delegate feature of AEM sling models. Delegate your custom model class to core component CF list model class and then override the method used in it. You can refer the core class :"com.adobe.cq.wcm.core.components.models.contentfragment.ContentFragmentList" to dig deep into it as what all functionality is present into it.