Remove conditions from editor
continuous-integration/drone/push Build is failing Details

This commit is contained in:
philipp lang 2024-12-22 19:26:59 +01:00
parent 1d09afbeb3
commit 374d05a2ca
2 changed files with 3 additions and 172 deletions

View File

@ -18,7 +18,6 @@ class Editor extends Component
public ?string $hint = null, public ?string $hint = null,
public bool $required = false, public bool $required = false,
public string $label = '', public string $label = '',
public array $conditions = [],
) { ) {
$this->id = str()->uuid()->toString(); $this->id = str()->uuid()->toString();
} }
@ -26,7 +25,7 @@ class Editor extends Component
public function render() public function render()
{ {
return <<<'HTML' return <<<'HTML'
<div class="flex flex-col group {{$heightClass}}" x-data=""> <div class="flex flex-col group {{$heightClass}}">
@if ($label) @if ($label)
<x-form::label :required="$required">{{$label}}</x-form::label> <x-form::label :required="$required">{{$label}}</x-form::label>
@endif @endif
@ -38,8 +37,7 @@ class Editor extends Component
group-[.size-default]:text-sm group-[.size-sm]:text-xs group-[.size-default]:text-sm group-[.size-sm]:text-xs
group-[.size-default]:p-2 group-[.size-sm]:p-1 group-[.size-default]:p-2 group-[.size-sm]:p-1
" @updated="$wire.{{$attributes->wire('model')->value}} = $event.detail" x-bind="editor"x-data="{ " @updated="$wire.{{$attributes->wire('model')->value}} = $event.detail" x-bind="editor"x-data="{
conditions: @js($conditions), value: $wire.{{$attributes->wire('model')->value}},
value: $wire.{{$attributes->wire('model')->value}}
}" id="{{$id}}" {{$attributes}}></div> }" id="{{$id}}" {{$attributes}}></div>
<x-ui::errors :for="$name" /> <x-ui::errors :for="$name" />
@if($hint) @if($hint)

View File

@ -5,114 +5,11 @@ import Paragraph from '@editorjs/paragraph';
import NestedList from '@editorjs/nested-list'; import NestedList from '@editorjs/nested-list';
import Alert from 'editorjs-alert'; import Alert from 'editorjs-alert';
class ConditionTune {
constructor({api, data, config, block}) {
this.api = api;
this.data = data || {
mode: 'all',
ifs: [],
};
this.config = config;
this.block = block;
this.wrapper = null;
}
static get isTune() {
return true;
}
wrap(blockContent) {
this.wrapper = document.createElement('div');
var tooltip = document.createElement('div');
tooltip.setAttribute('data-tooltip', '');
var content = document.createElement('div');
content.setAttribute('data-content', '');
content.appendChild(blockContent);
this.wrapper.appendChild(tooltip);
this.wrapper.appendChild(content);
this.styleWrapper();
return this.wrapper;
}
hasData() {
return this.data.ifs.length > 0;
}
styleWrapper() {
if (this.hasData()) {
this.wrapper.querySelector('[data-content]').className = 'p-1 border border-blue-100 rounded';
this.wrapper.querySelector('[data-tooltip]').className =
'mt-1 inline-block tracking-wider font-semibold ml-2 mr-2 px-2 py-1 items-center text-xs leading-none bg-blue-100 text-blue-900 rounded-t-lg';
this.wrapper.querySelector('[data-tooltip]').innerHTML = this.descriptionName();
} else {
this.wrapper.querySelector('[data-content]').className = '';
this.wrapper.querySelector('[data-tooltip]').className = '';
this.wrapper.querySelector('[data-tooltip]').innerHTML = '';
}
}
descriptionName() {
return (
'Bedingung ' +
this.data.ifs
.map((i) => {
var parts = [i.field];
if (i.comparator === 'isEqual' || i.comparator === 'isIn') {
parts.push('=');
}
if (i.comparator === 'isNotEqual' || i.comparator === 'isNotIn') {
parts.push('&ne;');
}
if (typeof i.value === 'string') {
parts.push(i.value);
}
if (Array.isArray(i.value)) {
parts.push(i.value.join(', '));
}
if (typeof i.value === 'boolean') {
parts.push(i.value ? 'An' : 'Aus');
}
return parts.join(' ');
})
.join(', ')
);
}
render() {
return {
label: 'Bedingungen',
closeOnActivate: true,
toggle: true,
onActivate: async () => {
this.data = await openPopup(this.data);
this.styleWrapper();
this.block.dispatchChange();
},
};
}
save() {
return this.data;
}
}
export default { export default {
'editor': null, 'editor': null,
'value': null, 'value': null,
'x-init': async function () { 'x-init': function () {
var tools = { var tools = {
paragraph: { paragraph: {
class: Paragraph, class: Paragraph,
@ -147,81 +44,17 @@ export default {
}, },
}; };
var tunes = [];
// if (props.conditions) {
// tools.condition = {
// class: ConditionTune,
// };
// tunes.push('condition');
// }
this.editor = new EditorJS({ this.editor = new EditorJS({
placeholder: '', placeholder: '',
holder: this.$el.getAttribute('id'), holder: this.$el.getAttribute('id'),
minHeight: 0, minHeight: 0,
defaultBlock: 'paragraph', defaultBlock: 'paragraph',
data: this.value, data: this.value,
tunes: tunes,
tools: tools, tools: tools,
onChange: debounce(async (api, event) => { onChange: debounce(async (api, event) => {
const data = await this.editor.save(); const data = await this.editor.save();
this.$dispatch('updated', data); this.$dispatch('updated', data);
}, 200), }, 200),
onPopup: () => {
console.log('opened');
},
}); });
await this.editor.isReady;
}, },
}; };
// const props = defineProps({
// required: {
// type: Boolean,
// default: false,
// },
// size: {
// type: String,
// default: () => 'base',
// },
// rows: {
// type: Number,
// default: () => 4,
// },
// id: {
// type: String,
// required: true,
// },
// conditions: {
// required: false,
// type: Boolean,
// default: () => false,
// },
// hint: {
// type: String,
// default: () => '',
// },
// modelValue: {
// default: undefined,
// },
// label: {
// type: String,
// default: () => '',
// },
// });
async function openPopup(data) {
return new Promise((resolve, reject) => {
new Promise((innerResolve, innerReject) => {
condition.value = {
resolve: innerResolve,
reject: innerReject,
data: data,
};
}).then((data) => {
resolve(data);
condition.value = null;
});
});
}