/** * Copyright (c) 2012-2015 Edgar Espina * * This file is part of Handlebars.java. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.github.jknack.handlebars.internal; import java.io.IOException; import java.io.Writer; import java.util.List; import java.util.Map; import com.github.jknack.handlebars.Context; import com.github.jknack.handlebars.Decorator; import com.github.jknack.handlebars.Handlebars; import com.github.jknack.handlebars.Options; import com.github.jknack.handlebars.TagType; import com.github.jknack.handlebars.Template; /** * A block decorator implementation. * * @author edgar * @since 4.0.0 */ public class BlockDecorator extends Block { /** Underlying decorator. */ private Decorator decorator; /** True, if this is top level decorator. */ private boolean root; /** * Creates a new {@link BlockDecorator}. * * @param handlebars The handlebars object. * @param name The section's name. * @param inverted True if it's inverted. * @param params The parameter list. * @param hash The hash. * @param blockParams The block param names. * @param root True, if this is top level decorator. */ public BlockDecorator(final Handlebars handlebars, final String name, final boolean inverted, final List<Param> params, final Map<String, Param> hash, final List<String> blockParams, final boolean root) { super(handlebars, name, inverted, "#*", params, hash, blockParams); this.root = root; this.tagType = TagType.START_SECTION; } @Override protected void postInit() { this.decorator = handlebars.decorator(name); } @Override public void before(final Context context, final Writer writer) throws IOException { Context ctx = root ? Context.copy(context, null) : context; if (body instanceof BaseTemplate) { ((BaseTemplate) body).before(ctx, writer); } Options options = new Options(handlebars, name, TagType.SECTION, ctx, body, Template.EMPTY, decoParams(ctx), hash(ctx), blockParams, null); options.data(Context.PARAM_SIZE, this.params.size()); decorator.apply(body, options); } @Override public void apply(final Context context, final Writer writer) throws IOException { // NOOP } @Override public void after(final Context context, final Writer writer) throws IOException { // NOOP } @Override public boolean decorate() { return true; } }