blob: 62cacfc2127552626e58301afbc9b66e5aa0b77d [file] [log] [blame]
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<!doctype html>
<html>
<head>
<meta charset="utf-8"/>
<title>Fruit REST service</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/wingcss/0.1.8/wing.min.css"/>
<!-- Load AngularJS -->
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
<script type="text/javascript">
var app = angular.module("FruitManagement", []);
//Controller Part
app.controller("FruitManagementController", function ($scope, $http) {
//Initialize page with default data which is blank in this example
$scope.fruits = [];
$scope.form = {
name: "",
description: ""
};
//Now load the data from server
_refreshPageData();
//HTTP POST methods for add fruits
$scope.add = function () {
var data = { "name": $scope.form.name, "description": $scope.form.description };
$http({
method: "POST",
url: '/fruits',
data: angular.toJson(data),
headers: {
'Content-Type': 'application/json'
}
}).then(_success, _error);
};
/* Private Methods */
//HTTP GET- get all fruits collection
function _refreshPageData() {
$http({
method: 'GET',
url: '/fruits'
}).then(function successCallback(response) {
$scope.fruits = response.data;
}, function errorCallback(response) {
console.log(response.statusText);
});
}
function _success(response) {
_refreshPageData();
_clearForm();
}
function _error(response) {
alert(response.data.message || response.statusText);
}
//Clear the form
function _clearForm() {
$scope.form.name = "";
$scope.form.description = "";
}
});
</script>
</head>
<body ng-app="FruitManagement" ng-controller="FruitManagementController">
<div class="container">
<h1>REST Service - Fruit</h1>
<h3>Add a fruit</h3>
<form ng-submit="add()">
<div class="row">
<div class="col-6"><input type="text" placeholder="Name" ng-model="form.name" size="60"/></div>
</div>
<div class="row">
<div class="col-6"><input type="text" placeholder="Description" ng-model="form.description" size="60"/></div>
</div>
<input type="submit" value="Save"/>
</form>
<h3>Fruit List</h3>
<div class="row">
<div class="col-4">Name</div>
<div class="col-8">Description</div>
</div>
<div class="row" ng-repeat="fruit in fruits">
<div class="col-4">{{ fruit.name }}</div>
<div class="col-8">{{ fruit.description }}</div>
</div>
</div>
</body>
</html>