mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 06:47:35 +00:00
LibWeb: Store GridSize values as a Variant
A GridSize can't hold both a LengthPercentage and a Flex at the same time, so let's limit that.
This commit is contained in:
parent
b66ff21379
commit
ca16a1ed08
2 changed files with 26 additions and 25 deletions
|
@ -12,17 +12,18 @@ namespace Web::CSS {
|
||||||
|
|
||||||
GridSize::GridSize(LengthPercentage length_percentage)
|
GridSize::GridSize(LengthPercentage length_percentage)
|
||||||
: m_type(Type::LengthPercentage)
|
: m_type(Type::LengthPercentage)
|
||||||
, m_length_percentage(length_percentage) {};
|
, m_value(move(length_percentage))
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
GridSize::GridSize(Flex flex_factor)
|
GridSize::GridSize(Flex flex_factor)
|
||||||
: m_type(Type::FlexibleLength)
|
: m_type(Type::FlexibleLength)
|
||||||
, m_length_percentage { Length::make_px(0) }
|
, m_value(move(flex_factor))
|
||||||
, m_flex_factor(flex_factor)
|
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
GridSize::GridSize(Type type)
|
GridSize::GridSize(Type type)
|
||||||
: m_length_percentage { Length::make_auto() }
|
: m_value { Empty() }
|
||||||
{
|
{
|
||||||
VERIFY(type == Type::MinContent || type == Type::MaxContent);
|
VERIFY(type == Type::MinContent || type == Type::MaxContent);
|
||||||
m_type = type;
|
m_type = type;
|
||||||
|
@ -30,7 +31,7 @@ GridSize::GridSize(Type type)
|
||||||
|
|
||||||
GridSize::GridSize()
|
GridSize::GridSize()
|
||||||
: m_type(Type::LengthPercentage)
|
: m_type(Type::LengthPercentage)
|
||||||
, m_length_percentage { Length::make_auto() }
|
, m_value { Length::make_auto() }
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -39,9 +40,10 @@ GridSize::~GridSize() = default;
|
||||||
bool GridSize::is_auto(Layout::AvailableSize const& available_size) const
|
bool GridSize::is_auto(Layout::AvailableSize const& available_size) const
|
||||||
{
|
{
|
||||||
if (m_type == Type::LengthPercentage) {
|
if (m_type == Type::LengthPercentage) {
|
||||||
if (m_length_percentage.contains_percentage())
|
auto& length_percentage = m_value.get<LengthPercentage>();
|
||||||
|
if (length_percentage.contains_percentage())
|
||||||
return !available_size.is_definite();
|
return !available_size.is_definite();
|
||||||
return m_length_percentage.is_auto();
|
return length_percentage.is_auto();
|
||||||
}
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
|
@ -50,9 +52,10 @@ bool GridSize::is_auto(Layout::AvailableSize const& available_size) const
|
||||||
bool GridSize::is_fixed(Layout::AvailableSize const& available_size) const
|
bool GridSize::is_fixed(Layout::AvailableSize const& available_size) const
|
||||||
{
|
{
|
||||||
if (m_type == Type::LengthPercentage) {
|
if (m_type == Type::LengthPercentage) {
|
||||||
if (m_length_percentage.contains_percentage())
|
auto& length_percentage = m_value.get<LengthPercentage>();
|
||||||
|
if (length_percentage.contains_percentage())
|
||||||
return available_size.is_definite();
|
return available_size.is_definite();
|
||||||
return !m_length_percentage.is_auto();
|
return !length_percentage.is_auto();
|
||||||
}
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
|
@ -71,23 +74,23 @@ GridSize GridSize::make_auto()
|
||||||
Size GridSize::css_size() const
|
Size GridSize::css_size() const
|
||||||
{
|
{
|
||||||
VERIFY(m_type == Type::LengthPercentage);
|
VERIFY(m_type == Type::LengthPercentage);
|
||||||
if (m_length_percentage.is_auto())
|
auto& length_percentage = m_value.get<LengthPercentage>();
|
||||||
|
if (length_percentage.is_auto())
|
||||||
return CSS::Size::make_auto();
|
return CSS::Size::make_auto();
|
||||||
if (m_length_percentage.is_length())
|
if (length_percentage.is_length())
|
||||||
return CSS::Size::make_length(m_length_percentage.length());
|
return CSS::Size::make_length(length_percentage.length());
|
||||||
if (m_length_percentage.is_calculated()) {
|
if (length_percentage.is_calculated())
|
||||||
return CSS::Size::make_calculated(m_length_percentage.calculated());
|
return CSS::Size::make_calculated(length_percentage.calculated());
|
||||||
}
|
return CSS::Size::make_percentage(length_percentage.percentage());
|
||||||
return CSS::Size::make_percentage(m_length_percentage.percentage());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
String GridSize::to_string() const
|
String GridSize::to_string() const
|
||||||
{
|
{
|
||||||
switch (m_type) {
|
switch (m_type) {
|
||||||
case Type::LengthPercentage:
|
case Type::LengthPercentage:
|
||||||
return m_length_percentage.to_string();
|
return m_value.get<LengthPercentage>().to_string();
|
||||||
case Type::FlexibleLength:
|
case Type::FlexibleLength:
|
||||||
return m_flex_factor.to_string();
|
return m_value.get<Flex>().to_string();
|
||||||
case Type::MaxContent:
|
case Type::MaxContent:
|
||||||
return "max-content"_string;
|
return "max-content"_string;
|
||||||
case Type::MinContent:
|
case Type::MinContent:
|
||||||
|
|
|
@ -37,8 +37,8 @@ public:
|
||||||
bool is_max_content() const { return m_type == Type::MaxContent; }
|
bool is_max_content() const { return m_type == Type::MaxContent; }
|
||||||
bool is_min_content() const { return m_type == Type::MinContent; }
|
bool is_min_content() const { return m_type == Type::MinContent; }
|
||||||
|
|
||||||
LengthPercentage length_percentage() const { return m_length_percentage; }
|
LengthPercentage length_percentage() const { return m_value.get<LengthPercentage>(); }
|
||||||
double flex_factor() const { return m_flex_factor.to_fr(); }
|
double flex_factor() const { return m_value.get<Flex>().to_fr(); }
|
||||||
|
|
||||||
// https://www.w3.org/TR/css-grid-2/#layout-algorithm
|
// https://www.w3.org/TR/css-grid-2/#layout-algorithm
|
||||||
// An intrinsic sizing function (min-content, max-content, auto, fit-content()).
|
// An intrinsic sizing function (min-content, max-content, auto, fit-content()).
|
||||||
|
@ -47,7 +47,7 @@ public:
|
||||||
|
|
||||||
bool is_definite() const
|
bool is_definite() const
|
||||||
{
|
{
|
||||||
return type() == Type::LengthPercentage && !m_length_percentage.is_auto();
|
return type() == Type::LengthPercentage && !length_percentage().is_auto();
|
||||||
}
|
}
|
||||||
|
|
||||||
Size css_size() const;
|
Size css_size() const;
|
||||||
|
@ -56,14 +56,12 @@ public:
|
||||||
bool operator==(GridSize const& other) const
|
bool operator==(GridSize const& other) const
|
||||||
{
|
{
|
||||||
return m_type == other.type()
|
return m_type == other.type()
|
||||||
&& m_length_percentage == other.length_percentage()
|
&& m_value == other.m_value;
|
||||||
&& m_flex_factor == other.m_flex_factor;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
Type m_type;
|
Type m_type;
|
||||||
LengthPercentage m_length_percentage;
|
Variant<Empty, LengthPercentage, Flex> m_value;
|
||||||
Flex m_flex_factor { 0, Flex::Type::Fr };
|
|
||||||
};
|
};
|
||||||
|
|
||||||
class GridMinMax {
|
class GridMinMax {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue