More changes
This commit is contained in:
parent
3b4d3f08f6
commit
48c0aae3c0
8 changed files with 12 additions and 16 deletions
|
|
@ -398,6 +398,7 @@ import prettyBytes from "pretty-bytes";
|
|||
import RoomExport from "./RoomExport.vue";
|
||||
import EmojiPicker from 'vue3-emoji-picker';
|
||||
import emitter from 'tiny-emitter/instance';
|
||||
import { markRaw } from "vue";
|
||||
|
||||
const READ_RECEIPT_TIMEOUT = 5000; /* How long a message must have been visible before the read marker is updated */
|
||||
const WINDOW_BUFFER_SIZE = 0.3; /** Relative window height of when we start paginating. Always keep this much loaded before and after our scroll position! */
|
||||
|
|
|
|||
|
|
@ -269,7 +269,6 @@ import { mapState } from 'vuex'
|
|||
export default {
|
||||
name: "Profile",
|
||||
mixins: [profileInfoMixin],
|
||||
inject: ['$matrix'],
|
||||
components: {
|
||||
ActionRow,
|
||||
SelectLanguageDialog,
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
import { markRaw } from "vue";
|
||||
import util, { ROOM_TYPE_CHANNEL, STATE_EVENT_ROOM_DELETION_NOTICE } from "../plugins/utils";
|
||||
import MessageIncomingText from "./messages/MessageIncomingText";
|
||||
import MessageIncomingFile from "./messages/MessageIncomingFile";
|
||||
|
|
@ -130,6 +131,14 @@ export default {
|
|||
},
|
||||
|
||||
componentForEvent(event, isForExport = false) {
|
||||
let component = this.componentForEventInternal(event, isForExport);
|
||||
if (component) {
|
||||
return markRaw(component);
|
||||
}
|
||||
return component;
|
||||
},
|
||||
|
||||
componentForEventInternal(event, isForExport = false) {
|
||||
const isChannel = this.roomDisplayType === ROOM_TYPE_CHANNEL;
|
||||
if (event === ROOM_READ_MARKER_EVENT_PLACEHOLDER) {
|
||||
return ReadMarker;
|
||||
|
|
|
|||
|
|
@ -9,7 +9,6 @@ linkify.options.defaults.className = "link";
|
|||
linkify.options.defaults.target = { url: "_blank" };
|
||||
|
||||
export default {
|
||||
inject: ['$matrix'],
|
||||
components: {
|
||||
QuickReactions,
|
||||
},
|
||||
|
|
|
|||
|
|
@ -182,14 +182,6 @@ app.use(i18n);
|
|||
|
||||
app.use(matrix, { store: store, i18n: i18n });
|
||||
|
||||
//app.use(matrix);
|
||||
//app.use(config);
|
||||
// app.use(analytics);
|
||||
// app.use(audioPlayer);
|
||||
// app.render = h => {
|
||||
// console.error("RENDERRENDERRENDERRENDERRENDSNAENNRENRANERNARE");
|
||||
// h(App);
|
||||
// }
|
||||
if (app.$config.accentColor) {
|
||||
app.$vuetify.theme.themes.light.primary = app.$config.accentColor;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1055,7 +1055,6 @@ class Util {
|
|||
}
|
||||
|
||||
getMatrixBaseUrl(user, config) {
|
||||
console.error("getMatrixBaseUrl", user, config);
|
||||
if (user) {
|
||||
const domain = User.domainPart(user.user_id);
|
||||
if (domain) {
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@ import * as components from "vuetify/components";
|
|||
import * as directives from "vuetify/directives";
|
||||
import { aliases, md } from "vuetify/iconsets/md";
|
||||
import { h } from "vue";
|
||||
import 'vuetify/styles';
|
||||
|
||||
// Import all .vue icons and process them, so they can be used
|
||||
// as $vuetify.icons.<iconname>
|
||||
|
|
|
|||
|
|
@ -389,11 +389,7 @@ export default {
|
|||
{
|
||||
const room = this.matrixClient.getRoom(event.getRoomId());
|
||||
if (room) {
|
||||
Vue.set(
|
||||
room,
|
||||
"avatar",
|
||||
room.getAvatarUrl(this.matrixClient.getHomeserverUrl(), 80, 80, "scale", true, this.useAuthedMedia)
|
||||
);
|
||||
room["avatar"] = room.getAvatarUrl(this.matrixClient.getHomeserverUrl(), 80, 80, "scale", true, this.useAuthedMedia);
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue