Browse Source

Move MUC templates to the plugin folder

JC Brand 4 years ago
parent
commit
94bc087f50

+ 8 - 8
src/plugins/muc-views/muc.js

@@ -6,12 +6,12 @@ import MUCInviteModal from 'modals/muc-invite.js';
 import ModeratorToolsModal from 'modals/moderator-tools.js';
 import ModeratorToolsModal from 'modals/moderator-tools.js';
 import RoomDetailsModal from 'modals/muc-details.js';
 import RoomDetailsModal from 'modals/muc-details.js';
 import log from '@converse/headless/log';
 import log from '@converse/headless/log';
-import tpl_chatroom from 'templates/chatroom.js';
-import tpl_chatroom_head from 'templates/chatroom_head.js';
-import tpl_muc_bottom_panel from 'templates/muc_bottom_panel.js';
-import tpl_muc_destroyed from 'templates/muc_destroyed.js';
-import tpl_muc_disconnect from 'templates/muc_disconnect.js';
-import tpl_muc_nickname_form from 'templates/muc_nickname_form.js';
+import tpl_muc from './templates/muc.js';
+import tpl_muc_head from './templates/muc_head.js';
+import tpl_muc_bottom_panel from './templates/muc_bottom_panel.js';
+import tpl_muc_destroyed from './templates/muc_destroyed.js';
+import tpl_muc_disconnect from './templates/muc_disconnect.js';
+import tpl_muc_nickname_form from './templates/muc_nickname_form.js';
 import tpl_spinner from 'templates/spinner.js';
 import tpl_spinner from 'templates/spinner.js';
 import { $pres, Strophe } from 'strophe.js/src/strophe';
 import { $pres, Strophe } from 'strophe.js/src/strophe';
 import { Model } from '@converse/skeletor/src/model.js';
 import { Model } from '@converse/skeletor/src/model.js';
@@ -129,7 +129,7 @@ export default class MUCView extends BaseChatView {
         const sidebar_hidden = !this.shouldShowSidebar();
         const sidebar_hidden = !this.shouldShowSidebar();
         this.setAttribute('id', this.model.get('box_id'));
         this.setAttribute('id', this.model.get('box_id'));
         render(
         render(
-            tpl_chatroom({
+            tpl_muc({
                 sidebar_hidden,
                 sidebar_hidden,
                 'model': this.model,
                 'model': this.model,
                 'occupants': this.model.occupants,
                 'occupants': this.model.occupants,
@@ -521,7 +521,7 @@ export default class MUCView extends BaseChatView {
         const heading_btns = await this.getHeadingButtons(subject_hidden);
         const heading_btns = await this.getHeadingButtons(subject_hidden);
         const standalone_btns = heading_btns.filter(b => b.standalone);
         const standalone_btns = heading_btns.filter(b => b.standalone);
         const dropdown_btns = heading_btns.filter(b => !b.standalone);
         const dropdown_btns = heading_btns.filter(b => !b.standalone);
-        return tpl_chatroom_head(
+        return tpl_muc_head(
             Object.assign(this.model.toJSON(), {
             Object.assign(this.model.toJSON(), {
                 _converse,
                 _converse,
                 subject_hidden,
                 subject_hidden,

+ 0 - 0
src/templates/chatroom.js → src/plugins/muc-views/templates/muc.js


+ 1 - 1
src/templates/muc_bottom_panel.js → src/plugins/muc-views/templates/muc_bottom_panel.js

@@ -1,4 +1,4 @@
-import { __ } from '../i18n';
+import { __ } from 'i18n';
 import { html } from "lit-html";
 import { html } from "lit-html";
 
 
 
 

+ 1 - 1
src/templates/muc_destroyed.js → src/plugins/muc-views/templates/muc_destroyed.js

@@ -1,4 +1,4 @@
-import { __ } from '../i18n';
+import { __ } from 'i18n';
 import { html } from "lit-html";
 import { html } from "lit-html";
 
 
 
 

+ 0 - 0
src/templates/muc_disconnect.js → src/plugins/muc-views/templates/muc_disconnect.js


+ 2 - 2
src/templates/chatroom_head.js → src/plugins/muc-views/templates/muc_head.js

@@ -1,5 +1,5 @@
-import '../components/dropdown.js';
-import { __ } from '../i18n';
+import 'components/dropdown.js';
+import { __ } from 'i18n';
 import { html } from "lit-html";
 import { html } from "lit-html";
 import { until } from 'lit-html/directives/until.js';
 import { until } from 'lit-html/directives/until.js';
 import { converse } from "@converse/headless/core";
 import { converse } from "@converse/headless/core";

+ 1 - 1
src/templates/muc_nickname_form.js → src/plugins/muc-views/templates/muc_nickname_form.js

@@ -1,4 +1,4 @@
-import { __ } from '../i18n';
+import { __ } from 'i18n';
 import { api } from "@converse/headless/core";
 import { api } from "@converse/headless/core";
 import { html } from "lit-html";
 import { html } from "lit-html";