git-svn-id: https://msi/svn/firstRepo/WebClient/branches/NewRelease@71 0f545695-f87b-41b6-9a03-7f16563b5454
This commit is contained in:
@@ -33,7 +33,7 @@
|
||||
<script type='text/javascript'>
|
||||
<?php echo file_get_contents("js/manifest.js"); ?>
|
||||
</script>
|
||||
<!--<script data-main="js/config.<?php echo filemtime('js/config.js'); ?>" src="js/libs/require.<?php echo filemtime('js/libs/require.js'); ?>.js"></script>-->
|
||||
<script data-main="js/config.<?php echo filemtime('js/config.js'); ?>" src="js/libs/require.<?php echo filemtime('js/libs/require.js'); ?>.js"></script>
|
||||
</head>
|
||||
<body style="background-color: #3b5998;">
|
||||
<?php include_once("analyticstracking.php") ?>
|
||||
|
||||
@@ -1,14 +0,0 @@
|
||||
/*
|
||||
* To change this license header, choose License Headers in Project Properties.
|
||||
* To change this template file, choose Tools | Templates
|
||||
* and open the template in the editor.
|
||||
*/
|
||||
|
||||
define(['jquery', 'backbone'],
|
||||
function ($, Backbone) {
|
||||
|
||||
var Images = {
|
||||
};
|
||||
|
||||
return Images;
|
||||
});
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
var myManifest = {
|
||||
Debug: (window.location.port !== ""),
|
||||
Name: "Il Lievitario",
|
||||
Version: "3.0.2.0",
|
||||
Version: "3.0.3.2",
|
||||
Author: "Denis Ironi",
|
||||
Settings: {
|
||||
DefaultURL: (window.location.port === "" ? "http://" + window.location.host + "/Service": "http://" + window.location.hostname + ":" + window.location.port + "/Service_Manut"),
|
||||
|
||||
@@ -1,15 +0,0 @@
|
||||
define(['app', 'jquery', 'underscore', 'backbone', 'model/authors/authorModel'],
|
||||
function (app, $, _, Backbone, Author) {
|
||||
|
||||
var Authors = Backbone.Collection.extend({
|
||||
// Book is the model of the collection
|
||||
model: Author,
|
||||
url: function () {
|
||||
return myManifest.Settings.DefaultURL + "/api/ricette/authors";
|
||||
}
|
||||
});
|
||||
|
||||
return Authors;
|
||||
});
|
||||
|
||||
|
||||
@@ -1,13 +0,0 @@
|
||||
define(['jquery', 'underscore', 'backbone'],
|
||||
function ($, _, Backbone){
|
||||
|
||||
var Author=Backbone.Model.extend({
|
||||
//default attributes
|
||||
defaults:{
|
||||
name:''
|
||||
}
|
||||
});
|
||||
|
||||
return Author;
|
||||
});
|
||||
|
||||
@@ -7,6 +7,7 @@ function ($, _, Backbone){
|
||||
ricetta_id: "",
|
||||
titolo: '',
|
||||
autore: '',
|
||||
firstImage: "",
|
||||
valutazione: 0,
|
||||
difficolta: 0,
|
||||
categoria_name: 0
|
||||
|
||||
@@ -10,7 +10,8 @@ define(['app', 'jquery', 'underscore', 'backbone', 'model/categoryItem/searchIte
|
||||
this.dataFilter = {
|
||||
titolo: options.titolo,
|
||||
difficolta: options.difficolta,
|
||||
categoryId: options.categoryId
|
||||
categoryId: options.categoryId,
|
||||
autore: options.autore
|
||||
};
|
||||
this.numItems = options.nResult;
|
||||
this.indexItems = options.indexItems;
|
||||
@@ -32,7 +33,7 @@ define(['app', 'jquery', 'underscore', 'backbone', 'model/categoryItem/searchIte
|
||||
this.numItems +
|
||||
"/" + this.indexItems +
|
||||
"/" + this.dataFilter.categoryId +
|
||||
"/" + this.dataFilter.difficolta;
|
||||
"/" + this.dataFilter.difficolta+ "/" + this.dataFilter.autore;
|
||||
if(this.dataFilter.titolo !== null)
|
||||
u += "/" + this.dataFilter.titolo;
|
||||
|
||||
|
||||
@@ -7,6 +7,7 @@ function ($, _, Backbone){
|
||||
ricetta_id: "",
|
||||
titolo: '',
|
||||
autore: '',
|
||||
firstImage: "",
|
||||
valutazione: 0,
|
||||
difficolta: 0,
|
||||
categoria_name: 0
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
define(['jquery', 'underscore', 'backbone', 'text!modules/category/categoryViewTemplate.html',
|
||||
'text!modules/category/categoryItemTemplate.html', 'modules/base/baseView', 'libs/fastclick', 'classes/debug', 'classes/images'],
|
||||
function ($, _, Backbone, categoryViewTemplate, categoryItemTemplate, BaseView, FastClick, Debug, Images) {
|
||||
'text!modules/category/categoryItemTemplate.html', 'modules/base/baseView', 'libs/fastclick', 'classes/debug'],
|
||||
function ($, _, Backbone, categoryViewTemplate, categoryItemTemplate, BaseView, FastClick, Debug) {
|
||||
|
||||
var CategoryView = BaseView.extend({
|
||||
collection: null,
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
define(['jquery', 'underscore', 'backbone', 'text!modules/item/itemViewTemplate.html', 'modules/base/baseView', 'classes/profile', 'classes/images', 'jQueryPlugins'],
|
||||
function ($, _, Backbone, itemViewTemplate, BaseView, Profile, Images) {
|
||||
define(['jquery', 'underscore', 'backbone', 'text!modules/item/itemViewTemplate.html', 'modules/base/baseView', 'classes/profile', 'jQueryPlugins'],
|
||||
function ($, _, Backbone, itemViewTemplate, BaseView, Profile) {
|
||||
|
||||
var ItemView = BaseView.extend({
|
||||
collRicetta: null,
|
||||
@@ -95,7 +95,6 @@ define(['jquery', 'underscore', 'backbone', 'text!modules/item/itemViewTemplate.
|
||||
ricetta: ric,
|
||||
ingredienti: self.collIngredienti.toJSON(),
|
||||
profile: Profile,
|
||||
images: Images,
|
||||
}));
|
||||
|
||||
self.scrollPositions = [];
|
||||
|
||||
@@ -2,7 +2,31 @@
|
||||
<h1>Nessuna ricetta trovata</h1>
|
||||
<%} else { for (var i = 0; i < data.length; i++) { %>
|
||||
<% var item = data[i]; %>
|
||||
<li><a href="#ricetta/<%= item.ricetta_id%>" class="ui-btn ui-btn-icon-right ui-icon-carat-r">
|
||||
<div class='ricettaTitolo'><%= unescape(item.titolo) %> - <%= unescape(item.categoria_name) %></div><div class='ricettaAutore'><%= unescape(item.autore) %></div>
|
||||
<li><a href="#ricetta/<%= item.ricetta_id%>" class="ui-btn ui-btn-icon-right ui-icon-carat-r ui-li-has-thumb">
|
||||
<% if(item.firstImage === ""){ %>
|
||||
<img class="thmbImg emptyItemList">
|
||||
<%}else{%>
|
||||
<img class="thmbImg" src='<%=myManifest.Settings.DefaultURL%>/api/photo/thumbnail/<%=item.firstImage%>'>
|
||||
<%}%>
|
||||
<div class='ricettaTitolo'><%= unescape(item.titolo)%> - <%= unescape(item.categoria_name)%></div>
|
||||
<div class='ricettaAutore'><%= unescape(item.autore) %></div>
|
||||
<br><div class='ricettaAutore'>Diff.: </div>
|
||||
<div id="valutazione">
|
||||
<div role="text" data-role="none" aria-label="Molto Semplice" class="star-rating rater-0 star star-rating-applied star-rating-live <% if(parseInt(item.difficolta)>=1){%>star-rating-on<%}%>">
|
||||
<div data-role="none" title="Molto Semplice">1</div>
|
||||
</div>
|
||||
<div data-role="none" role="text" aria-label="Semplice" class="star-rating rater-0 star star-rating-applied star-rating-live <% if(parseInt(item.difficolta)>=2){%>star-rating-on<%}%>">
|
||||
<div data-role="none" title="Semplice">2</div>
|
||||
</div>
|
||||
<div data-role="none" role="text" aria-label="Normale" class="star-rating rater-0 star star-rating-applied star-rating-live <% if(parseInt(item.difficolta)>=3){%>star-rating-on<%}%>">
|
||||
<div data-role="none" title="Normale">3</div>
|
||||
</div>
|
||||
<div data-role="none" role="text" aria-label="Difficile" class="star-rating rater-0 star star-rating-applied star-rating-live <% if(parseInt(item.difficolta)>=4){%>star-rating-on<%}%>">
|
||||
<div data-role="none" title="Difficile">4</div>
|
||||
</div>
|
||||
<div data-role="none" role="text" aria-label="Molto Difficile" class="star-rating rater-0 star star-rating-applied star-rating-live <% if(parseInt(item.difficolta)>=5){%>star-rating-on<%}%>">
|
||||
<div data-role="none" title="Molto Difficile">5</div>
|
||||
</div>
|
||||
</div>
|
||||
</a></li>
|
||||
<% }} %>
|
||||
@@ -9,9 +9,6 @@ define(['jquery', 'underscore', 'backbone','text!modules/search/searchViewTempla
|
||||
this.id = "SearchView";
|
||||
var self = this;
|
||||
SearchView.__super__.initialize.call(this);
|
||||
this.collection = options.collection;
|
||||
this.collection.fetch({ success: function () { self.render(); } });
|
||||
//this.header.title = "pippo";
|
||||
},
|
||||
|
||||
events: {
|
||||
@@ -21,6 +18,7 @@ define(['jquery', 'underscore', 'backbone','text!modules/search/searchViewTempla
|
||||
performSearch: function (e) {
|
||||
e.preventDefault();
|
||||
var titolo = $('#titolo').val();
|
||||
var autore = $('#autore').val();
|
||||
var categoria = $('#categoria').val();
|
||||
var nResult = $('#nResult').val();
|
||||
var diffi = $('#difficoltaFrm').serialize();
|
||||
@@ -28,7 +26,10 @@ define(['jquery', 'underscore', 'backbone','text!modules/search/searchViewTempla
|
||||
if (diffi === "") {
|
||||
diffi = "0";
|
||||
}
|
||||
Backbone.history.navigate('search/' + nResult + "/"+ categoria + "/" + diffi + "/" + titolo, { trigger: true });
|
||||
if (autore === "" || autore == undefined) {
|
||||
autore = "_";
|
||||
}
|
||||
Backbone.history.navigate('search/' + nResult + "/"+ categoria + "/" + diffi + "/" + autore + "/"+titolo, { trigger: true });
|
||||
},
|
||||
|
||||
onShowed: function(){
|
||||
@@ -59,7 +60,7 @@ define(['jquery', 'underscore', 'backbone','text!modules/search/searchViewTempla
|
||||
{
|
||||
SearchView.__super__.render.call(this);
|
||||
this.$el.append(this.header.$el);
|
||||
this.$el.append(this.template({data:this.collection.toJSON()}));
|
||||
this.$el.append(this.template());
|
||||
this.$el.append(this.footer.$el);
|
||||
}
|
||||
this.$el.find('#nResult').val(Profile.data.risRic);
|
||||
|
||||
@@ -31,14 +31,8 @@
|
||||
<option value="50">50</option>
|
||||
<option value="100">100</option>
|
||||
</select>
|
||||
<!--
|
||||
<label for="author">Autore:</label>
|
||||
<select name="author" id="author" >
|
||||
<% for (var i = 0; i < data.length; i++) { %>
|
||||
<% var item = unescape(data[i].autore); %>
|
||||
<option value="<%=item%>"><%=item%></option>
|
||||
<%}%>
|
||||
</select>-->
|
||||
<label for="autore">Autore:</label>
|
||||
<input type="text" name="autore" id="autore" placeholder="Autore..." value="" data-clear-btn="true" ><br>
|
||||
<br><br>
|
||||
<center><a href="" id="search" button="true" class="ui-btn ui-corner-all">Cerca</a></center>
|
||||
</div>
|
||||
+8
-10
@@ -4,7 +4,7 @@ define(['jquery', 'underscore', 'backbone',
|
||||
'modules/sync/sync', 'modules/donation/donation','modules/settings/settings',
|
||||
'modules/debug/debug','modules/maps/maps',
|
||||
'model/note/noteCollection', 'model/category/categoryCollection', 'model/categoryItem/categoryItemCollection',
|
||||
'model/item/itemCollection', 'model/item/ingredientiCollection', 'model/categoryItem/foundItemCollection','model/authors/authorCollection',
|
||||
'model/item/itemCollection', 'model/item/ingredientiCollection', 'model/categoryItem/foundItemCollection',
|
||||
'classes/cache', 'libs/fastclick',
|
||||
'jqm', 'jQueryPlugins'],
|
||||
function ($, _, Backbone,
|
||||
@@ -13,7 +13,7 @@ define(['jquery', 'underscore', 'backbone',
|
||||
SyncView, DonationView, SettingsView,
|
||||
DebugView, MapsView,
|
||||
NoteCollection, CategoryCollection, CategoryItemCollection,
|
||||
ItemCollection, IngredientiCollection, FoundItemCollection, AuthorCollection,
|
||||
ItemCollection, IngredientiCollection, FoundItemCollection,
|
||||
Cache, FastClick) {
|
||||
|
||||
'use strict';
|
||||
@@ -57,7 +57,7 @@ define(['jquery', 'underscore', 'backbone',
|
||||
'debugView': 'showDebug',
|
||||
'settingsView': 'showSettings',
|
||||
'donationView': 'showDonation',
|
||||
'search/:nresult/:categoria/:difficolta/*titolo': 'searchFn',
|
||||
'search/:nresult/:categoria/:difficolta/:autore/*titolo': 'searchFn',
|
||||
'converterView': 'showConverter',
|
||||
'moreView': 'showMore',
|
||||
'*actions': 'defaultAction' //default action
|
||||
@@ -172,14 +172,12 @@ define(['jquery', 'underscore', 'backbone',
|
||||
this.changePage(mapsView);
|
||||
},
|
||||
showSearch: function () {
|
||||
var authors = new AuthorCollection();
|
||||
// will render home view and navigate to homeView
|
||||
var searchView = new SearchView({collection: authors});
|
||||
//indexView.render();
|
||||
searchView.bind('renderCompleted:Search', this.changePage, this);
|
||||
var searchView = new SearchView();
|
||||
searchView.render();
|
||||
this.changePage(searchView);
|
||||
},
|
||||
searchFn: function (nresult, categoria, difficolta, titolo) {
|
||||
var foundedItems = new FoundItemCollection({categoryId: categoria, difficolta: difficolta, titolo: titolo, nResult: nresult, indexItems: 0});
|
||||
searchFn: function (nresult, categoria, difficolta, autore, titolo) {
|
||||
var foundedItems = new FoundItemCollection({categoryId: categoria, difficolta: difficolta, titolo: titolo, autore: autore, nResult: nresult, indexItems: 0});
|
||||
var foundView = new FoundView({collection: foundedItems});
|
||||
|
||||
foundView.render();
|
||||
|
||||
Reference in New Issue
Block a user