mirror of
https://github.com/CommunityOx/ox_lib.git
synced 2026-08-17 23:16:03 +01:00
23 lines
447 B
Lua
23 lines
447 B
Lua
|
|
function lib.inputDialog(heading, rows)
|
||
|
|
if input then return end
|
||
|
|
input = promise.new()
|
||
|
|
|
||
|
|
SetNuiFocus(true, true)
|
||
|
|
SendNUIMessage({
|
||
|
|
action = 'openDialog',
|
||
|
|
data = {
|
||
|
|
heading = heading,
|
||
|
|
inputs = rows
|
||
|
|
}
|
||
|
|
})
|
||
|
|
return Citizen.Await(input)
|
||
|
|
end
|
||
|
|
|
||
|
|
RegisterNUICallback('inputData', function(data, cb)
|
||
|
|
cb(1)
|
||
|
|
if not input then return end
|
||
|
|
if not data then input:resolve() else input:resolve(data) end
|
||
|
|
SetNuiFocus(false, false)
|
||
|
|
input = nil
|
||
|
|
end)
|