UserIdToUsername.vue 648 B

123456789101112131415161718192021222324252627282930313233
  1. <template>
  2. <a v-if="$props.link" v-bind:href="`/u/${userIdMap['Z' + $props.userId]}`">
  3. {{ userIdMap["Z" + $props.userId] }}
  4. </a>
  5. <span v-else>
  6. {{ userIdMap["Z" + $props.userId] }}
  7. </span>
  8. </template>
  9. <script>
  10. import { mapState, mapActions } from "vuex";
  11. export default {
  12. components: {},
  13. props: ["userId", "link"],
  14. data() {
  15. return {};
  16. },
  17. computed: {
  18. ...mapState("user/userIdMap", {
  19. userIdMap: state => state.userIdMap
  20. })
  21. },
  22. methods: {
  23. ...mapActions("user/userIdMap", ["getUsernameFromId"])
  24. },
  25. mounted: function() {
  26. this.getUsernameFromId(this.$props.userId).then(() => {
  27. this.$forceUpdate();
  28. });
  29. }
  30. };
  31. </script>