mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-16 10:49:26 +03:00
ok fine, now it works
This commit is contained in:
parent
865f22dab7
commit
e612f44895
@ -42,25 +42,43 @@ $(function() {
|
||||
appl:"twit",
|
||||
data:{tweet:tweet}
|
||||
}, function(err,res) {
|
||||
console.log(arguments)
|
||||
$tweet.attr('disabled', false)
|
||||
$submit.attr('disabled', false)
|
||||
$submit.removeClass('disabled')
|
||||
|
||||
_tweet = {
|
||||
created_at: String(new Date()),
|
||||
text: tweet,
|
||||
pending: true
|
||||
}
|
||||
|
||||
console.log('set it')
|
||||
console.log(_tweet)
|
||||
|
||||
$time.prepend(renderTweet(_tweet))
|
||||
|
||||
$tweet.val('')
|
||||
setLength()
|
||||
})
|
||||
})
|
||||
|
||||
renderTweet = function(tweet) {
|
||||
d = new Date(tweet.created_at)
|
||||
datestr = d.getMonth()+1 + "-" + d.getDate() + "-" + d.getFullYear() + " " + d.getHours() + ":" + d.getMinutes() + ":" + d.getSeconds()
|
||||
css = "tweet"
|
||||
if(tweet.pending == true)
|
||||
css += " pending"
|
||||
$_tweet = $("<div class='"+css+"'></div>")
|
||||
$_tweet.append("<div class='author'>@urbit_test</div>")
|
||||
$_tweet.append("<div class='date'>"+datestr+"</div>")
|
||||
$_tweet.append("<div class='text'>"+tweet.text+"</div>")
|
||||
return $_tweet
|
||||
}
|
||||
|
||||
renderTimeline = function(timeline) {
|
||||
$time.html("")
|
||||
for(i in timeline) {
|
||||
tweets = timeline[i]
|
||||
d = new Date(tweets.created_at)
|
||||
datestr = d.getMonth()+1 + "-" + d.getDate() + "-" + d.getFullYear() + " " + d.getHours() + ":" + d.getMinutes() + ":" + d.getSeconds()
|
||||
$tweet = $("<div class='tweet'></div>")
|
||||
$tweet.append("<div class='author'>@urbit_test</div>")
|
||||
$tweet.append("<div class='date'>"+datestr+"</div>")
|
||||
$tweet.append("<div class='text'>"+tweets.text+"</div>")
|
||||
$time.append($tweet)
|
||||
$time.append(renderTweet(timeline[i]))
|
||||
}
|
||||
}
|
||||
|
||||
@ -79,9 +97,6 @@ $(function() {
|
||||
return
|
||||
if(res.data) {
|
||||
if(res.data[0]) {
|
||||
window.tweets = res.data
|
||||
console.log('render')
|
||||
console.log(res.data)
|
||||
renderTimeline(res.data)
|
||||
}
|
||||
if(res.errors) {
|
||||
|
@ -116,6 +116,10 @@ textarea:focus {
|
||||
color: #888;
|
||||
}
|
||||
|
||||
.pending {
|
||||
opacity: .3;
|
||||
}
|
||||
|
||||
.error {
|
||||
color: #FF5F5F;
|
||||
letter-spacing: .06rem;
|
||||
|
Loading…
Reference in New Issue
Block a user