com.vaadin.flow.component.polymertemplate.
Class NpmTemplateParser
- java.lang.Object
-
- com.vaadin.flow.component.polymertemplate.NpmTemplateParser
-
All Implemented Interfaces:
public class NpmTemplateParser extends Object implements TemplateParser
Npm template parser implementation.
The implementation scans all JsModule annotations for the given template class and tries to find the one that contains template definition using the tag name.
The class is Singleton. Use
getInstance()
to get its instance.Since:
2.0
Author:
Vaadin Ltd
See Also:
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.vaadin.flow.component.polymertemplate.TemplateParser
TemplateParser.TemplateData
-
-
Constructor Summary
Constructors Modifier Constructor and Description protected
NpmTemplateParser()
The default constructor.
-
Method Summary
All Methods Modifier and Type Method and Description static TemplateParser
getInstance()
protected String
getSourcesFromTemplate(String tag, String url)
Finds the JavaScript sources for given tag.
TemplateParser.TemplateData
getTemplateContent(Class<? extends PolymerTemplate<?>> clazz, String tag, VaadinService service)
Gets the template data which contains a JSOUP
Element
representing the template content and the template uri.protected boolean
isStatsFileReadNeeded(VaadinService service)
Check status to see if stats.json needs to be loaded and parsed.
-
-
-
Constructor Detail
-
NpmTemplateParser
protected NpmTemplateParser()
The default constructor. Protected in order to prevent direct instantiation, but not private in order to allow mocking/overrides for testing purposes.
-
-
Method Detail
-
getInstance
public static TemplateParser getInstance()
-
getTemplateContent
public TemplateParser.TemplateData getTemplateContent(Class<? extends PolymerTemplate<?>> clazz, String tag, VaadinService service)
Description copied from interface:
TemplateParser
Gets the template data which contains a JSOUP
Element
representing the template content and the template uri.Specified by:
getTemplateContent
in interfaceTemplateParser
Parameters:
clazz
- the template classtag
- the template tag nameservice
- the related Vaadin serviceReturns:
the template data
-
getSourcesFromTemplate
protected String getSourcesFromTemplate(String tag, String url)
Finds the JavaScript sources for given tag.
-
isStatsFileReadNeeded
protected boolean isStatsFileReadNeeded(VaadinService service) throws IOException
Check status to see if stats.json needs to be loaded and parsed.
Always load if jsonStats is null, never load again when we have a bundle as it never changes, always load a new stats if the hash has changed and we do not have a bundle.
Parameters:
service
- the Vaadin service.Returns:
true
if we need to re-load and parse stats.json, elsefalse
Throws:
-
-