add gs
This commit is contained in:
@@ -0,0 +1,232 @@
|
||||
local Modules = game:GetService("CoreGui").RobloxGui.Modules
|
||||
local FormFactor = require(Modules.LuaApp.Enum.FormFactor)
|
||||
|
||||
local Constants = {
|
||||
Color = {
|
||||
GRAY1 = Color3.fromRGB(25, 25, 25),
|
||||
GRAY2 = Color3.fromRGB(117, 117, 117),
|
||||
GRAY3 = Color3.fromRGB(184, 184, 184),
|
||||
GRAY4 = Color3.fromRGB(227, 227, 227),
|
||||
GRAY5 = Color3.fromRGB(242, 242, 242),
|
||||
GRAY6 = Color3.fromRGB(245, 245, 245),
|
||||
WHITE = Color3.fromRGB(255, 255, 255),
|
||||
BLUE_PRIMARY = Color3.fromRGB(0, 162, 255),
|
||||
BLUE_HOVER = Color3.fromRGB(50, 181, 255),
|
||||
BLUE_PRESSED = Color3.fromRGB(0, 116, 190), -- note: this is 190 instead of 189 to fix CLI-24097; see changelist description for more details
|
||||
BLUE_DISABLED = Color3.fromRGB(153, 218, 255),
|
||||
GREEN_PRIMARY = Color3.fromRGB(2, 183, 87),
|
||||
GREEN_HOVER = Color3.fromRGB(63, 198, 121),
|
||||
GREEN_PRESSED = Color3.fromRGB(17, 130, 55),
|
||||
GREEN_DISABLED = Color3.fromRGB(163, 226, 189),
|
||||
RED_PRIMARY = Color3.fromRGB(226, 35, 26),
|
||||
RED_NEGATIVE = Color3.fromRGB(216, 104, 104),
|
||||
RED_HOVER = Color3.fromRGB(226, 118, 118),
|
||||
RED_PRESSED = Color3.fromRGB(172, 30, 45),
|
||||
ORANGE_WARNING = Color3.fromRGB(246, 136, 2),
|
||||
ORANGE_FAVORITE = Color3.fromRGB(246, 183, 2),
|
||||
BROWN_TIX = Color3.fromRGB(204, 158, 113),
|
||||
ALPHA_SHADOW_PRIMARY = 0.3, -- Used with Gray1
|
||||
ALPHA_SHADOW_HOVER = 0.75, -- Used with Gray1
|
||||
CONVERSATION_BACKGROUND = Color3.fromRGB(224, 224, 224),
|
||||
},
|
||||
Font = {
|
||||
TITLE = Enum.Font.SourceSansSemibold,
|
||||
-- These values appear differently because of the discrepancy between design sizes and
|
||||
-- the engine sizes
|
||||
FONT_SIZE_12 = 15,
|
||||
FONT_SIZE_14 = 17,
|
||||
FONT_SIZE_16 = 20,
|
||||
FONT_SIZE_18 = 23,
|
||||
FONT_SIZE_20 = 23,
|
||||
FONT_SIZE_18_POS_OFFSET = -8,
|
||||
},
|
||||
Tween = {
|
||||
DEFAULT_TWEEN_TIME = 0.25,
|
||||
DEFAULT_TWEEN_STYLE = Enum.EasingStyle.Quad,
|
||||
DEFAULT_TWEEN_EASING_DIRECTION = Enum.EasingDirection.Out,
|
||||
MESSAGE_TWEEN_TIME = 0.2,
|
||||
},
|
||||
Dialog = {
|
||||
TWEEN_TIME = 0.4,
|
||||
},
|
||||
PresenceType = {
|
||||
NONE = "NONE",
|
||||
ONLINE = "ONLINE",
|
||||
IN_GAME = "IN_GAME",
|
||||
IN_STUDIO = "IN_STUDIO",
|
||||
},
|
||||
PresenceIndicatorSize = {
|
||||
Size6x6 = "Size6x6",
|
||||
Size8x8 = "Size8x8",
|
||||
Size10x10 = "Size10x10",
|
||||
Size12x12 = "Size12x12",
|
||||
Size14x14 = "Size14x14",
|
||||
DEFAULT = "DEFAULT",
|
||||
},
|
||||
ServerState = {
|
||||
NONE = "NONE",
|
||||
CREATING = "CREATING",
|
||||
CREATED = "CREATED",
|
||||
},
|
||||
ConversationLoadingState = {
|
||||
NONE = "NONE",
|
||||
LOADING = "LOADING",
|
||||
DONE = "DONE"
|
||||
},
|
||||
-- To remove when FFlagLuaChatReplacePresenceIndicatorImages is removed
|
||||
PresenceIndicatorImages = {
|
||||
NONE = nil,
|
||||
ONLINE = "rbxasset://textures/ui/LuaChat/graphic/gr-indicator-online.png",
|
||||
IN_GAME = "rbxasset://textures/ui/LuaChat/graphic/gr-indicator-ingame.png",
|
||||
IN_STUDIO = "rbxasset://textures/ui/LuaChat/graphic/gr-indicator-instudio.png",
|
||||
},
|
||||
PresenceIndicatorImagesBySize = {
|
||||
Size6x6 = {
|
||||
NONE = nil,
|
||||
ONLINE = "rbxasset://textures/ui/LuaChat/graphic/gr-indicator-online-6x6.png",
|
||||
IN_GAME = "rbxasset://textures/ui/LuaChat/graphic/gr-indicator-ingame-6x6.png",
|
||||
IN_STUDIO = "rbxasset://textures/ui/LuaChat/graphic/gr-indicator-instudio-6x6.png",
|
||||
},
|
||||
Size8x8 = {
|
||||
NONE = nil,
|
||||
ONLINE = "rbxasset://textures/ui/LuaChat/graphic/gr-indicator-online-8x8.png",
|
||||
IN_GAME = "rbxasset://textures/ui/LuaChat/graphic/gr-indicator-ingame-8x8.png",
|
||||
IN_STUDIO = "rbxasset://textures/ui/LuaChat/graphic/gr-indicator-instudio-8x8.png",
|
||||
},
|
||||
Size10x10 = {
|
||||
NONE = nil,
|
||||
ONLINE = "rbxasset://textures/ui/LuaChat/graphic/gr-indicator-online-10x10.png",
|
||||
IN_GAME = "rbxasset://textures/ui/LuaChat/graphic/gr-indicator-ingame-10x10.png",
|
||||
IN_STUDIO = "rbxasset://textures/ui/LuaChat/graphic/gr-indicator-instudio-10x10.png",
|
||||
},
|
||||
Size12x12 = {
|
||||
NONE = nil,
|
||||
ONLINE = "rbxasset://textures/ui/LuaChat/graphic/gr-indicator-online-12x12.png",
|
||||
IN_GAME = "rbxasset://textures/ui/LuaChat/graphic/gr-indicator-ingame-12x12.png",
|
||||
IN_STUDIO = "rbxasset://textures/ui/LuaChat/graphic/gr-indicator-instudio-12x12.png",
|
||||
},
|
||||
Size14x14 = {
|
||||
NONE = nil,
|
||||
ONLINE = "rbxasset://textures/ui/LuaChat/graphic/gr-indicator-online-14x14.png",
|
||||
IN_GAME = "rbxasset://textures/ui/LuaChat/graphic/gr-indicator-ingame-14x14.png",
|
||||
IN_STUDIO = "rbxasset://textures/ui/LuaChat/graphic/gr-indicator-instudio-14x14.png",
|
||||
},
|
||||
DEFAULT = {
|
||||
NONE = nil,
|
||||
ONLINE = "rbxasset://textures/ui/LuaChat/graphic/gr-indicator-online.png",
|
||||
IN_GAME = "rbxasset://textures/ui/LuaChat/graphic/gr-indicator-ingame.png",
|
||||
IN_STUDIO = "rbxasset://textures/ui/LuaChat/graphic/gr-indicator-instudio.png",
|
||||
},
|
||||
},
|
||||
Text = {
|
||||
INPUT_PLACEHOLDER = Color3.fromRGB(189, 189, 189),
|
||||
INPUT = Color3.fromRGB(25, 25, 25),
|
||||
POST_TYPING_STATUS_INTERVAL = 3, --How frequently do we POST our typing status if we're still typing
|
||||
},
|
||||
PageSize = {
|
||||
GET_MESSAGES = 30,
|
||||
GET_NEW_MESSAGES = 4,
|
||||
GET_CONVERSATIONS = 30,
|
||||
},
|
||||
MAX_PARTICIPANT_COUNT = 5,
|
||||
MIN_PARTICIPANT_COUNT = 1,
|
||||
-- This value actually comes from iOS, but we are shortcutting actually getting the value from there.
|
||||
|
||||
ModalDialog = {
|
||||
CLEARANCE_CORNER_ROUNDING = 5,
|
||||
CLEARANCE_DIALOG_SIDE = 48,
|
||||
CLEARANCE_DIALOG_BOTTOM = 36,
|
||||
BUTTON_HEIGHT = 42,
|
||||
},
|
||||
|
||||
SharedGamesConfig = {
|
||||
SortNames = {"Popular", "MyRecent", "MyFavorite", "FriendActivity"},
|
||||
SortsAttribute = {
|
||||
Popular = {
|
||||
TILE_LOCALIZATION_KEY = "Feature.Chat.ShareGameToChat.Popular",
|
||||
ERROR_TIP_LOCALIZATION_KEY = "Feature.Chat.ShareGameToChat.NoPopularGames"
|
||||
},
|
||||
MyRecent = {
|
||||
TILE_LOCALIZATION_KEY = "Feature.Chat.ShareGameToChat.Recent",
|
||||
ERROR_TIP_LOCALIZATION_KEY = "Feature.Chat.ShareGameToChat.NoRecentGames"
|
||||
},
|
||||
MyFavorite = {
|
||||
TILE_LOCALIZATION_KEY = "Feature.Chat.ShareGameToChat.Favorites",
|
||||
ERROR_TIP_LOCALIZATION_KEY = "Feature.Chat.ShareGameToChat.NoFavoriteGames"
|
||||
},
|
||||
FriendActivity = {
|
||||
TILE_LOCALIZATION_KEY = "Feature.Chat.ShareGameToChat.FriendActivity",
|
||||
ERROR_TIP_LOCALIZATION_KEY = "Feature.Chat.ShareGameToChat.NoFriendActivity"
|
||||
}
|
||||
},
|
||||
Thumbnail = {
|
||||
SHOWN_SIZE = 60,
|
||||
FETCHED_SIZE = 150,
|
||||
},
|
||||
},
|
||||
|
||||
GameShareView = {
|
||||
TABLET_HORIZONTAL_DIVIDER_HEIGHT = 15,
|
||||
TABLET_VIEW_WIDTH = 540,
|
||||
},
|
||||
|
||||
PerformanceMeasurement = {
|
||||
LUA_CHAT_SEND_MESSAGE = "LuaChatSendMessage",
|
||||
LUA_CHAT_RECEIVE_MESSAGE = "LuaChatReceiveMessage",
|
||||
},
|
||||
|
||||
ToastIDs = {
|
||||
TOO_MANY_PEOPLE = "TOO_MANY_PEOPLE",
|
||||
GROUP_NAME_MODERATED = "GROUP_NAME_MODERATED",
|
||||
MESSAGE_WAS_MODERATED = "MESSAGE_WAS_MODERATED",
|
||||
REMOVED_FROM_CONVERSATION = "REMOVED_FROM_CONVERSATION",
|
||||
PIN_GAME_FAILED = "PIN_GAME_FAILED",
|
||||
PIN_PINNED_GAME = "PIN_PINNED_GAME",
|
||||
UNPIN_GAME_FAILED = "UNPIN_GAME_FAILED",
|
||||
GAME_NOT_SHAREABLE = "GAME_NOT_SHAREABLE",
|
||||
},
|
||||
|
||||
FormFactor = {
|
||||
PHONE = {
|
||||
ASSET_CARD_HORIZONTAL_MARGIN = 108,
|
||||
},
|
||||
TABLET = {
|
||||
ASSET_CARD_HORIZONTAL_MARGIN = 224,
|
||||
}
|
||||
},
|
||||
|
||||
Decorators = {
|
||||
ICEBREAKER = {
|
||||
"icebreaker",
|
||||
},
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
function Constants:GetFormFactorSpecific(formFactor)
|
||||
if formFactor == FormFactor.TABLET then
|
||||
return Constants.FormFactor.TABLET
|
||||
else
|
||||
return Constants.FormFactor.PHONE
|
||||
end
|
||||
end
|
||||
|
||||
function Constants:GetPresenceIndicatorSizeKey(size)
|
||||
local sizeKey
|
||||
if size == 6 then
|
||||
sizeKey = self.PresenceIndicatorSize.Size6x6
|
||||
elseif size == 8 then
|
||||
sizeKey = self.PresenceIndicatorSize.Size8x8
|
||||
elseif size == 10 then
|
||||
sizeKey = self.PresenceIndicatorSize.Size10x10
|
||||
elseif size == 12 then
|
||||
sizeKey = self.PresenceIndicatorSize.Size12x12
|
||||
elseif size == 14 then
|
||||
sizeKey = self.PresenceIndicatorSize.Size14x14
|
||||
else
|
||||
sizeKey = self.PresenceIndicatorSize.DEFAULT
|
||||
end
|
||||
return sizeKey
|
||||
end
|
||||
|
||||
return Constants
|
||||
Reference in New Issue
Block a user