web-dev-qa-db-ja.com

インプレースコンテンツ編集

ng-repeatを使用する場合、コンテンツを編集できる最良の方法は何ですか?

私の理想的な状況では、added誕生日はハイパーリンクになります。これをタップすると、編集フォームが表示されます-現在の追加フォームと同じです更新ボタン。

ライブプレビュー(Plunker)

HTML:

<!DOCTYPE html>
<html>
  <head lang="en">
    <meta charset="utf-8">
    <title>Custom Plunker</title>
    <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.0.3/angular.min.js"></script>
    <script>
      document.write('<base href="' + document.location + '" />');
    </script>
    <script src="app.js"></script>
    <link href="//netdna.bootstrapcdn.com/Twitter-bootstrap/2.2.0/css/bootstrap-combined.min.css"
    rel="stylesheet">
  </head>
<body ng-app="birthdayToDo" ng-controller="main">
    <div id="wrap">

      <!-- Begin page content -->
      <div class="container">
        <div class="page-header">
          <h1>Birthday Reminders</h1>
        </div>
            <ul ng-repeat="bday in bdays">
                <li>{{bday.name}} | {{bday.date}}</li>
            </ul>

           <form ng-show="visible" ng-submit="newBirthday()">
            <label>Name:</label>
            <input type="text" ng-model="bdayname" placeholder="Name" ng-required/>
            <label>Date:</label>
            <input type="date" ng-model="bdaydate" placeholder="Date" ng-required/>
            <br/>
            <button class="btn" type="submit">Save</button>
        </form>
      </div>

      <div id="Push"></div>
    </div>

    <div id="footer">
      <div class="container">
        <a class="btn" ng-click="visible = true"><i class="icon-plus"></i>Add</a>
      </div>
    </div>
    </body>

App.js:

var app = angular.module('birthdayToDo', []);

app.controller('main', function($scope){ 

    // Start as not visible but when button is tapped it will show as true 

        $scope.visible = false;

    // Create the array to hold the list of Birthdays

        $scope.bdays = [];

    // Create the function to Push the data into the "bdays" array

    $scope.newBirthday = function(){

        $scope.bdays.Push({name:$scope.bdayname, date:$scope.bdaydate});

        $scope.bdayname = '';
        $scope.bdaydate = '';

    };
});
54
Jess McKenzie

各ノード内にフォームを配置し、ng-showおよびng-hideを使用して、それぞれ編集を有効または無効にします。このようなもの:

<li>
  <span ng-hide="editing" ng-click="editing = true">{{bday.name}} | {{bday.date}}</span>
  <form ng-show="editing" ng-submit="editing = false">
    <label>Name:</label>
    <input type="text" ng-model="bday.name" placeholder="Name" ng-required/>
    <label>Date:</label>
    <input type="date" ng-model="bday.date" placeholder="Date" ng-required/>
    <br/>
    <button class="btn" type="submit">Save</button>
   </form>
 </li>

重要なポイントは次のとおりです。

  • コントロールng-modelをローカルスコープに変更しました
  • ng-showformに追加して、編集中に表示できるようにしました
  • 編集中にコンテンツを非表示にするspanng-hideを追加しました
  • ng-clickを追加しました。これは他の要素に含めることができ、editingtrueに切り替えます。
  • ng-submiteditingからfalseに切り替えるように変更しました

更新されたPlunker です。

71
Caio Cunha

インライン編集ソリューションを探していて、有望そうなプランカーを見つけましたが、すぐに機能しませんでした。コードをいじくり回した後、動作するようになりました。この作品をコーディングする最初の努力をした人への称賛。

例はこちらから入手できます http://plnkr.co/edit/EsW7mV?p=preview

コードは次のとおりです。

app.controller('MainCtrl', function($scope) {

  $scope.updateTodo = function(indx) {
    console.log(indx);
  };

  $scope.cancelEdit = function(value) {
    console.log('Canceled editing', value);
  };

  $scope.todos = [
    {id:123, title: 'Lord of the things'},
    {id:321, title: 'Hoovering heights'},
    {id:231, title: 'Watership brown'}
  ];
});

// On esc event
app.directive('onEsc', function() {
  return function(scope, Elm, attr) {
    Elm.bind('keydown', function(e) {
      if (e.keyCode === 27) {
        scope.$apply(attr.onEsc);
      }
    });
  };
});

// On enter event
app.directive('onEnter', function() {
  return function(scope, Elm, attr) {
    Elm.bind('keypress', function(e) {
      if (e.keyCode === 13) {
        scope.$apply(attr.onEnter);
      }
    });
  };
});

// Inline edit directive
app.directive('inlineEdit', function($timeout) {
  return {
    scope: {
      model: '=inlineEdit',
      handleSave: '&onSave',
      handleCancel: '&onCancel'
    },
    link: function(scope, Elm, attr) {
      var previousValue;

      scope.edit = function() {
        scope.editMode = true;
        previousValue = scope.model;

        $timeout(function() {
          Elm.find('input')[0].focus();
        }, 0, false);
      };
      scope.save = function() {
        scope.editMode = false;
        scope.handleSave({value: scope.model});
      };
      scope.cancel = function() {
        scope.editMode = false;
        scope.model = previousValue;
        scope.handleCancel({value: scope.model});
      };
    },
    templateUrl: 'inline-edit.html'
  };
});

ディレクティブテンプレート:

<div>
  <input type="text" on-enter="save()" on-esc="cancel()" ng-model="model" ng-show="editMode">
  <button ng-click="cancel()" ng-show="editMode">cancel</button>
  <button ng-click="save()" ng-show="editMode">save</button>
  <span ng-mouseenter="showEdit = true" ng-mouseleave="showEdit = false">
    <span ng-hide="editMode" ng-click="edit()">{{model}}</span>
    <a ng-show="showEdit" ng-click="edit()">edit</a>
  </span>
</div>

それを使用するには、水を追加するだけです:

<div ng-repeat="todo in todos" 
     inline-edit="todo.title" 
     on-save="updateTodo($index)" 
     on-cancel="cancelEdit(todo.title)"></div>

更新:

別のオプションは、AngularJS用の既製のXeditableを使用することです。

http://vitalets.github.io/angular-xeditable/

26
John P

angular-xeditable で動作するようにプランカーを修正しました:

http://plnkr.co/edit/xUDrOS?p=preview

インライン編集の一般的なソリューションです-editable-textタグに切り替える<input type="text">ディレクティブを使用してハイパーリンクを作成します。

<a href="#" editable-text="bday.name" ng-click="myform.$show()" e-placeholder="Name">
    {{bday.name || 'empty'}}
</a>

日付については、html5 editable-dateに切り替える<input type="date">ディレクティブを使用しました。

7
vitalets

これは一般的な機能であるため、このためのディレクティブを作成することをお勧めします。実際、誰かがすでにそれを行っており、オープンソース化しています。 editablespan ライブラリを 私のプロジェクトの1つ で使用しましたが、完全に機能しました。強くお勧めします。

4