com.facebook.litho.annotations.OnCreateLayoutWithSizeSpec Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of litho-annotations Show documentation
Show all versions of litho-annotations Show documentation
The annotations that are used in the Litho library
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* 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.facebook.litho.annotations;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
/**
* {@code OnCreateLayoutWithSizeSpec} is the same as {@link OnCreateLayout} but the layout can be
* resolved with a specified width and height. Use this instead of {@code OnCreateLayout} if the
* {@link LayoutSpec} returns a layout tree that depends on its own and/or its children's size.
*
* For example, a spec might use Component {@code A} if that fits within the specified width or
* use Component {@code B} instead.
*
*
The annotated method must return a Component and can receive the following arguments.
*
*
Required:
*
*
* - ComponentContext
*
- int (width spec)
*
- int (height spec)
*
*
* Optional and annotated arguments:
*
*
* - {@link Prop}
*
- {@link TreeProp}
*
- {@link InjectProp}
*
- {@link State}
*
- {@code Output}
*
*
* The annotation processor will validate this and other invariants in the API at build time. The
* optional and annotated arguments are inputs which should be used to create the layout of the
* spec.
*
*
For example:
*
*
{@literal @LayoutSpec}
* class MyComponentSpec {
*
* {@literal @OnCreateLayoutWithSizeSpec}
* static Component onCreateLayoutWithSizeSpec(
* ComponentContext c,
* int widthSpec,
* int heightSpec) {
*
* final Component textComponent =
* Text.create(c).textSizeSp(16).text("Some text to measure.").build();
*
* // UNSPECIFIED sizeSpecs will measure the text as being one line only,
* // having unlimited width.
* final Size textOutputSize = new Size();
* textComponent.measure(
* c,
* SizeSpec.makeSizeSpec(0, UNSPECIFIED),
* SizeSpec.makeSizeSpec(0, UNSPECIFIED),
* textOutputSize);
*
* // Small component to use in case textComponent does not fit within the current layout.
* final Component imageComponent = Image.create(c).drawableRes(R.drawable.ic_launcher).build();
*
* // Assuming SizeSpec.getMode(widthSpec) == EXACTLY or AT_MOST.
* final int layoutWidth = SizeSpec.getSize(widthSpec);
* final boolean textFits = (textOutputSize.width <= layoutWidth);
*
* return textFits ? textComponent : imageComponent;
* }
* }
*
* @see OnCreateLayout
*/
@Retention(RetentionPolicy.CLASS)
public @interface OnCreateLayoutWithSizeSpec {}