Skip to main content

User

caution

This functionality is not available in the standard netDecor build. It is enabled upon client request, and its parameters may vary between customized netDecor implementations.

caution

The application does NOT include user account management or login/logout functionality.

However, the application CAN display the login/logout state of users on the web page where it is embedded.

On Login Event

NetDecor.Events.RegisterEventHandler("Login", function(){});

This event is triggered when a user clicks the "Login" button.

On Logout Event

NetDecor.Events.RegisterEventHandler("Logout", function(){}); 

This event is triggered when a user clicks the "Logout" button.

On Show Projects Event

NetDecor.Events.RegisterEventHandler("ShowProjects", function(){})

This event is triggered when a user clicks either the 'My Projects' button in the user panel OR the 'Open' option from the 'File' tab.

Set User State

NetDecor.Login.SetLoginState(loginState: string)

The login state is a JSON string with the following parameters:

state: boolean - true – user is logged in, false – user is logged out
name: string - sets the visible user name in the application (not required when state is false)

Example

  loginState = {
"state": true,
"name": "userName"
};

NetDecor.Events.RegisterEventHandler("Login", function() {
NetDecor.Login.SetLoginState(JSON.stringify(loginState))
});