mirror of
https://github.com/hcengineering/platform.git
synced 2025-04-18 14:23:36 +00:00
152 lines
3.8 KiB
Svelte
152 lines
3.8 KiB
Svelte
<!--
|
|
// Copyright © 2020 Anticrm Platform Contributors.
|
|
//
|
|
// Licensed under the Eclipse Public 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 https://www.eclipse.org/legal/epl-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.
|
|
-->
|
|
<script lang="ts">
|
|
import { createEventDispatcher } from 'svelte'
|
|
import Send from './icons/Send.svelte'
|
|
import Attach from './icons/Attach.svelte'
|
|
import Emoji from './icons/Emoji.svelte'
|
|
import GIF from './icons/GIF.svelte'
|
|
import TextStyle from './icons/TextStyle.svelte'
|
|
|
|
import TextEditor from './TextEditor.svelte'
|
|
|
|
const dispatch = createEventDispatcher()
|
|
|
|
</script>
|
|
|
|
<div class="ref-container">
|
|
<div class="textInput">
|
|
<div class="inputMsg">
|
|
<TextEditor on:message={ev => dispatch('message', ev.detail)}/>
|
|
</div>
|
|
<button class="sendButton"><div class="icon"><Send /></div></button>
|
|
</div>
|
|
<div class="buttons">
|
|
<div class="tool"><Attach /></div>
|
|
<div class="tool"><TextStyle /></div>
|
|
<div class="tool"><Emoji /></div>
|
|
<div class="tool"><GIF /></div>
|
|
</div>
|
|
</div>
|
|
|
|
<style lang="scss">
|
|
.ref-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: 74px;
|
|
|
|
.textInput {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
min-height: 44px;
|
|
padding: 8px 16px;
|
|
background-color: var(--theme-bg-accent-color);
|
|
border: 1px solid var(--theme-bg-accent-color);
|
|
border-radius: .75rem;
|
|
|
|
.inputMsg {
|
|
display: flex;
|
|
align-items: center;
|
|
width: 100%;
|
|
height: 100%;
|
|
color: var(--theme-content-color);
|
|
background-color: transparent;
|
|
border: none;
|
|
outline: none;
|
|
// &.thread {
|
|
// width: auto;
|
|
// }
|
|
|
|
// .flex-column {
|
|
// display: flex;
|
|
// flex-direction: column;
|
|
// align-items: center;
|
|
// }
|
|
|
|
// .flex-row {
|
|
// display: flex;
|
|
// flex-direction: row;
|
|
// align-items: flex-end;
|
|
// }
|
|
|
|
// .edit-box-horizontal {
|
|
// width: 100%;
|
|
// height: 100%;
|
|
// margin-top: 7px;
|
|
// align-self: center;
|
|
// }
|
|
|
|
// .edit-box-vertical {
|
|
// width: 100%;
|
|
// height: 100%;
|
|
// margin: 4px;
|
|
// }
|
|
}
|
|
.sendButton {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
margin-left: 8px;
|
|
padding: 0;
|
|
width: 20px;
|
|
height: 20px;
|
|
background-color: transparent;
|
|
border: 1px solid transparent;
|
|
border-radius: .25rem;
|
|
outline: none;
|
|
cursor: pointer;
|
|
|
|
.icon {
|
|
width: 20px;
|
|
height: 20px;
|
|
opacity: 0.3;
|
|
cursor: pointer;
|
|
&:hover {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
&:focus {
|
|
border: 1px solid var(--primary-button-focused-border);
|
|
box-shadow: 0 0 0 3px var(--primary-button-outline);
|
|
& > .icon {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.buttons {
|
|
margin: 10px 0 0 8px;
|
|
display: flex;
|
|
|
|
.tool {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 20px;
|
|
height: 20px;
|
|
opacity: 0.3;
|
|
cursor: pointer;
|
|
&:hover {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
.tool + .tool {
|
|
margin-left: 16px;
|
|
}
|
|
}
|
|
}
|
|
</style>
|