To show the custom web-component for the account selector of kusama's blockchain, you need to change the <evees-login-widget> component to render a custom lense (web-component dynamically loaded) as specified by the EveesRemotePolkadotIdentity class.
You should
[x] update the EveesRemote interface with an optional property called lense(). You can use the lense() property of the EveesAccessControl as ane example.
[x] add the lense() property to the EveesPolkadotIdentity class with the name/tag of the lense of the web-component.
[x] register that web-component in the EveesPolkadotModule() under the onLoad() method (use another module as example).
[x] add the EveesPolkadotModule to the MicroOrchestrator to register the web-component.
[ ] update the <evees-login-widget> to use the remote.lense() instead of the current <evees-author user-id=${remote.userId}> in case the remote.lense() is defined.
To show the custom web-component for the account selector of kusama's blockchain, you need to change the
<evees-login-widget>
component to render a custom lense (web-component dynamically loaded) as specified by theEveesRemotePolkadotIdentity
class.You should
EveesRemote
interface with an optional property calledlense()
. You can use thelense()
property of theEveesAccessControl
as ane example.lense()
property to theEveesPolkadotIdentity
class with the name/tag of the lense of the web-component.EveesPolkadotModule()
under the onLoad() method (use another module as example).<evees-login-widget>
to use the remote.lense() instead of the current<evees-author user-id=${remote.userId}>
in case theremote.lense()
is defined.