Page 2 of 5

Collaborative Music Playlist/Chat

Posted: Tue Apr 02, 2013 10:41 pm
by Joe Paisley

When I make the "chat" page my start page, it doesn't render text in the label component after you type something in the input component and hit the "button." Also, when entering a screename in the input component on the "chatLogin" page, then hitting the "login" button produces this error when I type something like " test" to fill the field.
Image
what am I doing wrong?


Collaborative Music Playlist/Chat

Posted: Tue Apr 02, 2013 10:44 pm
by Joe Paisley

This is what I get when I run my desktop chrome browser developer tools utility: Image


Collaborative Music Playlist/Chat

Posted: Wed Apr 03, 2013 8:02 am
by Kateryna Grynko

Hi Joe,

Thank you for detail information. Could you please share your app with a href="mailto:support@tiggzi.com" rel="nofollow"support@tiggzi.com/a?


Collaborative Music Playlist/Chat

Posted: Wed Apr 03, 2013 10:53 am
by Joe Paisley

Thanks Katya! I think it should already be shared with the support email. I've also shared the database with that email, so you can see what things look like on that end.


Collaborative Music Playlist/Chat

Posted: Wed Apr 03, 2013 10:58 am
by Kateryna Grynko

Thank you for sharing, what's the app name?


Collaborative Music Playlist/Chat

Posted: Wed Apr 03, 2013 11:08 am
by Joe Paisley

Same as before: Pedal Collective Mobile


Collaborative Music Playlist/Chat

Posted: Wed Apr 03, 2013 12:11 pm
by Kateryna Grynko

Joe,

As I can see you don't send password in servise. To use login in Database you would need to register user with any name and password and then use this pass when logging in.

If you need an anonymous chat you shouldn't use registration and login services. You can save username in LocalStorage variable and then store it in some collection column.


Collaborative Music Playlist/Chat

Posted: Wed Apr 03, 2013 12:41 pm
by Joe Paisley

Ohh I see. My users already have to give a facebook password, and if they'd like to use the full version of the website, a log in for that as well. One more might drive them crazy. The chat is general bike topics, as well as discussions about musical selections. So I can delete my "chatLogin" page all together? How would a user select a name for chat? Would one automatically be generated? Or would they have to enter one, hit a button to execute the storage action, then be allowed to send messages with that name? How would this be set up?

Also I've been looking into ways to use collaborative playlists, and I think Grooveshark may be a good option: http://developers.grooveshark.com

Any thoughts on this? Does it look to be compatible with the Tiggzi platform?


Collaborative Music Playlist/Chat

Posted: Wed Apr 03, 2013 1:48 pm
by Kateryna Grynko

You can do realization as you would like. You can use the existing page for user entering nickname.

Site grooveshark.com provides its API via Rest Services (http://developers.grooveshark.com/doc...). Tiggzi allows you to communicate with this API. There shouldn't be any technical problems.


Collaborative Music Playlist/Chat

Posted: Wed Apr 03, 2013 2:24 pm
by Joe Paisley

Thanks Katya! Good news though: I actually figured out how to bed my website chat html in the mobile version of the site, making for seamless website integration and no need to for extra pages or programming. Hooray!

Although I'm having some trouble adjusting the height of the chat window in the html embed. Strangely enough, there are no issues with the other pages of the mobile website except videos( a whole other story).

In order to edit the mobile version of my site, I have to author my own html iframe to embed my chat. The code I've used to put it into the mobile site is below. Am I using something that might conflict with the panel html? What could be causing this?
code
<style>
&#46;page-body {
padding: 0px;
}

&#46;xg_user_generated #Chat {
margin-top: -2em;
}
<&#47;style>

<iframe src="http:&#47;&#47;www&#46;thepedalcollective&#46;com&#47;chat&#47;index&#47;popOutWindowV4" height="550em" width="100%" id="Chat" style="border: 3px solid BLACK"><&#47;iframe>
/code

Although I still have the task ahead of me on how to use the Grooveshark API. I wouldn't be surprised if I post another topic on it in the future, but I'll try my best to figure it out using the docs and tutorials they provide.