-
Notifications
You must be signed in to change notification settings - Fork 112
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Integrate JS soy proto support (#124)
- Loading branch information
Showing
13 changed files
with
305 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
// Copyright 2016 The Closure Rules Authors. All rights reserved. | ||
// | ||
// Licensed 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. | ||
|
||
goog.module('io.bazel.rules.closure.GreeterIdomProto'); | ||
|
||
const idom = goog.require('incrementaldom'); | ||
const greeter = goog.require('io.bazel.rules.closure.soy.greeter.incrementaldom'); | ||
const Person = goog.require('proto.io.bazel.rules.closure.soy.Person'); | ||
|
||
|
||
|
||
exports = class GreeterIdomProto { | ||
/** | ||
* Greeter page. | ||
* @param {string} name Name of person to greet. | ||
*/ | ||
constructor(name) { | ||
/** | ||
* Name of person to greet. | ||
* @private {string} | ||
* @const | ||
*/ | ||
this.name_ = name; | ||
} | ||
|
||
/** | ||
* Renders HTML greeting as document body. | ||
*/ | ||
greet() { | ||
var person = new Person(); | ||
person.setName(this.name_); | ||
idom.patchInner(goog.global.document.body, greeter.greet, {person: person}); | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
// Copyright 2016 The Closure Rules Authors. All rights reserved. | ||
// | ||
// Licensed 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. | ||
|
||
{namespace io.bazel.rules.closure.soy.greeter autoescape="strict"} | ||
|
||
|
||
/** | ||
* Greets a person. | ||
*/ | ||
{template .greet} | ||
{@param person: io.bazel.rules.closure.soy.Person} | ||
<p> | ||
Hello <b>{$person.name}</b>! | ||
</p> | ||
{/template} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
// Copyright 2016 The Closure Rules Authors. All rights reserved. | ||
// | ||
// Licensed 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. | ||
|
||
goog.require('goog.module'); | ||
goog.require('goog.testing.asserts'); | ||
goog.require('goog.testing.jsunit'); | ||
goog.require('io.bazel.rules.closure.GreeterIdomProto'); | ||
|
||
|
||
function testGreet() { | ||
var GreeterIdom = goog.module.get('io.bazel.rules.closure.GreeterIdomProto'); | ||
var greeter = new GreeterIdom('Andy'); | ||
greeter.greet(); | ||
assertHTMLEquals('<p>Hello <b>Andy</b>!</p>', document.body.innerHTML); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
// Copyright 2016 The Closure Rules Authors. All rights reserved. | ||
// | ||
// Licensed 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. | ||
|
||
goog.provide('io.bazel.rules.closure.GreeterProto'); | ||
|
||
goog.require('goog.soy'); | ||
goog.require('io.bazel.rules.closure.soy.greeter'); | ||
goog.require('proto.io.bazel.rules.closure.soy.Person'); | ||
|
||
|
||
|
||
/** | ||
* Greeter page. | ||
* @param {string} name Name of person to greet. | ||
* @constructor | ||
* @final | ||
*/ | ||
io.bazel.rules.closure.GreeterProto = function(name) { | ||
|
||
/** | ||
* Name of person to greet. | ||
* @private {string} | ||
* @const | ||
*/ | ||
this.name_ = name; | ||
}; | ||
|
||
|
||
/** | ||
* Renders HTML greeting as document body. | ||
*/ | ||
io.bazel.rules.closure.GreeterProto.prototype.greet = function() { | ||
var person = new proto.io.bazel.rules.closure.soy.Person(); | ||
person.setName(this.name_); | ||
|
||
goog.soy.renderElement(goog.global.document.body, | ||
io.bazel.rules.closure.soy.greeter.greet, | ||
{person: person}); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
// Copyright 2016 The Closure Rules Authors. All rights reserved. | ||
// | ||
// Licensed 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. | ||
|
||
{namespace io.bazel.rules.closure.soy.greeter autoescape="strict"} | ||
|
||
|
||
/** | ||
* Greets a person. | ||
*/ | ||
{template .greet} | ||
{@param person: io.bazel.rules.closure.soy.Person} | ||
<p> | ||
Hello <b>{$person.name}</b>! | ||
{/template} |
Oops, something went wrong.