Print page converted

This commit is contained in:
Tim Holloway 2021-12-29 14:30:25 -05:00
parent 50a07f0f6d
commit e624eae79d
3 changed files with 212 additions and 146 deletions

View File

@ -49,10 +49,10 @@ public class UserSession implements Serializable {
this.lastEdit = lastEdit; this.lastEdit = lastEdit;
} }
//*** // ***
/** /**
* Tab index to select when presenting editDetails. * Tab index to select when presenting editDetails. First tab
* First tab is 0. * is 0.
*/ */
private int detailTab; private int detailTab;
@ -70,16 +70,17 @@ public class UserSession implements Serializable {
this.detailTab = detailTab; this.detailTab = detailTab;
} }
//*** // ***
private Recipe recipe; private Recipe recipe;
/** /**
* Recipe is set by the mainpage bean to a blank recipe * Recipe is set by the mainpage bean to a blank recipe
* before dispatching to the detailEdit page (new recipe). * before dispatching to the detailEdit page (new recipe). It
* It is also set by the detail view page so that the * is also set by the detail view page so that the detail
* detail view can be edited. * view can be edited.
* *
* In addition to detail editing, it's also used by the * In addition to detail editing, it's also used by the
*
* @see PictureController. * @see PictureController.
* *
* @return Recipe selected. * @return Recipe selected.
@ -94,4 +95,38 @@ public class UserSession implements Serializable {
public void setRecipe(Recipe recipe) { public void setRecipe(Recipe recipe) {
this.recipe = recipe; this.recipe = recipe;
} }
// ====
public String formatTime(Long ltime) {
if (ltime == null) {
return "";
}
int time = ltime.intValue();
int dd, hh, mm, ss;
ss = time % 60;
time /= 60;
mm = time % 60;
time /= 60;
hh = time % 24;
dd = time / 24;
StringBuffer sb = new StringBuffer(20);
if (dd > 0) {
sb.append(dd).append("d ");
}
if (hh > 0) {
sb.append(hh).append("h ");
}
if (mm > 0) {
sb.append(mm);
if ((ss == 0) && (hh == 0)) {
sb.append(" minutes");
} else {
sb.append("min. ");
}
}
if (ss > 0) {
sb.append(dd).append("sec. ");
}
return sb.toString().trim();
}
} }

View File

@ -8,61 +8,75 @@
> >
<ui:define name="title">Gourmet Recipe Manager</ui:define> <ui:define name="title">Gourmet Recipe Manager</ui:define>
<ui:define name="content"> <ui:define name="content">
<style>
.recipeTitle {
font-size: larger;
font-weight: bold;
}
.subtitle {
font-size: large;
font-weight: bold;
}
.ui-panelgrid-cell {
border-width: 0;
border-style: none;
}
</style>
<h:messages /> <h:messages />
<h:form id="form1"> <h:form id="form1">
<p:panelGrid label="#{recipeDetailBean.recipe.title}" <p:panelGrid label="#{recipeDetailBean.recipe.title}"
columns="1" columns="1"
> >
<p:panelGrid > <p:panelGrid>
<f:facet name="header"> <f:facet name="header">
<h:outputText <h:outputText styleClass="recipeTitle"
value="#{recipeDetailBean.recipe.title}" value="#{recipeDetailBean.recipe.title}"
/> />
</f:facet> </f:facet>
<p:row> <p:row>
<p:column id="leftCol" style="width: 80%"> <p:column id="leftCol" style="width: 80%">
<img id="bigpix" <img id="bigpix"
src="/img/picture/#{recipeDetailBean.recipe.id}" src="/img/picture/#{recipeDetailBean.recipe.id}"
/> />
<p:panelGrid columns="2"> <p:panelGrid columns="2">
<p:button value="&lt;- Back" <p:commandButton value="&lt;- Back"
action="main" styleClass="ui-button-arrow-left"
action="main.jsf"
immediate="true"
/> />
<p:button value="Print" <p:commandButton value="Print"
action="recipePrint" action="recipePrint.jsf"
styleClass="ui-button-print"
immediate="true"
/> />
<p:outputLabel for="@next" <p:outputLabel for="@next"
value="Categories:" value="Categories:"
/> />
<h:outputText <h:outputText label="Category: "
label="Category: "
value="#{adminMainBean.formatCategories(recipeDetailBean.recipe)}" value="#{adminMainBean.formatCategories(recipeDetailBean.recipe)}"
/> />
<p:outputLabel for="@next" <p:outputLabel for="@next"
value="Cuisine:" value="Cuisine:"
/> />
<h:outputText <h:outputText label="Cuisine: "
label="Cuisine: "
value="#{recipeDetailBean.recipe.cuisine}" value="#{recipeDetailBean.recipe.cuisine}"
/> />
<p:outputLabel for="@next" <p:outputLabel for="@next"
value="Prep Time:" value="Prep Time:"
/> />
<h:outputText <h:outputText label="Prep Time: "
label="Prep Time: " value="#{userSession.formatTime(recipeDetailBean.recipe.preptime)}"
value="#{recipeDetailBean.recipe.preptime}"
/> />
<p:outputLabel for="@next" <p:outputLabel for="@next"
value="Cook Time:" value="Cook Time:"
/> />
<h:outputText <h:outputText label="Cook Time: "
label="Cook Time: " value="#{userSession.formatTime(recipeDetailBean.recipe.cooktime)}"
value="#{recipeDetailBean.recipe.cooktime}"
/> />
</p:panelGrid> </p:panelGrid>
<h:commandLink <h:commandLink value="Edit Details"
value="Edit Details"
action="#{recipeDetailBean.editDescription}" action="#{recipeDetailBean.editDescription}"
> >
<c:set target="#{flash}" <c:set target="#{flash}"
@ -71,9 +85,13 @@
/> />
</h:commandLink> </h:commandLink>
<!-- --> <!-- -->
<p:panelGrid label="Instructions" <p:panelGrid columns="1">
columns="1" <f:facet name="header">
> <h:outputText
styleClass="subtitle"
value="Instructions"
/>
</f:facet>
<h:outputText id="instructions" <h:outputText id="instructions"
escape="false" escape="false"
value="#{recipeDetailBean.instructions}" value="#{recipeDetailBean.instructions}"
@ -83,9 +101,13 @@
action="#{recipeDetailBean.editInstructions}" action="#{recipeDetailBean.editInstructions}"
/> />
</p:panelGrid> </p:panelGrid>
<p:panelGrid label="Notes" <p:panelGrid columns="1">
columns="1" <f:facet name="header">
> <h:outputText
styleClass="subtitle"
value="Notes"
/>
</f:facet>
<h:outputText escape="false" <h:outputText escape="false"
value="#{recipeDetailBean.modifications}" value="#{recipeDetailBean.modifications}"
/> />
@ -107,18 +129,26 @@
</p:column> </p:column>
<!-- ====== Ingredients ============================ --> <!-- ====== Ingredients ============================ -->
<p:column id="ingredientsc" <p:column id="ingredientsc"
style="width: 20%" style="width: 20%; vertical-align: top;"
> >
<h:commandLink
value="Edit Ingredients"
style="vertical-align: top"
action="#{recipeDetailBean.editIngredients}"
/>
<p:dataTable id="ingredients" <p:dataTable id="ingredients"
showDirectLinksArrows="true" showDirectLinksArrows="true"
value="#{recipeDetailBean.ingredients}" value="#{recipeDetailBean.ingredients}"
var="ingredient" var="ingredient"
> >
<f:facet name="header">
<h:outputText
styleClass="subtitle"
value="Ingredients"
/>
</f:facet>
<f:facet name="footer">
<h:commandLink
value="Edit Ingredients"
style="vertical-align: top"
action="#{recipeDetailBean.editIngredients}"
/>
</f:facet>
<p:column label="Amt" <p:column label="Amt"
style="width: 4em; text-align: right" style="width: 4em; text-align: right"
> >

View File

@ -1,87 +1,88 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<ui:composition template="/WEB-INF/layout/layout.xhtml" <ui:composition template="/WEB-INF/layout/layout.xhtml"
xmlns:c="http://java.sun.com/jsp/jstl/core" xmlns:h="http://xmlns.jcp.org/jsf/html"
xmlns:f="http://xmlns.jcp.org/jsf/core" xmlns:f="http://xmlns.jcp.org/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:tc="http://myfaces.apache.org/tobago/component" xmlns:p="http://primefaces.org/ui"
xmlns:c="http://xmlns.jcp.org/jstl"
> >
<!-- Print Recipe --> <!-- Print Recipe -->
<ui:define name="title">Gourmet Recipe Manager</ui:define> <ui:define name="title">Gourmet Recipe Manager</ui:define>
<ui:define name="content"> <ui:define name="content">
<tc:messages /> <h:messages />
<tc:section level="2" <img id="bigpix"
label="#{recipeDetailBean.recipe.title}" SRC="/img/picture/#{recipeDetailBean.recipe.id}"
>
<tc:flexLayout columns="auto 6em auto">
<tc:image id="bigpix"
value="/gourmetj/img/picture/#{recipeDetailBean.recipe.id}"
/> />
<tc:button label="&lt;- Back" action="main"> <p:button value="&lt;- Back" action="main" />
<tc:style width="5em" height="2em"/> <p:panelGrid columns="2">
</tc:button> <h:outputLabel for="@next" value="Category: " />
<tc:gridLayout columns="15em 15em"> <h:outputText
<tc:out label="Category: "
value="#{adminMainBean.formatCategories(recipeDetailBean.recipe)}" value="#{adminMainBean.formatCategories(recipeDetailBean.recipe)}"
/> />
<tc:out label="Cuisine: " <h:outputLabel for="@next" value="Cuisine: " />
<h:outputText
value="#{recipeDetailBean.recipe.cuisine}" value="#{recipeDetailBean.recipe.cuisine}"
/> />
<tc:out label="Prep Time: " <h:outputLabel for="@next" value="Prep Time: " />
value="#{recipeDetailBean.recipe.preptime}" <h:outputText
value="#{userSession.formatTime(recipeDetailBean.recipe.preptime)}"
/> />
<tc:out label="Cook Time: " <h:outputLabel for="@next" value="Cook Time: " />
value="#{recipeDetailBean.recipe.preptime}" <h:outputText label="Cook Time: "
value="#{userSession.formatTime(recipeDetailBean.recipe.cooktime)}"
/> />
</tc:gridLayout> </p:panelGrid>
</tc:flexLayout>
<!-- --> <!-- -->
<tc:section id="ingredientsc" label="Ingredients"> <p:panelGrid columns="1" id="ingredientsc">
<tc:sheet id="ingredients" <f:facet name="header">
<h:outputText styleClass="subtitle"
value="Ingredients"
/>
</f:facet>
<p:dataTable id="ingredients"
showDirectLinksArrows="true" showDirectLinksArrows="true"
value="#{recipeDetailBean.ingredients}" value="#{recipeDetailBean.ingredients}"
var="ingredient" var="ingredient"
> >
<tc:row> <p:column label="Amt" style="text-align: right">
<tc:style <h:outputText
customClass="#{item.ingGroup ? 'stGroup' : ''}"
/>
</tc:row>
<tc:column label="Amt" align="right">
<tc:out
value="#{ingredient.displayAmount}" value="#{ingredient.displayAmount}"
/> />
</tc:column> </p:column>
<tc:column label="Units"> <p:column label="Units">
<tc:out value="#{ingredient.unit}" /> <h:outputText value="#{ingredient.unit}" />
</tc:column> </p:column>
<tc:column label="Item"> <p:column label="Item">
<tc:out value="#{ingredient.item}" /> <h:outputText value="#{ingredient.item}" />
</tc:column> </p:column>
<tc:column label="Optional" align="center"> <p:column label="Optional" align="center">
<tc:selectBooleanCheckbox readonly="true" <p:selectBooleanCheckbox readonly="true"
value="#{ingredient.optional}" value="#{ingredient.optionalCB}"
/> />
</tc:column> </p:column>
</tc:sheet> </p:dataTable>
<tc:out </p:panelGrid>
<h:outputText
value="Recipe ID: #{recipeDetailBean.recipe.id}" value="Recipe ID: #{recipeDetailBean.recipe.id}"
/> />
</tc:section> <p:panelGrid columns="1">
<tc:segmentLayout medium="7seg 5seg"> <f:facet name="header">
<tc:panel id="summ"> <h:outputText styleClass="subtitle"
value="Instructions"
/>
</f:facet>
<!-- --> <!-- -->
<tc:box label="Instructions"> <h:outputText id="instructions" escape="false"
<tc:out id="instructions" escape="false"
value="#{recipeDetailBean.instructions}" value="#{recipeDetailBean.instructions}"
/> />
</tc:box> </p:panelGrid>
<tc:box label="Notes"> <p:panelGrid columns="1">
<tc:out escape="false" <f:facet name="header">
<h:outputText styleClass="subtitle" value="Notes" />
</f:facet>
<h:outputText escape="false"
value="#{recipeDetailBean.modifications}" value="#{recipeDetailBean.modifications}"
/> />
</tc:box> </p:panelGrid>
</tc:panel>
</tc:segmentLayout>
</tc:section>
</ui:define> </ui:define>
</ui:composition> </ui:composition>