37 lines
1.3 KiB
Svelte
37 lines
1.3 KiB
Svelte
<script>
|
|
import CommonHelper from "@/utils/CommonHelper";
|
|
import tooltip from "@/actions/tooltip";
|
|
import Field from "@/components/base/Field.svelte";
|
|
import SchemaField from "@/components/collections/schema/SchemaField.svelte";
|
|
|
|
export let field;
|
|
export let key = "";
|
|
|
|
$: if (CommonHelper.isEmpty(field.options)) {
|
|
loadDefaults();
|
|
}
|
|
|
|
function loadDefaults() {
|
|
field.options = {
|
|
convertUrls: false,
|
|
};
|
|
}
|
|
</script>
|
|
|
|
<SchemaField bind:field {key} on:rename on:remove {...$$restProps}>
|
|
<svelte:fragment slot="optionsFooter">
|
|
<Field class="form-field form-field-toggle" name="schema.{key}.options.convertUrls" let:uniqueId>
|
|
<input type="checkbox" id={uniqueId} bind:checked={field.options.convertUrls} />
|
|
<label for={uniqueId}>
|
|
<span class="txt">Strip urls domain</span>
|
|
<i
|
|
class="ri-information-line link-hint"
|
|
use:tooltip={{
|
|
text: `This could help making the editor content more portable between environments since there will be no local base url to replace.`,
|
|
}}
|
|
/>
|
|
</label>
|
|
</Field>
|
|
</svelte:fragment>
|
|
</SchemaField>
|