const TEMPLATE = `
Only project members can comment.
Join the conversation! Renew your subscription to comment.
Join the conversation! Subscribe to Blender Cloud to comment.
Log in to comment
`; Vue.component('comments-locked', { template: TEMPLATE, props: {user: Object}, computed: { msgToShow() { if(this.user && this.user.is_authenticated) { if (this.user.hasCap('subscriber')) { return 'PROJECT_MEMBERS_ONLY'; } else if(this.user.hasCap('can-renew-subscription')) { return 'RENEW'; } else { return 'JOIN'; } } return 'LOGIN'; } }, });