platform/packages/ui/src/components/RadioButton.svelte
Alexander Platov b38b252296
Added components: RadioButton, RadioGroup (#3505)
Signed-off-by: Alexander Platov <sas_lord@mail.ru>
2023-07-18 15:47:35 +06:00

50 lines
1.5 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 type { IntlString } from '@hcengineering/platform'
import { generateId } from '@hcengineering/core'
import { Label } from '..'
export let id: string = generateId()
export let group: any
export let value: any
export let disabled: boolean = false
export let label: string | undefined = undefined
export let labelIntl: IntlString | undefined = undefined
export let labelParams: Record<string, any> | undefined = undefined
export let action: () => void = () => {}
export let gap: 'small' | 'medium' | 'none' = 'none'
</script>
<input
class="antiRadio"
{id}
type="radio"
bind:group
{value}
{disabled}
on:click={() => {
if (!disabled && group !== value) action()
}}
/>
<label for={id} class="gap-{gap}">
<slot />
{#if labelIntl}
<Label label={labelIntl} params={labelParams} />
{:else}
{label}
{/if}
</label>