cleanup - part II
reshuffle file structure to make more sense
This commit is contained in:
parent
9ecb23ce71
commit
7e395f0fb6
5 changed files with 65 additions and 46 deletions
|
@ -36,7 +36,7 @@ import GroupStore from '../../../stores/GroupStore';
|
||||||
import RoomSubList from '../../structures/RoomSubList';
|
import RoomSubList from '../../structures/RoomSubList';
|
||||||
import ResizeHandle from '../elements/ResizeHandle';
|
import ResizeHandle from '../elements/ResizeHandle';
|
||||||
|
|
||||||
import {Resizer, RoomDistributor, RoomSizer} from '../../../resizer'
|
import {Resizer, RoomSubListDistributor} from '../../../resizer'
|
||||||
const HIDE_CONFERENCE_CHANS = true;
|
const HIDE_CONFERENCE_CHANS = true;
|
||||||
const STANDARD_TAGS_REGEX = /^(m\.(favourite|lowpriority|server_notice)|im\.vector\.fake\.(invite|recent|direct|archived))$/;
|
const STANDARD_TAGS_REGEX = /^(m\.(favourite|lowpriority|server_notice)|im\.vector\.fake\.(invite|recent|direct|archived))$/;
|
||||||
|
|
||||||
|
@ -167,7 +167,7 @@ module.exports = React.createClass({
|
||||||
const cfg = {
|
const cfg = {
|
||||||
onResized: this._onSubListResize,
|
onResized: this._onSubListResize,
|
||||||
};
|
};
|
||||||
this.resizer = new Resizer(this.resizeContainer, RoomDistributor, cfg);
|
this.resizer = new Resizer(this.resizeContainer, RoomSubListDistributor, cfg);
|
||||||
this.resizer.setClassNames({
|
this.resizer.setClassNames({
|
||||||
handle: "mx_ResizeHandle",
|
handle: "mx_ResizeHandle",
|
||||||
vertical: "mx_ResizeHandle_vertical",
|
vertical: "mx_ResizeHandle_vertical",
|
||||||
|
|
53
src/resizer/distributors/collapse.js
Normal file
53
src/resizer/distributors/collapse.js
Normal file
|
@ -0,0 +1,53 @@
|
||||||
|
/*
|
||||||
|
Copyright 2018 New Vector Ltd
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
import FixedDistributor from "./fixed";
|
||||||
|
import ResizeItem from "../item";
|
||||||
|
|
||||||
|
class CollapseItem extends ResizeItem {
|
||||||
|
notifyCollapsed(collapsed) {
|
||||||
|
const callback = this.resizer.config.onCollapsed;
|
||||||
|
if (callback) {
|
||||||
|
callback(collapsed, this.id, this.domNode);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default class CollapseDistributor extends FixedDistributor {
|
||||||
|
static createItem(resizeHandle, resizer, sizer) {
|
||||||
|
return new CollapseItem(resizeHandle, resizer, sizer);
|
||||||
|
}
|
||||||
|
|
||||||
|
constructor(item, config) {
|
||||||
|
super(item);
|
||||||
|
this.toggleSize = config && config.toggleSize;
|
||||||
|
this.isCollapsed = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
resize(newSize) {
|
||||||
|
const isCollapsedSize = newSize < this.toggleSize;
|
||||||
|
if (isCollapsedSize && !this.isCollapsed) {
|
||||||
|
this.isCollapsed = true;
|
||||||
|
this.item.notifyCollapsed(true);
|
||||||
|
} else if (!isCollapsedSize && this.isCollapsed) {
|
||||||
|
this.item.notifyCollapsed(false);
|
||||||
|
this.isCollapsed = false;
|
||||||
|
}
|
||||||
|
if (!isCollapsedSize) {
|
||||||
|
super.resize(newSize);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -14,8 +14,8 @@ See the License for the specific language governing permissions and
|
||||||
limitations under the License.
|
limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import ResizeItem from "./item";
|
import ResizeItem from "../item";
|
||||||
import Sizer from "./sizer";
|
import Sizer from "../sizer";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
distributors translate a moving cursor into
|
distributors translate a moving cursor into
|
||||||
|
@ -29,7 +29,7 @@ they have two methods:
|
||||||
the offset from the container edge of where
|
the offset from the container edge of where
|
||||||
the mouse cursor is.
|
the mouse cursor is.
|
||||||
*/
|
*/
|
||||||
export class FixedDistributor {
|
export default class FixedDistributor {
|
||||||
static createItem(resizeHandle, resizer, sizer) {
|
static createItem(resizeHandle, resizer, sizer) {
|
||||||
return new ResizeItem(resizeHandle, resizer, sizer);
|
return new ResizeItem(resizeHandle, resizer, sizer);
|
||||||
}
|
}
|
||||||
|
@ -55,38 +55,3 @@ export class FixedDistributor {
|
||||||
|
|
||||||
finish() {}
|
finish() {}
|
||||||
}
|
}
|
||||||
|
|
||||||
class CollapseItem extends ResizeItem {
|
|
||||||
notifyCollapsed(collapsed) {
|
|
||||||
const callback = this.resizer.config.onCollapsed;
|
|
||||||
if (callback) {
|
|
||||||
callback(collapsed, this.id, this.domNode);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export class CollapseDistributor extends FixedDistributor {
|
|
||||||
static createItem(resizeHandle, resizer, sizer) {
|
|
||||||
return new CollapseItem(resizeHandle, resizer, sizer);
|
|
||||||
}
|
|
||||||
|
|
||||||
constructor(item, config) {
|
|
||||||
super(item);
|
|
||||||
this.toggleSize = config && config.toggleSize;
|
|
||||||
this.isCollapsed = false;
|
|
||||||
}
|
|
||||||
|
|
||||||
resize(newSize) {
|
|
||||||
const isCollapsedSize = newSize < this.toggleSize;
|
|
||||||
if (isCollapsedSize && !this.isCollapsed) {
|
|
||||||
this.isCollapsed = true;
|
|
||||||
this.item.notifyCollapsed(true);
|
|
||||||
} else if (!isCollapsedSize && this.isCollapsed) {
|
|
||||||
this.item.notifyCollapsed(false);
|
|
||||||
this.isCollapsed = false;
|
|
||||||
}
|
|
||||||
if (!isCollapsedSize) {
|
|
||||||
super.resize(newSize);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -14,8 +14,8 @@ See the License for the specific language governing permissions and
|
||||||
limitations under the License.
|
limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import Sizer from "./sizer";
|
import Sizer from "../sizer";
|
||||||
import ResizeItem from "./item";
|
import ResizeItem from "../item";
|
||||||
|
|
||||||
class RoomSizer extends Sizer {
|
class RoomSizer extends Sizer {
|
||||||
setItemSize(item, size) {
|
setItemSize(item, size) {
|
||||||
|
@ -50,7 +50,7 @@ class RoomSubListItem extends ResizeItem {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default class RoomDistributor {
|
export default class RoomSubListDistributor {
|
||||||
static createItem(resizeHandle, resizer, sizer) {
|
static createItem(resizeHandle, resizer, sizer) {
|
||||||
return new RoomSubListItem(resizeHandle, resizer, sizer);
|
return new RoomSubListItem(resizeHandle, resizer, sizer);
|
||||||
}
|
}
|
|
@ -14,13 +14,14 @@ See the License for the specific language governing permissions and
|
||||||
limitations under the License.
|
limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import {FixedDistributor, CollapseDistributor} from "./distributors";
|
import FixedDistributor from "./distributors/fixed";
|
||||||
|
import CollapseDistributor from "./distributors/collapse";
|
||||||
|
import RoomSubListDistributor from "./distributors/roomsublist";
|
||||||
import Resizer from "./resizer";
|
import Resizer from "./resizer";
|
||||||
import RoomDistributor from "./room";
|
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
Resizer,
|
Resizer,
|
||||||
FixedDistributor,
|
FixedDistributor,
|
||||||
CollapseDistributor,
|
CollapseDistributor,
|
||||||
RoomDistributor,
|
RoomSubListDistributor,
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue