mirror of
https://github.com/livebook-dev/livebook.git
synced 2024-11-17 21:33:16 +08:00
5c8e117800
* Add initial user config modal * Assign user ids * Update session data to hold user ids * Get users list for specific ids * Render user avatar * User update * Refactor user changes * Subscribe to individual user updates * Show users in side panel * Add sidebar to homepage * Don't generate the same color twice in a row * Add documentation notes * Fix tests * Add tests * Keep users in session data * Rename color to hex_color
20 lines
518 B
JavaScript
20 lines
518 B
JavaScript
import { storeUserData } from "../lib/user";
|
|
|
|
/**
|
|
* A hook for the user profile form.
|
|
*
|
|
* On submit this hook saves the new data into cookie.
|
|
* This cookie serves as a backup and can be used to restore
|
|
* user data if the server is restarted.
|
|
*/
|
|
const UserForm = {
|
|
mounted() {
|
|
this.el.addEventListener("submit", (event) => {
|
|
const name = this.el.data_name.value;
|
|
const hex_color = this.el.data_hex_color.value;
|
|
storeUserData({ name, hex_color });
|
|
});
|
|
},
|
|
};
|
|
|
|
export default UserForm;
|