diff --git a/src/utils/mark.ts b/src/utils/mark.ts index ac80623..258dc51 100644 --- a/src/utils/mark.ts +++ b/src/utils/mark.ts @@ -9,20 +9,8 @@ import { faSignature, faBriefcase, faIdCard, - faHeading, faClock, - faCalendarDays, - fa1, - faImage, - faSquareCheck, - faCheckDouble, - faPaperclip, - faCircleDot, - faSquareCaretDown, - faTableCellsLarge, - faStamp, - faCreditCard, - faPhone + fa1 } from '@fortawesome/free-solid-svg-icons' /** @@ -154,15 +142,9 @@ const findOtherUserMarks = (marks: Mark[], pubkey: string): Mark[] => { export const DEFAULT_TOOLBOX = [ { - identifier: MarkType.TEXT, - icon: faT, - label: 'Text', - active: true - }, - { - identifier: MarkType.SIGNATURE, - icon: faSignature, - label: 'Signature', + identifier: MarkType.FULLNAME, + icon: faIdCard, + label: 'Full Name', active: false }, { @@ -172,15 +154,9 @@ export const DEFAULT_TOOLBOX = [ active: false }, { - identifier: MarkType.FULLNAME, - icon: faIdCard, - label: 'Full Name', - active: false - }, - { - identifier: MarkType.INITIALS, - icon: faHeading, - label: 'Initials', + identifier: MarkType.SIGNATURE, + icon: faSignature, + label: 'Signature', active: false }, { @@ -190,77 +166,89 @@ export const DEFAULT_TOOLBOX = [ active: false }, { - identifier: MarkType.DATE, - icon: faCalendarDays, - label: 'Date', - active: false + identifier: MarkType.TEXT, + icon: faT, + label: 'Text', + active: true }, { identifier: MarkType.NUMBER, icon: fa1, label: 'Number', active: false - }, - { - identifier: MarkType.IMAGES, - icon: faImage, - label: 'Images', - active: false - }, - { - identifier: MarkType.CHECKBOX, - icon: faSquareCheck, - label: 'Checkbox', - active: false - }, - { - identifier: MarkType.MULTIPLE, - icon: faCheckDouble, - label: 'Multiple', - active: false - }, - { - identifier: MarkType.FILE, - icon: faPaperclip, - label: 'File', - active: false - }, - { - identifier: MarkType.RADIO, - icon: faCircleDot, - label: 'Radio', - active: false - }, - { - identifier: MarkType.SELECT, - icon: faSquareCaretDown, - label: 'Select', - active: false - }, - { - identifier: MarkType.CELLS, - icon: faTableCellsLarge, - label: 'Cells', - active: false - }, - { - identifier: MarkType.STAMP, - icon: faStamp, - label: 'Stamp', - active: false - }, - { - identifier: MarkType.PAYMENT, - icon: faCreditCard, - label: 'Payment', - active: false - }, - { - identifier: MarkType.PHONE, - icon: faPhone, - label: 'Phone', - active: false } + // { + // identifier: MarkType.INITIALS, + // icon: faHeading, + // label: 'Initials', + // active: false + // }, + // { + // identifier: MarkType.DATE, + // icon: faCalendarDays, + // label: 'Date', + // active: false + // }, + // { + // identifier: MarkType.IMAGES, + // icon: faImage, + // label: 'Images', + // active: false + // }, + // { + // identifier: MarkType.CHECKBOX, + // icon: faSquareCheck, + // label: 'Checkbox', + // active: false + // }, + // { + // identifier: MarkType.MULTIPLE, + // icon: faCheckDouble, + // label: 'Multiple', + // active: false + // }, + // { + // identifier: MarkType.FILE, + // icon: faPaperclip, + // label: 'File', + // active: false + // }, + // { + // identifier: MarkType.RADIO, + // icon: faCircleDot, + // label: 'Radio', + // active: false + // }, + // { + // identifier: MarkType.SELECT, + // icon: faSquareCaretDown, + // label: 'Select', + // active: false + // }, + // { + // identifier: MarkType.CELLS, + // icon: faTableCellsLarge, + // label: 'Cells', + // active: false + // }, + // { + // identifier: MarkType.STAMP, + // icon: faStamp, + // label: 'Stamp', + // active: false + // }, + // { + // identifier: MarkType.PAYMENT, + // icon: faCreditCard, + // label: 'Payment', + // active: false + // }, + // { + // identifier: MarkType.PHONE, + // icon: faPhone, + // label: 'Phone', + // active: false + // } ] export const getToolboxLabelByMarkType = (markType: MarkType) => {