Difference between revisions of "FBInstant.context.chooseAsync"

From GiderosMobile
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
 +
<languages />
 
'''<translate>Available since</translate>:''' Gideros 2018.3<br/>
 
'''<translate>Available since</translate>:''' Gideros 2018.3<br/>
 
'''<translate>Class</translate>:''' [[Special:MyLanguage/Context|Context]]<br/>
 
'''<translate>Class</translate>:''' [[Special:MyLanguage/Context|Context]]<br/>
Line 6: Line 7:
 
Opens a context selection dialog for the player. If the player selects an available context, the client will attempt to switch into that context, and resolve if successful. Otherwise, if the player exits the menu or the client fails to switch into the new context, this function will reject.<br />
 
Opens a context selection dialog for the player. If the player selects an available context, the client will attempt to switch into that context, and resolve if successful. Otherwise, if the player exits the menu or the client fails to switch into the new context, this function will reject.<br />
 
<br /></translate>
 
<br /></translate>
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
  FBInstant.context.chooseAsync(options,callback)
 
  FBInstant.context.chooseAsync(options,callback)
</source>
+
</syntaxhighlight>
 
=== <translate>Parameters</translate> ===
 
=== <translate>Parameters</translate> ===
 
'''options''': (table) <translate>A table specifying conditions on the contexts that should be offered.</translate> '''optional'''<br/>
 
'''options''': (table) <translate>A table specifying conditions on the contexts that should be offered.</translate> '''optional'''<br/>
Line 14: Line 15:
 
=== <translate>Examples</translate> ===
 
=== <translate>Examples</translate> ===
 
'''Example'''<br/>
 
'''Example'''<br/>
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
print(FBInstant.context.getID()) -- eg returns 1122334455
 
print(FBInstant.context.getID()) -- eg returns 1122334455
 
FBInstant.context.chooseAsync(nil, function(result,error)
 
FBInstant.context.chooseAsync(nil, function(result,error)
Line 21: Line 22:
 
end
 
end
 
end)
 
end)
<br/></source>
+
<br/></syntaxhighlight>
 
'''Example 2'''<br/>
 
'''Example 2'''<br/>
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
print(FBInstant.context.getID()) -- eg returns 1122334455
 
print(FBInstant.context.getID()) -- eg returns 1122334455
 
-- A filter that may be applied to a Context Choose operation:
 
-- A filter that may be applied to a Context Choose operation:
Line 34: Line 35:
 
end
 
end
 
end)
 
end)
<br/></source>
+
<br/></syntaxhighlight>
 +
 
 +
{{FBInstant.context}}

Latest revision as of 15:26, 13 July 2023


Available since: Gideros 2018.3
Class: Context

Description


Opens a context selection dialog for the player. If the player selects an available context, the client will attempt to switch into that context, and resolve if successful. Otherwise, if the player exits the menu or the client fails to switch into the new context, this function will reject.

 FBInstant.context.chooseAsync(options,callback)

Parameters

options: (table) A table specifying conditions on the contexts that should be offered. optional
callback: (function) A function that will be called with two arguments: true when the game has switched into the context chosen by the user. Otherwise, the promise will reject (if the user cancels out of the dialog, for example) and an error code if the function failed.

Examples

Example

print(FBInstant.context.getID()) -- eg returns 1122334455
FBInstant.context.chooseAsync(nil, function(result,error)
    if result then
		print(FBInstant.context.getID()) -- eg returns 1234567890
	end
end)
<br/>

Example 2

print(FBInstant.context.getID()) -- eg returns 1122334455
-- A filter that may be applied to a Context Choose operation:
-- 'NEW_CONTEXT_ONLY' - Prefer to only surface contexts the game has not been played in before. 
-- 'INCLUDE_EXISTING_CHALLENGES' - Include the "Existing Challenges" section, which surfaces actively played-in contexts that the player is a part of. 
-- 'NEW_PLAYERS_ONLY' - In sections containing individuals, prefer people who have not played the game.
FBInstant.context.chooseAsync({filters={"NEW_CONTENT_ONLY"},minSize=3,maxSize=5}, function(result,error)
    if result then
		print(FBInstant.context.getID()) -- eg returns 1234567890
	end
end)
<br/>