Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Chore: Threads as React components #27524

Merged
merged 14 commits into from Dec 20, 2022
Merged
6 changes: 5 additions & 1 deletion apps/meteor/app/models/client/index.ts
Expand Up @@ -23,9 +23,13 @@ import { WebdavAccounts } from './models/WebdavAccounts';
import CustomSounds from './models/CustomSounds';
import EmojiCustom from './models/EmojiCustom';

/** @deprecated */
const Users = _.extend({}, users, Meteor.users);
/** @deprecated */
const Subscriptions = _.extend({}, subscriptions, ChatSubscription);
const Messages = _.extend({}, ChatMessage);
/** @deprecated */
const Messages = _.extend({}, ChatMessage) as typeof ChatMessage;
/** @deprecated */
const Rooms = _.extend({}, ChatRoom);

export {
Expand Down
40 changes: 0 additions & 40 deletions apps/meteor/app/theme/client/imports/general/base_old.css
Expand Up @@ -2220,46 +2220,6 @@
background-color: var(--selection-background);
}

.rc-old .dropzone {
& .dropzone-overlay {
position: absolute;
z-index: 1000000;
top: 0;
right: 0;
bottom: 0;
left: 0;

display: none;

animation-name: zoomIn;
animation-duration: 0.1s;

text-align: center;

background: rgba(255, 255, 255, 0.8);

font-size: 42px;
align-items: center;
justify-content: center;

&--enabled {
color: var(--color-blue);

border: 4px dashed var(--color-blue);
}

&--disabled {
color: var(--color-red);

border: 4px dashed var(--color-red);
}
}

&.over .dropzone-overlay {
display: flex;
}
}

@keyframes zoomIn {
0% {
transform: scale3d(0.9, 0.9, 0.9);
Expand Down
144 changes: 0 additions & 144 deletions apps/meteor/app/threads/client/flextab/dropzone.ts

This file was deleted.

5 changes: 0 additions & 5 deletions apps/meteor/app/threads/client/flextab/messageBoxFollow.html

This file was deleted.

11 changes: 0 additions & 11 deletions apps/meteor/app/threads/client/flextab/messageBoxFollow.ts

This file was deleted.

32 changes: 0 additions & 32 deletions apps/meteor/app/threads/client/flextab/thread.html

This file was deleted.