mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-04 16:46:55 +00:00
* feat: static button type * fix: swagger * fix: style corrections * feat: webhook trigger * fix: disables * feat: Button icons fix: row Delete failing * fix: expanded-form ux fix: disable buttons in forms fix: update PlainCell button handling fix: webhook delete, active change handling * fix: disable case * fix: disable case * fix: update Button styles * fix: refactor min/max with limit for columns fix: disable filter, groupby for Button Field fix: disable aggregation for Buttons * fix: hide button field in Filters * fix: fields menu corrections fix: update menu corrections * fix: rebase * feat: support webhook creation from ButtonOptions * fix: sort related tests * fix: keep webhook modal open * fix: ui fixes * fix: icon duplicate * fix: syntax highlighing for handlebar fix: disable mascot fix: truncate selected webhook * fix: sort disable tooltip * test: button playwright test * fix: button column duplication * fix: add error fix: column options * fix: EditOrAddProvider.vue * fix: add invalid configuration * fix: ux corrections * fix: ux corrections * fix: error handling fix: clear single query cache on hook delete * fix: include button type in api * fix: update overlay styles fix: webhook update * fix: formula placeholder * fix: playwright tests * fix: playwright tests * feat: refactor formula input * fix: added more spacing * fix: no icon text * fix: lint * fix: handle invalid url * fix: handle sort by for button causes issue when button used as lookup * fix: button field position * docs: button field * fix: tooltip correction * fix: link * fix: add btn href * fix: handle some edge cases * fix: handle some edge cases * fix: update font color * fix: add manual trigger docs * fix: sqlite BaseModel fix * docs: button share view info * fix: rebase * fix: reduce height and added resize support fix: added tooltip if label overflow * fix: manual hook disable state * docs: manual trigger details in webhook page * fix: chevron grey shade to 500 * docs: sample payload for manual trigger * fix: style update * fix: pr review comments * fix: pr review changes * fix: reactivity issue * fix: reactivity issue * fix: filter enabled on button * fix: reload meta on webhook change * fix: error handling in formula filter * fix: handle url error --------- Co-authored-by: Raju Udava <86527202+dstala@users.noreply.github.com>
77 lines
2.5 KiB
Vue
77 lines
2.5 KiB
Vue
<script setup lang="ts">
|
|
import type { ColumnType } from 'nocodb-sdk'
|
|
import { isCreatedOrLastModifiedByCol, isCreatedOrLastModifiedTimeCol } from 'nocodb-sdk'
|
|
|
|
const props = defineProps<{
|
|
column: ColumnType
|
|
modelValue: any
|
|
row?: Row
|
|
active?: boolean
|
|
readOnly?: boolean
|
|
}>()
|
|
|
|
const emit = defineEmits(['update:modelValue', 'navigate', 'save'])
|
|
|
|
const column = toRef(props, 'column')
|
|
const active = toRef(props, 'active', false)
|
|
const row = toRef(props, 'row')
|
|
const readOnly = toRef(props, 'readOnly', false)
|
|
|
|
provide(ColumnInj, column)
|
|
provide(ActiveCellInj, active)
|
|
provide(RowInj, row)
|
|
provide(CellValueInj, toRef(props, 'modelValue'))
|
|
provide(SaveRowInj, () => emit('save'))
|
|
provide(ReadonlyInj, readOnly)
|
|
|
|
const isGrid = inject(IsGridInj, ref(false))
|
|
|
|
const isForm = inject(IsFormInj, ref(false))
|
|
|
|
const isExpandedForm = inject(IsExpandedFormOpenInj, ref(false))
|
|
|
|
function onNavigate(dir: NavigateDir, e: KeyboardEvent) {
|
|
emit('navigate', dir)
|
|
|
|
if (!isForm.value) e.stopImmediatePropagation()
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<div
|
|
class="nc-virtual-cell w-full flex items-center"
|
|
:class="[
|
|
`nc-virtual-cell-${(column.uidt || 'default').toLowerCase()}`,
|
|
{
|
|
'text-right justify-end': isGrid && !isForm && isRollup(column) && !isExpandedForm,
|
|
'nc-display-value-cell': isPrimary(column) && !isForm,
|
|
},
|
|
]"
|
|
@keydown.enter.exact="onNavigate(NavigateDir.NEXT, $event)"
|
|
@keydown.shift.enter.exact="onNavigate(NavigateDir.PREV, $event)"
|
|
>
|
|
<LazyVirtualCellLinks v-if="isLink(column)" />
|
|
<LazyVirtualCellHasMany v-else-if="isHm(column)" />
|
|
<LazyVirtualCellManyToMany v-else-if="isMm(column)" />
|
|
<LazyVirtualCellBelongsTo v-else-if="isBt(column)" />
|
|
<LazyVirtualCellOneToOne v-else-if="isOo(column)" />
|
|
<LazyVirtualCellRollup v-else-if="isRollup(column)" />
|
|
<LazyVirtualCellFormula v-else-if="isFormula(column)" />
|
|
<LazyVirtualCellQrCode v-else-if="isQrCode(column)" />
|
|
<LazyVirtualCellBarcode v-else-if="isBarcode(column)" />
|
|
<LazyVirtualCellCount v-else-if="isCount(column)" />
|
|
<LazyVirtualCellLookup v-else-if="isLookup(column)" />
|
|
<LazyVirtualCellButton v-else-if="isButton(column)" />
|
|
<LazyCellReadOnlyDateTimePicker v-else-if="isCreatedOrLastModifiedTimeCol(column)" :model-value="modelValue" />
|
|
<LazyCellReadOnlyUser v-else-if="isCreatedOrLastModifiedByCol(column)" :model-value="modelValue" />
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
.nc-virtual-cell {
|
|
&.nc-display-value-cell {
|
|
@apply !text-brand-500;
|
|
}
|
|
}
|
|
</style>
|