This commit is contained in:
Nordi98 2025-08-06 16:37:06 +02:00
parent 510e3ffcf2
commit f43cf424cf
305 changed files with 34683 additions and 0 deletions

View file

@ -0,0 +1,36 @@
---@diagnostic disable: duplicate-set-field
Notify = Notify or {}
Notify.GetResourceName = function()
return "none"
end
---This will send a notify message of the type and time passed
---@param message string
---@param _type string
---@param time number
---@return nil
Notify.SendNotify = function(message, _type, time)
time = time or 3000
return Framework.Notify(message, nil, time)
end
RegisterNetEvent('community_bridge:Client:Notify', function(message, _type, time)
Notify.SendNotify(message, _type, time)
end)
---------[[Depricated Stuff Below, please adjust to the HelpText module instead]]--------
---Depricated: This will hide the help text message on the screen
---@return nil
Notify.HideHelpText = function()
return HelpText.HideHelpText()
end
---Depricated: This will show a help text message at the screen position passed
---@param message string
---@return nil
Notify.ShowHelpText = function(message, position)
return HelpText.ShowHelpText(message, position)
end
return Notify

View file

@ -0,0 +1,28 @@
---@diagnostic disable: duplicate-set-field
Notify = Notify or {}
---This will send a notification to the specified player of the passed message and type
---@param src number
---@param message string
---@param _type string
---@param time number
Notify.SendNotify = function(src, message, _type, time)
TriggerClientEvent('community_bridge:Client:Notify', src, message, _type, time)
end
---------[[Depricated Stuff Below, please adjust to the HelpText module instead]]--------
---Depricated -- This will show a help text message to the specified player at the screen position passed
---@param src number
---@param message string
---@param position string
Notify.ShowHelpText = function(src, message, position)
return HelpText.ShowHelpText(src, message, position)
end
---Depricated -- This will hide the help text message on the screen for the specified player
---@param src number
Notify.HideHelpText = function(src)
return HelpText.HideHelpText(src)
end
return Notify

View file

@ -0,0 +1,22 @@
---@diagnostic disable: duplicate-set-field
Notify = Notify or {}
local resourceName = "brutal_notify"
local configValue = BridgeSharedConfig.Notify
if (configValue == "auto" and GetResourceState(resourceName) ~= "started") or (configValue ~= "auto" and configValue ~= resourceName) then return end
Notify.GetResourceName = function()
return resourceName
end
---This will send a notify message of the type and time passed
---@param message string
---@param _type string
---@param time number
---@return nil
Notify.SendNotify = function(message, _type, time)
time = time or 3000
return exports['brutal_notify']:SendAlert('Notification', message, time, _type, false)
end
return Notify

View file

@ -0,0 +1,29 @@
---@diagnostic disable: duplicate-set-field
Notify = Notify or {}
local resourceName = "FL-Notify"
local configValue = BridgeSharedConfig.Notify
if (configValue == "auto" and GetResourceState(resourceName) ~= "started") or (configValue ~= "auto" and configValue ~= resourceName) then return end
Notify.GetResourceName = function()
return resourceName
end
---This will send a notify message of the type and time passed
---@param message string
---@param _type string
---@param time number
---@return nil
Notify.SendNotify = function(message, _type, time)
time = time or 3000
if _type == "error" or _type == "info" then
_type = tostring(1)
elseif _type == "success" then
_type = tostring(2)
elseif _type == "warning" or _type == "warn" then
_type = tostring(3)
end
return exports['FL-Notify']:Notify("Notification", "", message, 5000, tonumber(_type), 0)
end
return Notify

View file

@ -0,0 +1,22 @@
---@diagnostic disable: duplicate-set-field
Notify = Notify or {}
local resourceName = "lation_ui"
local configValue = BridgeSharedConfig.Notify
if (configValue == "auto" and GetResourceState(resourceName) ~= "started") or (configValue ~= "auto" and configValue ~= resourceName) then return end
Notify.GetResourceName = function()
return resourceName
end
---This will send a notify message of the type and time passed
---@param message string
---@param _type string
---@param time number
---@return nil
Notify.SendNotify = function(message, _type, time)
time = time or 3000
return exports.lation_ui:notify({ message = message, type = _type, duration = time, position = 'top-right' })
end
return Notify

View file

@ -0,0 +1,22 @@
---@diagnostic disable: duplicate-set-field
Notify = Notify or {}
local resourceName = "mythic_notify"
local configValue = BridgeSharedConfig.Notify
if (configValue == "auto" and GetResourceState(resourceName) ~= "started") or (configValue ~= "auto" and configValue ~= resourceName) then return end
Notify.GetResourceName = function()
return resourceName
end
---This will send a notify message of the type and time passed
---@param message string
---@param _type string
---@param time number
---@return nil
Notify.SendNotify = function(message, _type, time)
time = time or 3000
_type = _type or "inform"
return exports['mythic_notify']:SendAlert(_type, message, time)
end
return Notify

View file

@ -0,0 +1,21 @@
---@diagnostic disable: duplicate-set-field
Notify = Notify or {}
local resourceName = "okokNotify"
local configValue = BridgeSharedConfig.Notify
if (configValue == "auto" and GetResourceState(resourceName) ~= "started") or (configValue ~= "auto" and configValue ~= resourceName) then return end
Notify.GetResourceName = function()
return resourceName
end
---This will send a notify message of the type and time passed
---@param message string
---@param _type string
---@param time number
---@return nil
Notify.SendNotify = function(message, _type, time)
time = time or 3000
return exports['okokNotify']:Alert('Notification', message, time, _type, false)
end
return Notify

View file

@ -0,0 +1,22 @@
---@diagnostic disable: duplicate-set-field
Notify = Notify or {}
local resourceName = "ox_lib"
local configValue = BridgeSharedConfig.Notify
if (configValue == "auto" and GetResourceState(resourceName) ~= "started") or (configValue ~= "auto" and configValue ~= resourceName) then return end
Notify.GetResourceName = function()
return resourceName
end
---This will send a notify message of the type and time passed
---@param message string
---@param _type string
---@param time number
---@return nil
Notify.SendNotify = function(message, _type, time)
time = time or 3000
return exports.ox_lib:notify({ description = message, type = _type, duration = time, position = 'top-right' })
end
return Notify

View file

@ -0,0 +1,21 @@
---@diagnostic disable: duplicate-set-field
Notify = Notify or {}
local resourceName = "pNotify"
local configValue = BridgeSharedConfig.Notify
if (configValue == "auto" and GetResourceState(resourceName) ~= "started") or (configValue ~= "auto" and configValue ~= resourceName) then return end
Notify.GetResourceName = function()
return resourceName
end
---This will send a notify message of the type and time passed
---@param message string
---@param _type string
---@param time number
---@return nil
Notify.SendNotify = function(message, _type, time)
time = time or 3000
return exports['pNotify']:SendNotification({ text = message, type = _type, timeout = time, layout = 'centerRight' })
end
return Notify

View file

@ -0,0 +1,21 @@
---@diagnostic disable: duplicate-set-field
Notify = Notify or {}
local resourceName = "r_notify"
local configValue = BridgeSharedConfig.Notify
if (configValue == "auto" and GetResourceState(resourceName) ~= "started") or (configValue ~= "auto" and configValue ~= resourceName) then return end
Notify.GetResourceName = function()
return resourceName
end
---This will send a notify message of the type and time passed
---@param message string
---@param _type string
---@param time number
---@return nil
Notify.SendNotify = function(message, _type, time)
time = time or 3000
return exports.r_notify:notify({title = 'Notification', content = message, type = _type, icon = "fas fa-check", duration = time, position = 'top-right', sound = false})
end
return Notify

View file

@ -0,0 +1,22 @@
---@diagnostic disable: duplicate-set-field
Notify = Notify or {}
local resourceName = "t-notify"
local configValue = BridgeSharedConfig.Notify
if (configValue == "auto" and GetResourceState(resourceName) ~= "started") or (configValue ~= "auto" and configValue ~= resourceName) then return end
Notify.GetResourceName = function()
return resourceName
end
---This will send a notify message of the type and time passed
---@param message string
---@param _type string
---@param time number
---@return nil
Notify.SendNotify = function(message, _type, time)
time = time or 3000
_type = _type or "info"
return exports['t-notify']:Alert({ style = _type, message = message, duration = time, })
end
return Notify

View file

@ -0,0 +1,22 @@
---@diagnostic disable: duplicate-set-field
Notify = Notify or {}
local resourceName = "wasabi_notify"
local configValue = BridgeSharedConfig.Notify
if (configValue == "auto" and GetResourceState(resourceName) ~= "started") or (configValue ~= "auto" and configValue ~= resourceName) then return end
Notify.GetResourceName = function()
return resourceName
end
---This will send a notify message of the type and time passed
---@param message string
---@param _type string
---@param time number
---@return nil
Notify.SendNotify = function(message, _type, time)
time = time or 3000
_type = _type or "info"
return exports.wasabi_notify:notify(_type, message, time, _type)
end
return Notify