0
如果我有一個使用聚合力的firebase身份驗證元素,在全局範圍內使用用戶屬性,最佳方式是什麼?全局使用Polymerfire身份驗證
舉例來說,如果我有一個登錄按鈕元素:我要顯示或隱藏許多組件這樣
<dom-module id="tab-b">
<template>
<style>
</style>
<firebase-app auth-domain="example.firebaseapp.com"
database-url="example.firebaseio.com/"
api-key="">
</firebase-app>
<firebase-auth id="auth" location="{{location}}" user="{{user}}"provider="google" on-error="handleError">
</firebase-auth>
<paper-button id="googSignIn" class$="signInButton {{_getMiniClass()}}"on-tap="login" raised>
Google
</paper-button>
</template>
<script>
(function() {
'use strict';
Polymer({
is: 'tab-b',
properties:{
user: {
type: Object
},
statusKnown: {
type: Object
}
},
login: function(){
return this.$.auth.signInWithPopup();
},
logout: function(){
return this.$.auth.signOut();
}
});
})();
</script>
</dom-module>
然後:
<element show$={{!user}}><element>
你可以只添加'火力點,auth'元素任何你需要的值:'<火力-auth用戶= 「{{用戶}}」 >火力-AUTH>' –