Skip to content

Commit 6fb7f4e

Browse files
committed
User Accounts
1 parent f03a153 commit 6fb7f4e

21 files changed

+199
-19
lines changed
File renamed without changes.
File renamed without changes.

demo/client/index.coffee

+15-2
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,29 @@ Template.index.onCreated ->
1010
self.filesLength.set length
1111
return
1212
return
13-
@getFilesLenght()
1413

15-
@autorun ->
14+
observers =
15+
added: ->
16+
self.getFilesLenght()
17+
return
18+
removed: ->
19+
self.getFilesLenght()
20+
return
21+
22+
self.data.latest.observe observers
23+
self.data.userFiles.observe observers
24+
25+
@autorun ->
1626
_app.subs.subscribe 'latest', self.take.get()
1727
return
1828

1929
Template.index.helpers
2030
take: -> Template.instance().take.get()
2131
uploads: -> _app.uploads.get()
2232
filesLength: -> Template.instance().filesLength.get()
33+
shownFiles: ->
34+
data = Template.instance().data
35+
return data.latest.count() + data.userFiles.count()
2336

2437
Template.index.events
2538
'click #loadMore': (e, template) ->

demo/client/index.jade

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
template(name="index")
22
.col-50.sm-row
3-
if compare latest.count 'or' uploads
3+
if compare latest.count 'or' uploads 'or' userFiles.count
44
.listing: table.table: tbody
55
each uploads
66
+uploadRow
7+
each userFiles
8+
+listingRow
79
each latest
810
+listingRow
9-
if compare latest.count 'and' filesLength '>' latest.count
11+
if compare filesLength '>' shownFiles
1012
tr: td#loadMore(colspan="2"): h3.no-margin.center Load More
1113
else
1214
h3.files-note Be the first to upload a file

demo/client/listing-row.coffee demo/client/listing/listing-row.coffee

+2-3
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,12 @@ Template.listingRow.helpers
22
removedIn: -> moment(@meta.expireAt).fromNow()
33

44
Template.listingRow.events
5-
# Remove example, won't work with allowClientCode: false
65
'click #remove': (e, template) ->
6+
e.stopPropagation()
7+
e.preventDefault()
78
Collections.files.remove @_id, (error) ->
89
if error
910
console.log error
10-
else
11-
template.getFilesLenght()
1211
return
1312
return
1413
'click #showFile': (e, template) ->

demo/client/listing-row.jade demo/client/listing/listing-row.jade

+9
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,15 @@ template(name="listingRow")
2424
.file-name #{name}
2525
br
2626
.file-info
27+
if compare userId 'is' currentUser._id
28+
span.file-isOwner(title="You owns this file"): i.fa.fa-fw.fa-user
29+
|  
30+
| ·
31+
|  
32+
a.file-remove#remove(href="#" title="Remove file"): i.fa.fa-fw.fa-trash-o
33+
|  
34+
| ·
35+
|  
2736
span.file-size(title="File size") {{filesize size}}
2837
|  
2938
| ·
File renamed without changes.

demo/client/routes.coffee demo/client/router/routes.coffee

+12-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,22 @@
11
FlowRouter.route '/',
22
name: 'index'
3-
action: (params, queryParams, latest) ->
4-
@render '_layout', 'index', {latest}
3+
action: (params, queryParams, data) ->
4+
@render '_layout', 'index', data
55
return
66
waitOn: (params) -> [_app.subs.subscribe('latest', 10)]
77
whileWaiting: ->
88
@render '_layout', '_loading'
99
return
10-
data: -> Collections.files.collection.find {}, sort: 'meta.created_at': -1
10+
data: ->
11+
latest: Collections.files.collection.find {userId: $ne: Meteor.userId()}, sort: 'meta.created_at': -1
12+
userFiles: Collections.files.collection.find {userId: Meteor.userId()}, sort: 'meta.created_at': -1
13+
14+
FlowRouter.route '/login',
15+
name: 'login'
16+
title: -> 'Login into Meteor Files'
17+
action: ->
18+
@render '_layout', 'login'
19+
return
1120

1221
FlowRouter.route '/:_id',
1322
name: 'file'
File renamed without changes.
File renamed without changes.

demo/client/styles.sass demo/client/styles/styles.sass

+33-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@import url(https://fonts.googleapis.com/css?family=Lato:300,400,400italic,700)
22

3-
html, body, span, div, p, table, tr, button, video, audio, img, picture
3+
html, body, span, div, p, table, tr, button, video, audio, img, picture, i.fa
44
animation: newElement 350ms ease-in-out 1
55

66
@keyframes newElement
@@ -48,6 +48,9 @@ a, picture, img, video, button, input, pre, i, select, option, label, tr, td, p
4848
tap-highlight-color: rgba(0,0,0,0)
4949
tap-highlight-color: transparent
5050

51+
a
52+
transition: color 128ms ease-in-out
53+
5154
a, a:active, a:hover, a:focus
5255
outline: none
5356
color: #bbb
@@ -302,6 +305,33 @@ h1, h2, h3, h4, h5, h6, div, form, table, p
302305
&.right
303306
left: 8px
304307
right: initial
308+
&.user-account
309+
right: 50px
310+
&.loggingIn
311+
pointer-events: none
312+
313+
.login-options
314+
line-height: 3rem
315+
a
316+
margin: 0px 7px
317+
i
318+
transition: color 256ms ease-in-out, text-shadow 256ms ease-in-out
319+
img
320+
max-height: 1.33333333em
321+
position: relative
322+
bottom: -5px
323+
transition: all 256ms ease-in-out
324+
filter: grayscale(100%)
325+
&:hover
326+
img
327+
filter: grayscale(0%)
328+
i.fa-github
329+
color: #000
330+
text-shadow: 0 0 3px #fff
331+
i.fa-twitter
332+
color: #00aced
333+
i.fa-facebook-official
334+
color: #3b5998
305335

306336
.upload-form
307337
position: relative
@@ -384,10 +414,6 @@ h1, h2, h3, h4, h5, h6, div, form, table, p
384414
-webkit-overflow-scrolling: touch
385415
max-height: 100%
386416
min-height: 455px
387-
.btn
388-
border-color: #aebad2
389-
color: #aebad2
390-
font-size: 1.1em
391417

392418
.files-note
393419
text-align: center
@@ -476,6 +502,8 @@ h1, h2, h3, h4, h5, h6, div, form, table, p
476502
.file-info
477503
color: #606c80
478504
font-size: 0.9rem
505+
.file-remove:hover
506+
color: #bd362f
479507

480508
.file-name, .file-info
481509
padding: 0px

demo/client/upload-form.coffee demo/client/upload/upload-form.coffee

+5-4
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,12 @@ Template.uploadForm.onCreated ->
3939
_.each files, (file) ->
4040
Collections.files.insert(
4141
file: file
42-
meta:
43-
expireAt: new Date(created_at + _app.storeTTL)
44-
created_at: created_at
45-
downloads: 0
42+
meta:
4643
blamed: 0
44+
expireAt: new Date(created_at + (if Meteor.userId() then _app.storeTTLUser else _app.storeTTL))
45+
unlisted: if Meteor.userId() then true else false
46+
downloads: 0
47+
created_at: created_at
4748
streams: 'dynamic'
4849
chunkSize: 'dynamic'
4950
transport: transport

demo/client/upload-form.jade demo/client/upload/upload-form.jade

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ template(name="uploadForm")
22
form.col-50.upload-form#uploadFile: .sm-row
33
unless uploads
44
input.invisible#userfile(type="file" name="userfile" required multiple)
5+
unless compare showProjectInfo 'or' showSettings
6+
+accounts
57
unless showProjectInfo
68
a.info-link.show-settings#showSettings(href="#" class="{{#if showSettings}}active{{/if}}"): i.fa.fa-fw.fa-gear
79
unless showSettings
File renamed without changes.
File renamed without changes.
+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
template(name="accounts")
2+
if currentUser
3+
a.info-link.user-account(href="{{#if isActiveRoute 'login'}}{{pathFor 'index'}}{{else}}{{pathFor 'login'}}{{/if}}" class="{{#if isActiveRoute 'login'}}active{{/if}}"): i.fa.fa-fw.fa-user
4+
else
5+
if loggingIn
6+
a.info-link.user-account.loggingIn(href="#"): i.fa.fa-fw.fa-spin.fa-spinner
7+
else
8+
a.info-link.user-account(href="{{#if isActiveRoute 'login'}}{{pathFor 'index'}}{{else}}{{pathFor 'login'}}{{/if}}" class="{{#if isActiveRoute 'login'}}active{{/if}}"): i.fa.fa-fw.fa-sign-in

demo/client/user-account/login.coffee

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
Template.login.onCreated ->
2+
self = @
3+
@serviceConfiguration = new ReactiveVar {}
4+
Meteor.call 'getServiceConfiguration', (error, serviceConfiguration) ->
5+
if error
6+
console.error error
7+
else
8+
self.serviceConfiguration.set serviceConfiguration
9+
return
10+
return
11+
12+
Template.login.helpers
13+
serviceConfiguration: -> Template.instance().serviceConfiguration.get()
14+
15+
Template.login.events
16+
'click #logout': (e) ->
17+
e.preventDefault()
18+
Meteor.logout()
19+
return
20+
'click #withMeteor': (e) ->
21+
e.preventDefault()
22+
Meteor.loginWithMeteorDeveloperAccount()
23+
return
24+
'click #withGitHub': (e) ->
25+
e.preventDefault()
26+
Meteor.loginWithGithub()
27+
return
28+
'click #withTwitter': (e) ->
29+
e.preventDefault()
30+
Meteor.loginWithTwitter({}) # Won't work without argument
31+
return
32+
'click #withFacebook': (e) ->
33+
e.preventDefault()
34+
Meteor.loginWithFacebook({}) # Whoot?! Docs?
35+
return

demo/client/user-account/login.jade

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
template(name="login")
2+
if currentUser
3+
.col-50._login: .sm-row
4+
h1.files-note {{currentUser.profile.name}}
5+
h1.files-note
6+
+logout
7+
else
8+
if loggingIn
9+
+_loading
10+
else
11+
.col-50._login: .sm-row
12+
h1.files-note Login via:
13+
h1.files-note.login-options
14+
if serviceConfiguration.meteor
15+
a#withMeteor(href="#"): img(src="https://worldvectorlogo.com/logos/meteor-icon.svg")
16+
if serviceConfiguration.github
17+
a#withGitHub(href="#"): i.fa.fa-lg.fa-fw.fa-github
18+
if serviceConfiguration.twitter
19+
a#withTwitter(href="#"): i.fa.fa-lg.fa-fw.fa-twitter
20+
if serviceConfiguration.facebook
21+
a#withFacebook(href="#"): i.fa.fa-lg.fa-fw.fa-facebook-official
+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Template.logout.events
2+
'click #logout': (e) ->
3+
e.preventDefault()
4+
Meteor.logout()
5+
return

demo/client/user-account/logout.jade

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
template(name="logout")
2+
a#logout(href="#"): i.fa.fa-fw.fa-sign-out
+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
_sc = {}
2+
ServiceConfiguration.configurations.remove {}
3+
4+
if process.env['ACCOUNTS_METEOR_ID'] and process.env['ACCOUNTS_METEOR_SEC']
5+
_sc.meteor = true
6+
ServiceConfiguration.configurations.upsert
7+
service: 'meteor-developer'
8+
,
9+
$set:
10+
secret: process.env['ACCOUNTS_METEOR_SEC']
11+
clientId: process.env['ACCOUNTS_METEOR_ID']
12+
loginStyle: 'popup'
13+
14+
if process.env['ACCOUNTS_GITHUB_ID'] and process.env['ACCOUNTS_GITHUB_SEC']
15+
_sc.github = true
16+
ServiceConfiguration.configurations.upsert
17+
service: 'github'
18+
,
19+
$set:
20+
secret: process.env['ACCOUNTS_GITHUB_SEC']
21+
clientId: process.env['ACCOUNTS_GITHUB_ID']
22+
loginStyle: 'popup'
23+
24+
if process.env['ACCOUNTS_TWITTER_ID'] and process.env['ACCOUNTS_TWITTER_SEC']
25+
_sc.twitter = true
26+
ServiceConfiguration.configurations.upsert
27+
service: 'twitter'
28+
,
29+
$set:
30+
loginStyle: 'popup'
31+
secret: process.env['ACCOUNTS_TWITTER_SEC']
32+
consumerKey: process.env['ACCOUNTS_TWITTER_ID'] # consumerKey, really?! F*** this should be in docs
33+
34+
if process.env['ACCOUNTS_FACEBOOK_ID'] and process.env['ACCOUNTS_FACEBOOK_SEC']
35+
_sc.facebook = true
36+
ServiceConfiguration.configurations.upsert
37+
service: 'facebook'
38+
,
39+
$set:
40+
secret: process.env['ACCOUNTS_FACEBOOK_SEC']
41+
appId: process.env['ACCOUNTS_FACEBOOK_ID'] # appId, really?! F*** this should be in docs
42+
loginStyle: 'popup'
43+
44+
Meteor.methods
45+
'getServiceConfiguration': ->
46+
return _sc

0 commit comments

Comments
 (0)