|
|
@ -25,16 +25,12 @@ export default class AppNewGroupTab implements SliderTab { |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
this.groupNameInput.addEventListener('input', () => { |
|
|
|
this.groupNameInput.addEventListener('input', () => { |
|
|
|
let value = this.groupNameInput.value; |
|
|
|
const value = this.groupNameInput.value; |
|
|
|
if(value.length) { |
|
|
|
this.nextBtn.classList.toggle('is-visible', !!value.length); |
|
|
|
this.nextBtn.classList.add('is-visible'); |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
this.nextBtn.classList.remove('is-visible'); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
this.nextBtn.addEventListener('click', () => { |
|
|
|
this.nextBtn.addEventListener('click', () => { |
|
|
|
let title = this.groupNameInput.value; |
|
|
|
const title = this.groupNameInput.value; |
|
|
|
|
|
|
|
|
|
|
|
this.nextBtn.disabled = true; |
|
|
|
this.nextBtn.disabled = true; |
|
|
|
appChatsManager.createChat(title, this.userIDs).then((chatID) => { |
|
|
|
appChatsManager.createChat(title, this.userIDs).then((chatID) => { |
|
|
@ -48,11 +44,11 @@ export default class AppNewGroupTab implements SliderTab { |
|
|
|
}); |
|
|
|
}); |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
let chatsContainer = document.createElement('div'); |
|
|
|
const chatsContainer = document.createElement('div'); |
|
|
|
chatsContainer.classList.add('chats-container'); |
|
|
|
chatsContainer.classList.add('chats-container'); |
|
|
|
chatsContainer.append(this.searchGroup.container); |
|
|
|
chatsContainer.append(this.searchGroup.container); |
|
|
|
|
|
|
|
|
|
|
|
let scrollable = new Scrollable(chatsContainer); |
|
|
|
const scrollable = new Scrollable(chatsContainer); |
|
|
|
|
|
|
|
|
|
|
|
this.contentDiv.append(chatsContainer); |
|
|
|
this.contentDiv.append(chatsContainer); |
|
|
|
} |
|
|
|
} |
|
|
@ -64,12 +60,13 @@ export default class AppNewGroupTab implements SliderTab { |
|
|
|
public onCloseAfterTimeout() { |
|
|
|
public onCloseAfterTimeout() { |
|
|
|
this.searchGroup.clear(); |
|
|
|
this.searchGroup.clear(); |
|
|
|
|
|
|
|
|
|
|
|
let ctx = this.canvas.getContext('2d'); |
|
|
|
const ctx = this.canvas.getContext('2d'); |
|
|
|
ctx.clearRect(0, 0, this.canvas.width, this.canvas.height); |
|
|
|
ctx.clearRect(0, 0, this.canvas.width, this.canvas.height); |
|
|
|
|
|
|
|
|
|
|
|
this.uploadAvatar = null; |
|
|
|
this.uploadAvatar = null; |
|
|
|
this.groupNameInput.value = ''; |
|
|
|
this.groupNameInput.value = ''; |
|
|
|
this.nextBtn.disabled = false; |
|
|
|
this.nextBtn.disabled = false; |
|
|
|
|
|
|
|
this.searchGroup.clear(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public init(userIDs: number[]) { |
|
|
|
public init(userIDs: number[]) { |
|
|
|