forked from AkkomaGang/akkoma-fe
Add private note field to user profile
This commit is contained in:
parent
ca8689fc88
commit
9923ff587b
5 changed files with 44 additions and 3 deletions
|
@ -40,7 +40,8 @@ const UserProfile = {
|
||||||
error: false,
|
error: false,
|
||||||
userId: null,
|
userId: null,
|
||||||
tab: defaultTabKey,
|
tab: defaultTabKey,
|
||||||
footerRef: null
|
footerRef: null,
|
||||||
|
note: null
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
created () {
|
created () {
|
||||||
|
@ -110,9 +111,13 @@ const UserProfile = {
|
||||||
const user = this.$store.getters.findUser(userNameOrId)
|
const user = this.$store.getters.findUser(userNameOrId)
|
||||||
if (user) {
|
if (user) {
|
||||||
loadById(user.id)
|
loadById(user.id)
|
||||||
|
this.note = user.relationship.note
|
||||||
} else {
|
} else {
|
||||||
this.$store.dispatch('fetchUser', userNameOrId)
|
this.$store.dispatch('fetchUser', userNameOrId)
|
||||||
.then(({ id }) => loadById(id))
|
.then(({ id, relationship }) => {
|
||||||
|
this.note = relationship.note
|
||||||
|
return loadById(id)
|
||||||
|
})
|
||||||
.catch((reason) => {
|
.catch((reason) => {
|
||||||
const errorMessage = get(reason, 'error.error')
|
const errorMessage = get(reason, 'error.error')
|
||||||
if (errorMessage === 'No user with such user_id') { // Known error
|
if (errorMessage === 'No user with such user_id') { // Known error
|
||||||
|
@ -145,6 +150,9 @@ const UserProfile = {
|
||||||
if (target.tagName === 'A') {
|
if (target.tagName === 'A') {
|
||||||
window.open(target.href, '_blank')
|
window.open(target.href, '_blank')
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
setNote () {
|
||||||
|
this.$store.dispatch('setNote', { id: this.userId, note: this.note })
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
|
|
|
@ -40,6 +40,12 @@
|
||||||
</dd>
|
</dd>
|
||||||
</dl>
|
</dl>
|
||||||
</div>
|
</div>
|
||||||
|
<textarea
|
||||||
|
v-model="note"
|
||||||
|
class="note resize-height"
|
||||||
|
:placeholder="$t('user_card.note')"
|
||||||
|
@input="setNote"
|
||||||
|
/>
|
||||||
<tab-switcher
|
<tab-switcher
|
||||||
:active-tab="tab"
|
:active-tab="tab"
|
||||||
:render-only-focused="true"
|
:render-only-focused="true"
|
||||||
|
@ -202,6 +208,10 @@
|
||||||
align-items: middle;
|
align-items: middle;
|
||||||
padding: 2em;
|
padding: 2em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.note {
|
||||||
|
margin: 0.5em 0.75em;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.user-profile-placeholder {
|
.user-profile-placeholder {
|
||||||
.panel-body {
|
.panel-body {
|
||||||
|
|
|
@ -845,6 +845,7 @@
|
||||||
"domain_muted": "Unblock domain",
|
"domain_muted": "Unblock domain",
|
||||||
"mute_domain": "Block domain",
|
"mute_domain": "Block domain",
|
||||||
"bot": "Bot",
|
"bot": "Bot",
|
||||||
|
"note": "Private note",
|
||||||
"admin_menu": {
|
"admin_menu": {
|
||||||
"moderation": "Moderation",
|
"moderation": "Moderation",
|
||||||
"grant_admin": "Grant Admin",
|
"grant_admin": "Grant Admin",
|
||||||
|
|
|
@ -102,6 +102,11 @@ const unmuteDomain = (store, domain) => {
|
||||||
.then(() => store.commit('removeDomainMute', domain))
|
.then(() => store.commit('removeDomainMute', domain))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const setNote = (store, { id, note }) => {
|
||||||
|
return store.rootState.api.backendInteractor.setNote({ id, note })
|
||||||
|
.then((relationship) => store.commit('updateUserRelationship', [relationship]))
|
||||||
|
}
|
||||||
|
|
||||||
export const mutations = {
|
export const mutations = {
|
||||||
tagUser (state, { user: { id }, tag }) {
|
tagUser (state, { user: { id }, tag }) {
|
||||||
const user = state.usersObject[id]
|
const user = state.usersObject[id]
|
||||||
|
@ -366,6 +371,9 @@ const users = {
|
||||||
unmuteDomains (store, domain = []) {
|
unmuteDomains (store, domain = []) {
|
||||||
return Promise.all(domain.map(domain => unmuteDomain(store, domain)))
|
return Promise.all(domain.map(domain => unmuteDomain(store, domain)))
|
||||||
},
|
},
|
||||||
|
setNote (store, { id, note }) {
|
||||||
|
return setNote(store, { id, note })
|
||||||
|
},
|
||||||
fetchFriends ({ rootState, commit }, id) {
|
fetchFriends ({ rootState, commit }, id) {
|
||||||
const user = rootState.users.usersObject[id]
|
const user = rootState.users.usersObject[id]
|
||||||
const maxId = last(user.friendIds)
|
const maxId = last(user.friendIds)
|
||||||
|
|
|
@ -63,6 +63,7 @@ const MASTODON_MUTE_USER_URL = id => `/api/v1/accounts/${id}/mute`
|
||||||
const MASTODON_UNMUTE_USER_URL = id => `/api/v1/accounts/${id}/unmute`
|
const MASTODON_UNMUTE_USER_URL = id => `/api/v1/accounts/${id}/unmute`
|
||||||
const MASTODON_SUBSCRIBE_USER = id => `/api/v1/pleroma/accounts/${id}/subscribe`
|
const MASTODON_SUBSCRIBE_USER = id => `/api/v1/pleroma/accounts/${id}/subscribe`
|
||||||
const MASTODON_UNSUBSCRIBE_USER = id => `/api/v1/pleroma/accounts/${id}/unsubscribe`
|
const MASTODON_UNSUBSCRIBE_USER = id => `/api/v1/pleroma/accounts/${id}/unsubscribe`
|
||||||
|
const MASTODON_SET_NOTE_URL = id => `/api/v1/accounts/${id}/note`
|
||||||
const MASTODON_BOOKMARK_STATUS_URL = id => `/api/v1/statuses/${id}/bookmark`
|
const MASTODON_BOOKMARK_STATUS_URL = id => `/api/v1/statuses/${id}/bookmark`
|
||||||
const MASTODON_UNBOOKMARK_STATUS_URL = id => `/api/v1/statuses/${id}/unbookmark`
|
const MASTODON_UNBOOKMARK_STATUS_URL = id => `/api/v1/statuses/${id}/unbookmark`
|
||||||
const MASTODON_POST_STATUS_URL = '/api/v1/statuses'
|
const MASTODON_POST_STATUS_URL = '/api/v1/statuses'
|
||||||
|
@ -310,7 +311,7 @@ const denyUser = ({ id, credentials }) => {
|
||||||
}
|
}
|
||||||
|
|
||||||
const fetchUser = ({ id, credentials }) => {
|
const fetchUser = ({ id, credentials }) => {
|
||||||
let url = `${MASTODON_USER_URL}/${id}`
|
let url = `${MASTODON_USER_URL}/${id}` + '?with_relationships=true'
|
||||||
return promisedRequest({ url, credentials })
|
return promisedRequest({ url, credentials })
|
||||||
.then((data) => parseUser(data))
|
.then((data) => parseUser(data))
|
||||||
}
|
}
|
||||||
|
@ -948,6 +949,18 @@ const unmuteUser = ({ id, credentials }) => {
|
||||||
return promisedRequest({ url: MASTODON_UNMUTE_USER_URL(id), credentials, method: 'POST' })
|
return promisedRequest({ url: MASTODON_UNMUTE_USER_URL(id), credentials, method: 'POST' })
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const setNote = ({ id, note, credentials }) => {
|
||||||
|
const form = new FormData()
|
||||||
|
|
||||||
|
form.append('comment', note)
|
||||||
|
|
||||||
|
return fetch(MASTODON_SET_NOTE_URL(id), {
|
||||||
|
body: form,
|
||||||
|
headers: authHeaders(credentials),
|
||||||
|
method: 'POST'
|
||||||
|
}).then((data) => data.json())
|
||||||
|
}
|
||||||
|
|
||||||
const fetchMascot = ({ credentials }) => {
|
const fetchMascot = ({ credentials }) => {
|
||||||
return promisedRequest({ url: MASTODON_MASCOT_URL, credentials })
|
return promisedRequest({ url: MASTODON_MASCOT_URL, credentials })
|
||||||
}
|
}
|
||||||
|
@ -1405,6 +1418,7 @@ const apiService = {
|
||||||
fetchMutes,
|
fetchMutes,
|
||||||
muteUser,
|
muteUser,
|
||||||
unmuteUser,
|
unmuteUser,
|
||||||
|
setNote,
|
||||||
subscribeUser,
|
subscribeUser,
|
||||||
unsubscribeUser,
|
unsubscribeUser,
|
||||||
fetchBlocks,
|
fetchBlocks,
|
||||||
|
|
Loading…
Reference in a new issue