Scripts/resources/[standalone]/ox_lib/resource/interface/client/input.lua
2024-12-29 21:02:43 +01:00

76 lines
1.8 KiB
Lua

local input
---@class InputDialogRowProps
---@field type 'input' | 'number' | 'checkbox' | 'select' | 'slider' | 'multi-select' | 'date' | 'date-range' | 'time' | 'textarea' | 'color'
---@field label string
---@field options? { value: string, label: string, default?: string }[]
---@field password? boolean
---@field icon? string | {[1]: IconProp, [2]: string};
---@field iconColor? string
---@field placeholder? string
---@field default? string | number
---@field disabled? boolean
---@field checked? boolean
---@field min? number
---@field max? number
---@field step? number
---@field autosize? boolean
---@field required? boolean
---@field format? string
---@field returnString? boolean
---@field clearable? string
---@field description? string
---@class InputDialogOptionsProps
---@field allowCancel? boolean
---@param heading string
---@param rows string[] | InputDialogRowProps[]
---@param options InputDialogOptionsProps[]?
---@return string[] | number[] | boolean[] | nil
function lib.inputDialog(heading, rows, options)
if input then return end
input = promise.new()
-- Backwards compat with string tables
for i = 1, #rows do
if type(rows[i]) == 'string' then
rows[i] = { type = 'input', label = rows[i] --[[@as string]] }
end
end
lib.setNuiFocus(false)
SendNUIMessage({
action = 'openDialog',
data = {
heading = heading,
rows = rows,
options = options
}
})
return Citizen.Await(input)
end
function lib.closeInputDialog()
if not input then return end
lib.resetNuiFocus()
SendNUIMessage({
action = 'closeInputDialog'
})
input:resolve(nil)
input = nil
end
RegisterNUICallback('inputData', function(data, cb)
cb(1)
lib.resetNuiFocus()
local promise = input
input = nil
promise:resolve(data)
end)