123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- -module(element_command).
- %%-author('Vladimir Galunshchikov').
- -include_lib("nitro/include/nitro.hrl").
- -export([
- render_element/1
- ]).
- render_element(Record) when Record#command.show_if == false -> [<<>>];
- render_element(Record) ->
- List = [
- %% global
- {<<"accesskey">>, Record#command.accesskey},
- {<<"class">>, Record#command.class},
- {<<"contenteditable">>,
- case Record#command.contenteditable of
- true -> "true";
- false -> "false";
- _ -> []
- end},
-
- {<<"contextmenu">>, Record#command.contextmenu},
- {<<"dir">>,
- case Record#command.dir of
- ltr -> "ltr";
- rtl -> "rtl";
- auto -> "auto";
- _ -> []
- end},
-
- {<<"draggable">>,
- case Record#command.draggable of
- true -> "true";
- false -> "false";
- _ -> []
- end},
-
- {<<"dropzone">>, Record#command.dropzone},
- {<<"hidden">>,
- case Record#command.hidden of
- true -> "hidden";
- _ -> []
- end},
-
- {<<"id">>, Record#command.id},
- {<<"lang">>, Record#command.lang},
- {<<"spellcheck">>,
- case Record#command.spellcheck of
- true -> "true";
- false -> "false";
- _ -> []
- end},
-
- {<<"style">>, Record#command.style},
- {<<"tabindex">>, Record#command.tabindex},
- {<<"title">>, Record#command.title},
- {<<"translate">>,
- case Record#command.contenteditable of
- true -> "yes";
- false -> "no";
- _ -> []
- end},
-
- %% spec
- {<<"disabled">>,
- case Record#command.disabled of
- true -> "disabled";
- _ -> []
- end},
-
- {<<"icon">>, Record#command.icon},
- {<<"label">>, Record#command.label},
- {<<"radiogroup">>, Record#command.radiogroup},
- {<<"type">>,
- case Record#command.type of
- command -> "command";
- radio -> "radio";
- checkbox -> "checkbox";
- _ -> []
- end} | Record#command.data_fields
- ],
-
- wf_tags:emit_tag(<<"command">>, List).
|