4 Commits

Author SHA1 Message Date
9698671de7 Preparing for reactivity 2022-07-07 18:04:39 +10:00
dredgy
f133284309 Merge pull request #11 from dredgy/make_order_screen_reactive
Light fixes
2022-07-07 15:56:49 +10:00
dredgy
9558074c4f Slight refactoring to button action attributes 2022-07-07 15:42:40 +10:00
dredgy
ac30d8147e Few updates to cover selector width calculation 2022-07-07 14:48:32 +10:00
6 changed files with 48 additions and 27 deletions

View File

@@ -7,12 +7,11 @@ let attr = Giraffe.ViewEngine.HtmlElements.attr
let getItemActionAttributes (itemCode: string) = let getItemActionAttributes (itemCode: string) =
let item = Entity.GetFirstByColumn<item> "code" (StringTrim itemCode) let item = Entity.GetFirstByColumn<item> "code" (StringTrim itemCode)
[(attr "data-item") <| jsonEncode item] [item |> jsonEncode |> attr "data-item"]
let getGridActionAttributes (gridId: int) = [(attr "data-grid") <| jsonEncode gridId] let getGridActionAttributes (gridId: int) = [(attr "data-grid") <| jsonEncode gridId]
let getActionAttributes (action: string) (actionValue: string) = let getActionAttributes (action: string) (actionValue: string) =
match action with match action with
| "item" -> getItemActionAttributes actionValue | "item" -> getItemActionAttributes actionValue
| "grid" -> actionValue |> int |> getGridActionAttributes | "grid" -> actionValue |> int |> getGridActionAttributes

View File

@@ -4,7 +4,10 @@ open DredgePos
open Saturn open Saturn
open Giraffe open Giraffe
let installer = (warbler (fun _ -> htmlString (Controller.RunAllMigrations ())))
let router = router { let router = router {
pipe_through Ajax.Router.pipeline pipe_through Ajax.Router.pipeline
get "/" (warbler (fun _ -> htmlString (Controller.RunAllMigrations ()))) get "/" installer
get "" installer
} }

View File

@@ -116,6 +116,9 @@ let itemButtonImage (button: button) =
_style $"background-image:url(\"/images/items/{button.image}\");" _style $"background-image:url(\"/images/items/{button.image}\");"
] [] ] []
let _data_primary_action = attr "data-primary-action"
let _data_secondary_action = attr "data-secondary-action"
let itemButton (button: button) = let itemButton (button: button) =
let extraClasses = let extraClasses =
if button.image.Length > 0 then button.extra_classes + " hasImage" if button.image.Length > 0 then button.extra_classes + " hasImage"
@@ -128,8 +131,8 @@ let itemButton (button: button) =
yield! primaryAttributes yield! primaryAttributes
yield! secondaryAttributes yield! secondaryAttributes
_style button.extra_styles _style button.extra_styles
(attr "data-primary-action") button.primary_action _data_primary_action button.primary_action
(attr "data-secondary-action") button.secondary_action _data_secondary_action button.secondary_action
] [ ] [
if button.image.Length > 0 then itemButtonImage button if button.image.Length > 0 then itemButtonImage button
span [_class "text "] [str button.text] span [_class "text "] [str button.text]

View File

@@ -184,6 +184,8 @@ const setElementVisibilityByMode = () => {
} }
const getPercentageOfPageContainerWidth = (pixels: number) => ( (pixels / $('#pageContainer').width()) * 100) + '%'
const pulseElement = (element: JQuery) => element.addClass('pulse').on('animationend', () => element.removeClass('pulse')) const pulseElement = (element: JQuery) => element.addClass('pulse').on('animationend', () => element.removeClass('pulse'))
Array.prototype.where = function<x>(this: x[], property: string, value: any) { Array.prototype.where = function<x>(this: x[], property: string, value: any) {

View File

@@ -69,8 +69,8 @@ const setupOrderScreen = (data: OrderScreenData) => {
doc.on('click', '.nextButton', goToNextPage) doc.on('click', '.nextButton', goToNextPage)
doc.on('click', '.prevButton', goToPrevPage) doc.on('click', '.prevButton', goToPrevPage)
doc.on('click', '.loadPageGroup', loadPageGroup) doc.on('click', '.loadPageGroup', loadPageGroup)
doc.on('click', '[data-primary-action=item]', itemButtonClicked) doc.on('click', getElementsByAction('item'), itemButtonClicked)
doc.on('click', '[data-primary-action=grid],[data-secondary-action=grid]', gridButtonClicked) doc.on('click', getElementsByAction('grid'), gridButtonClicked)
doc.on('click', '.closeGrid', hideGrids) doc.on('click', '.closeGrid', hideGrids)
doc.on('click', '.freetextButton', freetext) doc.on('click', '.freetextButton', freetext)
doc.on('click', '.openItemButton', customItem) doc.on('click', '.openItemButton', customItem)
@@ -98,6 +98,8 @@ const setupOrderScreen = (data: OrderScreenData) => {
} }
const getElementsByAction = (action: string) => `[data-primary-action=${action}], [data-secondary-action=${action}]`
/** /**
* @param direction 1 for forward, -1 for backwards. * @param direction 1 for forward, -1 for backwards.
* @param button * @param button
@@ -251,6 +253,12 @@ const renderOrderBox = () => {
const element = orderBox.find('tbody tr').last().get()[0] const element = orderBox.find('tbody tr').last().get()[0]
element.scrollIntoView() element.scrollIntoView()
OrderScreen.last_added_item = null OrderScreen.last_added_item = null
updateOrderBoxTotals()
}
const setOrderItems = (orderItems: orderItem[]) => {
OrderScreen.order_items = orderItems
renderOrderBox()
} }
const createOrderRow = (orderItem: orderItem) => { const createOrderRow = (orderItem: orderItem) => {
@@ -309,14 +317,13 @@ const hideGrids = () => $('.gridContainer').hide()
const gridHtmlGenerated = (gridData: {gridHtml:string, grid: grid}) => { const gridHtmlGenerated = (gridData: {gridHtml:string, grid: grid}) => {
const gridContainer = $('.gridContainer') const gridContainer = $('.gridContainer')
const gridCellWidth = getGridCellWidth() const cellDimensions = getGridCellDimensions()
const gridCellHeight = getGridCellHeight()
const grid = gridData.grid const grid = gridData.grid
const gridHtml = gridData.gridHtml const gridHtml = gridData.gridHtml
gridContainer gridContainer
.show() .show()
.width(gridCellWidth * grid.cols) .width(cellDimensions.width * grid.cols)
.children('.gridContainerHeader') .children('.gridContainerHeader')
.children('span') .children('span')
.text(grid.name) .text(grid.name)
@@ -326,11 +333,11 @@ const gridHtmlGenerated = (gridData: {gridHtml:string, grid: grid}) => {
.html(gridHtml) .html(gridHtml)
.show() .show()
.parent() .parent()
.height(gridCellHeight * grid.rows) .height(cellDimensions.height * grid.rows)
.closest('.gridContainer') .closest('.gridContainer')
.find('.pageNavigation') .find('.pageNavigation')
.toggle(gridContainer.find('.gridPage').length > 1) .toggle(gridContainer.find('.gridPage').length > 1)
.height(gridCellHeight) .height(cellDimensions.height)
} }
const itemRowClicked = (e: JQuery.TriggeredEvent) => { const itemRowClicked = (e: JQuery.TriggeredEvent) => {
@@ -514,21 +521,28 @@ const customItemTextSubmitted = (text: string) => {
showVirtualNumpad(lang('enter_item_price'), 4, false, true, true, submitFunction) showVirtualNumpad(lang('enter_item_price'), 4, false, true, true, submitFunction)
} }
const getGridCellHeight = () => $('#pageGroupContainer').height()/8 const getGridCellDimensions = () => {
const getGridCellWidth = () => $('#pageGroupContainer').width()/6 const container = $('#pageGroupContainer')
return {
height: container.height()/8,
width: container.width()/6
}
}
const showCoverSelector = (event: JQuery.TriggeredEvent) => { const showCoverSelector = (event: JQuery.TriggeredEvent) => {
const button = $(event.target) const button = $(event.target)
const gridHeight = getGridCellHeight() const gridHeight = getGridCellDimensions().height
const coverSelector = $('.coverSelector') const coverSelector = $('.coverSelector')
const buttonPositionLeftPercent = getPercentageOfPageContainerWidth(button.offset().left)
const buttonWidthPercent = getPercentageOfPageContainerWidth(button.width())
coverSelector coverSelector
.toggle(!coverSelector.is(':visible')) .toggle(!coverSelector.is(':visible'))
.width(button.width())
.css({ .css({
left: button.offset().left + 'px', width: buttonWidthPercent,
top: button.offset().top + button.height() + 'px', left: buttonPositionLeftPercent,
top: (button.offset().top + button.height()) + 'px'
}) })
.find('.coverSelectorButton') .find('.coverSelectorButton')
.height(gridHeight) .height(gridHeight)

View File

@@ -25,9 +25,9 @@ let showVirtualNumpad = (heading: string, maxlength = 4, isPassword: boolean, al
inputBox.text(''); inputBox.text('');
numpad.data('maxlength', maxlength) numpad.data('maxlength', maxlength)
numpad.data('submitfunction', submitFunction) numpad.data('submit-function', submitFunction)
numpad.data('password', isPassword); numpad.data('password', isPassword);
numpad.data('allowdecimals', allowDecimals); numpad.data('allow-decimals', allowDecimals);
$(document).off('keyup'); $(document).off('keyup');
$(document).on('keyup', e => { $(document).on('keyup', e => {
@@ -64,9 +64,9 @@ let showVirtualNumpad = (heading: string, maxlength = 4, isPassword: boolean, al
let virtualNumpadInput = (input: string) => { let virtualNumpadInput = (input: string) => {
let inputBox = $('#virtualNumpadInput') let inputBox = $('#virtualNumpadInput')
let numpad = $('#virtualNumpad') let numpad = $('#virtualNumpad')
let maxlength = numpad.data('maxlength') let maxlength : number = numpad.data('maxlength')
let allowDecimals = numpad.data('allowdecimals') let allowDecimals: boolean = numpad.data('allow-decimals')
let submitFunction = numpad.data('submitfunction') let submitFunction : Function = numpad.data('submit-function')
let allowedValues = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'submit', 'clear'] let allowedValues = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'submit', 'clear']
let currentValue = numpad.data('value').toString() let currentValue = numpad.data('value').toString()
@@ -144,7 +144,7 @@ let showVirtualNumpad = (heading: string, maxlength = 4, isPassword: boolean, al
inputBox.val('') inputBox.val('')
keyboard.data('maxlength', maxlength) keyboard.data('maxlength', maxlength)
keyboard.data('password', isPassword) keyboard.data('password', isPassword)
keyboard.data('submitfunction', submitFunction) keyboard.data('submit-function', submitFunction)
inputBox.attr('autofocus', 'autofocus'); inputBox.attr('autofocus', 'autofocus');
inputBox.trigger('focus') inputBox.trigger('focus')
inputBox.trigger('click') inputBox.trigger('click')
@@ -175,7 +175,7 @@ let showVirtualNumpad = (heading: string, maxlength = 4, isPassword: boolean, al
break; break;
case 'submit': case 'submit':
hideVirtualKeyboard(); hideVirtualKeyboard();
let submitFunction = keyboard.data('submitfunction') let submitFunction = keyboard.data('submit-function')
submitFunction(inputBox.val()); submitFunction(inputBox.val());
break; break;
case 'shift': case 'shift':