123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490 |
- <template>
- <div v-if="isUser">
- <metadata v-bind:title="`Profile | ${user.username}`" />
- <edit-playlist v-if="modals.editPlaylist" />
- <create-playlist v-if="modals.createPlaylist" />
- <main-header />
- <div class="info-section">
- <div class="picture-name-row">
- <img
- class="profile-picture"
- :src="
- user.avatar
- ? `${user.avatar}?d=${notes}&s=250`
- : '/assets/notes.png'
- "
- onerror="this.src='/assets/notes.png'; this.onerror=''"
- />
- <div>
- <div class="name-role-row">
- <p class="name">{{ user.name }}</p>
- <span class="role admin" v-if="user.role === 'admin'"
- >admin</span
- >
- </div>
- <p class="username">@{{ user.username }}</p>
- </div>
- </div>
- <div class="buttons" v-if="userId === user._id || role === 'admin'">
- <router-link
- :to="`/admin/users?userId=${user._id}`"
- class="button is-primary"
- v-if="role === 'admin'"
- >
- Edit
- </router-link>
- <router-link
- to="/settings"
- class="button is-primary"
- v-if="userId === user._id"
- >
- Settings
- </router-link>
- </div>
- <div class="bio-row" v-if="user.bio">
- <i class="material-icons">notes</i>
- <p>{{ user.bio }}</p>
- </div>
- <div
- class="date-location-row"
- v-if="user.createdAt || user.location"
- >
- <div class="date" v-if="user.createdAt">
- <i class="material-icons">calendar_today</i>
- <p>{{ user.createdAt }}</p>
- </div>
- <div class="location" v-if="user.location">
- <i class="material-icons">location_on</i>
- <p>{{ user.location }}</p>
- </div>
- </div>
- </div>
- <div class="bottom-section">
- <div class="buttons">
- <button
- :class="{ active: activeTab === 'recentActivity' }"
- @click="switchTab('recentActivity')"
- >
- Recent activity
- </button>
- <button
- :class="{ active: activeTab === 'playlists' }"
- @click="switchTab('playlists')"
- v-if="user._id === userId"
- >
- Playlists
- </button>
- </div>
- <div
- class="content recent-activity-tab"
- v-if="activeTab === 'recentActivity'"
- >
- Content here
- </div>
- <div class="content playlists-tab" v-if="activeTab === 'playlists'">
- <div
- class="item playlist"
- v-for="playlist in playlists"
- :key="playlist._id"
- >
- <div class="left-part">
- <p class="top-text">{{ playlist.displayName }}</p>
- <p class="bottom-text">
- {{ totalLength(playlist) }} •
- {{ playlist.songs.length }}
- {{ playlist.songs.length === 1 ? "song" : "songs" }}
- </p>
- </div>
- <div class="right-part">
- <button
- class="button is-primary"
- @click="editPlaylistClick(playlist._id)"
- >
- Edit
- </button>
- </div>
- </div>
- <button
- class="button is-primary"
- @click="
- openModal({
- sector: 'station',
- modal: 'createPlaylist'
- })
- "
- >
- Create new playlist
- </button>
- </div>
- </div>
- <main-footer />
- </div>
- </template>
- <script>
- import { mapState, mapActions } from "vuex";
- import { format, parseISO } from "date-fns";
- import MainHeader from "../MainHeader.vue";
- import MainFooter from "../MainFooter.vue";
- import io from "../../io";
- import utils from "../../js/utils";
- export default {
- components: {
- MainHeader,
- MainFooter,
- CreatePlaylist: () => import("../Modals/Playlists/Create.vue"),
- EditPlaylist: () => import("../Modals/Playlists/Edit.vue")
- },
- data() {
- return {
- utils,
- user: {},
- notes: "",
- isUser: false,
- activeTab: "recentActivity",
- playlists: []
- };
- },
- computed: mapState({
- role: state => state.user.auth.role,
- userId: state => state.user.auth.userId,
- ...mapState("modals", {
- modals: state => state.modals.station
- })
- }),
- mounted() {
- lofig.get("frontendDomain").then(frontendDomain => {
- this.frontendDomain = frontendDomain;
- this.notes = encodeURI(`${this.frontendDomain}/assets/notes.png`);
- });
- io.getSocket(socket => {
- this.socket = socket;
- this.socket.emit(
- "users.findByUsername",
- this.$route.params.username,
- res => {
- if (res.status === "error") this.$router.go("/404");
- else {
- this.user = res.data;
- this.user.createdAt = format(
- parseISO(this.user.createdAt),
- "MMMM do yyyy"
- );
- this.isUser = true;
- if (this.user._id === this.userId) {
- this.socket.emit("playlists.indexForUser", res => {
- if (res.status === "success")
- this.playlists = res.data;
- });
- this.socket.on(
- "event:playlist.create",
- playlist => {
- this.playlists.push(playlist);
- }
- );
- this.socket.on(
- "event:playlist.delete",
- playlistId => {
- this.playlists.forEach(
- (playlist, index) => {
- if (playlist._id === playlistId) {
- this.playlists.splice(index, 1);
- }
- }
- );
- }
- );
- this.socket.on("event:playlist.addSong", data => {
- this.playlists.forEach((playlist, index) => {
- if (playlist._id === data.playlistId) {
- this.playlists[index].songs.push(
- data.song
- );
- }
- });
- });
- this.socket.on(
- "event:playlist.removeSong",
- data => {
- this.playlists.forEach(
- (playlist, index) => {
- if (
- playlist._id === data.playlistId
- ) {
- this.playlists[
- index
- ].songs.forEach(
- (song, index2) => {
- if (
- song._id ===
- data.songId
- ) {
- this.playlists[
- index
- ].songs.splice(
- index2,
- 1
- );
- }
- }
- );
- }
- }
- );
- }
- );
- this.socket.on(
- "event:playlist.updateDisplayName",
- data => {
- this.playlists.forEach(
- (playlist, index) => {
- if (
- playlist._id === data.playlistId
- ) {
- this.playlists[
- index
- ].displayName =
- data.displayName;
- }
- }
- );
- }
- );
- }
- }
- }
- );
- });
- },
- methods: {
- switchTab(tabName) {
- this.activeTab = tabName;
- },
- editPlaylistClick(playlistId) {
- console.log(playlistId);
- this.editPlaylist(playlistId);
- this.openModal({ sector: "station", modal: "editPlaylist" });
- },
- totalLength(playlist) {
- let length = 0;
- playlist.songs.forEach(song => {
- length += song.duration;
- });
- return this.utils.formatTimeLong(length);
- },
- ...mapActions("modals", ["openModal"]),
- ...mapActions("user/playlists", ["editPlaylist"])
- }
- };
- </script>
- <style lang="scss" scoped>
- @import "styles/global.scss";
- .info-section {
- width: 912px;
- margin-left: auto;
- margin-right: auto;
- margin-top: 32px;
- padding: 24px;
- .picture-name-row {
- display: flex;
- flex-direction: row;
- align-items: center;
- column-gap: 32px;
- justify-content: center;
- margin-bottom: 24px;
- }
- .profile-picture {
- width: 100px;
- height: 100px;
- border-radius: 100%;
- }
- .name-role-row {
- display: flex;
- flex-direction: row;
- align-items: center;
- column-gap: 12px;
- }
- .name {
- font-size: 34px;
- line-height: 40px;
- color: $dark-grey-3;
- }
- .role {
- padding: 2px 24px;
- color: $white;
- text-transform: uppercase;
- font-size: 12px;
- line-height: 14px;
- height: 18px;
- border-radius: 5px;
- &.admin {
- background-color: $red;
- }
- }
- .username {
- font-size: 24px;
- line-height: 28px;
- color: $dark-grey;
- }
- .buttons {
- width: 388px;
- display: flex;
- flex-direction: row;
- column-gap: 20px;
- margin-left: auto;
- margin-right: auto;
- margin-bottom: 24px;
- .button {
- flex: 1;
- font-size: 17px;
- line-height: 20px;
- }
- }
- .bio-row,
- .date-location-row {
- i {
- font-size: 24px;
- color: $dark-grey-2;
- margin-right: 12px;
- }
- p {
- font-size: 17px;
- line-height: 20px;
- color: $dark-grey-2;
- word-break: break-word;
- }
- }
- .bio-row {
- max-width: 608px;
- margin-bottom: 24px;
- margin-left: auto;
- margin-right: auto;
- display: flex;
- width: max-content;
- }
- .date-location-row {
- max-width: 608px;
- margin-left: auto;
- margin-right: auto;
- margin-bottom: 24px;
- display: flex;
- width: max-content;
- margin-bottom: 24px;
- column-gap: 48px;
- }
- .date,
- .location {
- display: flex;
- }
- }
- .bottom-section {
- width: 962px;
- margin-left: auto;
- margin-right: auto;
- margin-top: 32px;
- padding: 24px;
- display: flex;
- column-gap: 64px;
- .buttons {
- height: 100%;
- width: 250px;
- button {
- outline: none;
- border: none;
- box-shadow: none;
- color: $musareBlue;
- font-size: 22px;
- line-height: 26px;
- padding: 7px 0 7px 12px;
- width: 100%;
- text-align: left;
- cursor: pointer;
- border-radius: 5px;
- background-color: transparent;
- &.active {
- color: $white;
- background-color: $musareBlue;
- }
- }
- }
- .content {
- // outline: 1px solid black;
- width: 600px;
- .item {
- width: 100%;
- height: 72px;
- border: 0.5px $light-grey-2 solid;
- margin-bottom: 12px;
- border-radius: 5px;
- padding: 12px;
- display: flex;
- .top-text {
- color: $dark-grey-2;
- font-size: 20px;
- line-height: 23px;
- margin-bottom: 0;
- }
- .bottom-text {
- color: $dark-grey-2;
- font-size: 16px;
- line-height: 19px;
- margin-bottom: 0;
- margin-top: 6px;
- }
- .left-part {
- flex: 1;
- }
- .right-part {
- display: flex;
- align-items: center;
- }
- }
- }
- .playlists-tab > button {
- width: 100%;
- font-size: 17px;
- }
- }
- .night-mode {
- .name,
- .username,
- .bio-row i,
- .bio-row p,
- .date-location-row i,
- .date-location-row p {
- color: $light-grey;
- }
- }
- </style>
|