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
<template> | |
<div> | |
<input type="text" autocomplete="off" v-model="userinput"> | |
<ul> | |
<li v-for="item in items"> | |
{{ item.dispText }} | |
</li> | |
</ul> | |
</div> | |
</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
const fs = require("fs"); | |
const filepath = "./output/output.json"; | |
const elasticsearch = require("elasticsearch"); | |
const ES_INDEX = "kintone"; // Elasticsearch index name | |
const ES_TYPE = "log"; // Elsticsearch index type name | |
const ES_CLIENT = new elasticsearch.Client({ | |
host: "127.0.0.1:9200" // Elasticsearch URL:port | |
}); |
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
const util = require("./QueryKintoneRecords"); | |
const fs = require("fs"); | |
const env = JSON.parse(fs.readFileSync("./config/env.json")); | |
const queryKintoneRecords = new util.QueryKintoneRecords(env.domain, env.appId, env.apiToken); | |
const filepath = "./output/output.json"; | |
describe("JSON出力", function () { | |
it("kintoneから取得・ファイル書き込み", function (done) { |
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
import React from "react"; | |
export default class PdfView extends React.Component { | |
constructor(props) { | |
super(props); | |
this.state = { | |
height: this.props.height, | |
fileKey: this.props.fileKey | |
}; |
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
(function () { | |
"use strict"; | |
firebase.initializeApp({ | |
apiKey: "XXxxXxXXXx99x9XX-xxx_xxXxXXXXXXxXXxXXxX", | |
authDomain: "projectId.firebaseapp.com", | |
projectId: "projectId" | |
}); | |
// Initialize Cloud Firestore through Firebase |
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
(function () { | |
"use strict"; | |
firebase.initializeApp({ | |
apiKey: "XXxxXxXXXx99x9XX-xxx_xxXxXXXXXXxXXxXXxX", | |
authDomain: "projectId.firebaseapp.com", | |
projectId: "projectId" | |
}); | |
// Initialize Cloud Firestore through Firebase |
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
{ | |
"app": 133, | |
"record": 1, | |
"comment": { | |
"text": "「このハゲー!」\n「違うだろー!違うだろー!」", | |
"mentions": [ | |
{ | |
"code": "Administrator", | |
"type": "USER" | |
} |
NewerOlder