Skip to content

Commit

Permalink
Merge branch 'remake-2023'
Browse files Browse the repository at this point in the history
  • Loading branch information
nightcycle committed Jan 22, 2024
2 parents 8e254b1 + b00047f commit 00eb9ab
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 5 deletions.
53 changes: 53 additions & 0 deletions src/Util.luau
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,59 @@ end

Util.TextLabel = {}
Util.TextLabel.ColdFusion = {}

function Util.TextLabel.ColdFusion.fromStyleSimple(
text: CanBeState<string>,
colorRoleType: CanBeState<Enums.ColorRoleType>,
fontType: CanBeState<Enums.FontType>,
style: CanBeState<Style>,
elevation: CanBeState<number?>
): TextLabel
local maid = Maid.new()
local _fuse = ColdFusion.fuse(maid)

local _new = _fuse.new
local _bind = _fuse.bind
local _clone = _fuse.clone
local _import = _fuse.import

local _Value = _fuse.Value
local _Computed = _fuse.Computed

local elevationState: State<number?> = _import(elevation, nil)
local textState: State<string> = _import(text, "")
local styleState: State<Style> = _import(style, nil :: any)
local fontTypeState: State<Enums.FontType> = _import(fontType, Enums.FontType.LabelMedium)
local colorRoleTypeState: State<Enums.ColorRoleType> = _import(colorRoleType, Enums.ColorRoleType.OnBackground)

local out = _new("TextLabel")({
Text = textState,
RichText = true,
LayoutOrder = 1,
Visible = _Computed(function(h: string): boolean
return h:len() > 0
end, textState),
TextColor3 = _Computed(function(s: Style, colorRole: Enums.ColorRoleType, e: number?): Color3
return s:GetColor(colorRole, e)
end, styleState, colorRoleTypeState, elevationState),
TextTransparency = 0,
BackgroundTransparency = 1,
AutomaticSize = Enum.AutomaticSize.XY,
TextSize = _Computed(function(s: Style, f: Enums.FontType): number
return s:GetTextSize(f)
end, styleState, fontTypeState),
LineHeight = _Computed(function(s: Style, f: Enums.FontType): number
return s:GetLineHeight(f)
end, styleState, fontTypeState),
FontFace = _Computed(function(s: Style, f: Enums.FontType): Font
return s:GetFont(f)
end, styleState, fontTypeState),
Size = UDim2.fromOffset(0,0),
}) :: TextLabel
maid.bind(out)
return out
end

function Util.TextLabel.ColdFusion.new(
text: CanBeState<string>,
textColor3: CanBeState<Color3>,
Expand Down
5 changes: 0 additions & 5 deletions synthetic.rbxl.lock

This file was deleted.

0 comments on commit 00eb9ab

Please sign in to comment.