open-vault/ui/app/templates/components/json-editor.hbs
Angel Garbarino 0455d31b84
Remove Ivy Codemirror (#14659)
* setup

* fix mode issue

* actions

* readonly styling

* remove ivycodemirror from package json

* wip

* test coverage for json editor

* text fixes

* fix tests

* fix cursor issue

* changelog

* clean up

* fix

* address pr comments

* unused css and it overides other styling.

* fix

* fix comment
2022-03-29 10:25:16 -06:00

48 lines
1.3 KiB
Handlebars

<div ...attributes>
{{#if this.getShowToolbar}}
<div data-test-component="json-editor-toolbar">
<Toolbar>
<label class="is-label" data-test-component="json-editor-title">
{{@title}}
{{#if @subTitle}}
<span class="is-size-9 is-lowercase has-text-grey">({{@subTitle}})</span>
{{/if}}
</label>
<ToolbarActions>
{{yield}}
<div class="toolbar-separator"></div>
<CopyButton
class="button is-transparent"
@clipboardText={{@value}}
@buttonType="button"
@success={{action (set-flash-message "Data copied!")}}
>
<Icon @name="clipboard-copy" aria-label="Copy" />
</CopyButton>
</ToolbarActions>
</Toolbar>
</div>
{{/if}}
<div
{{code-mirror
content=@value
extraKeys=@extraKeys
gutters=@gutters
lineNumbers=(if @readOnly false true)
mode=@mode
readOnly=@readOnly
theme=@theme
viewportMarg=@viewportMargin
onUpdate=this.onUpdate
onFocus=this.onFocus
}}
class={{if @readOnly "readonly-codemirror"}}
data-test-component="code-mirror-modifier"
></div>
{{#if @helpText}}
<div class="box is-shadowless is-fullwidth has-short-padding">
<p class="sub-text">{{@helpText}}</p>
</div>
{{/if}}
</div>