Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Main #25

Open
wants to merge 7 commits into
base: gh-pages
Choose a base branch
from
Open

Main #25

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions assessment.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
body {
background-color: #04a6eb;
color: #fdffff;
width: 500px;
margin-right: auto;
margin-left: auto;
}
button {
padding: 5px 20px;
background-color: #337ab7;
color: #fdffff;
border-style: none;
}
input {
height: 20px;
}
24 changes: 24 additions & 0 deletions assessment.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="twitter:card" content="summary" />
<meta property="og:url" content="https://hiroakiiiii.github.io/assessment/assessment.html" />
<meta property="og:title" content="あなたのいいところ診断" />
<meta
property="og:description" content="N予備校プログラミング入門コースで制作した、「あなたのいいところ診断」サイトです。" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>hiroakiiiiiのいいところ診断</title>
<link rel="stylesheet" href="assessment.css" />
</head>
<body>
<h1>あなたのいいところを診断します</h1>
<p>診断したい名前を入れて下さい</p>
<input type="text" id="user-name" size="40" max="20"/>
<button id="assessment">診断する</button>
<div id="result-area"></div>
<div id="tweet-area"></div>
<script src="assessment.js"></script>
</body>
</html>
115 changes: 115 additions & 0 deletions assessment.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,115 @@
'use strict';
const userNameInput = document.getElementById('user-name');
const assessmentButton = document.getElementById('assessment');
const resultDivided = document.getElementById('result-area');
const tweetDivided = document.getElementById('tweet-area');

/**
* 指定した要素の子供をすべて削除する
* @param {HTMLElement} element HTMLの要素
*/
function removeAllChildren (element) {
while (element.firstChild) {
//子供の要素がある限り削除
element.removeChild(element.firstChild);
}
}
userNameInput.onkeydown = event => {
if (event.key === 'Enter'){
assessmentButton.onclick();
}
};
assessmentButton.onclick = () => {
const userName = userNameInput.value;
 if (userName.length === 0 ) {
//名前が空白の時は処理を終了する
return;
}

//診断エリアの作成
while (resultDivided.firstChild){
//子供の要素がある限り削除
resultDivided.removeChild(resultDivided.firstChild);
}
const header = document.createElement('h3');
header.innerText = '診断結果';
resultDivided.appendChild(header);

const paragraph = document.createElement('p');
const result = assessment(userName);
paragraph.innerText = result;
resultDivided.appendChild(paragraph);

//TODOツイートエリアの作成
removeAllChildren(tweetDivided)
const anchor = document.createElement('a');
const hrefValue =
'https://twitter.com/intent/tweet?button_hashtag=' +
encodeURIComponent('あなたのいいところ') +
'&ref_src=twsrc%5Etfw';

anchor.setAttribute('href',hrefValue);
anchor.className = 'twitter-hashtag-button';
anchor.setAttribute('data-text',result);
anchor.innerText = 'Tweet #あなたのいいところ';
tweetDivided.appendChild(anchor);

// widgrt.js の設定
const script = document.createElement('script');
script.setAttribute('src','https://platform.twitter.com/widgets.js');
tweetDivided.appendChild(script);




};

const answers = [
'{userName}のいいところは声です。{userName}の特徴的な声は皆を惹きつけ、心に残ります。',
'{userName}のいいところはまなざしです。{userName}に見つめられた人は、気になって仕方がないでしょう。',
'{userName}のいいところは情熱です。{userName}の情熱に周りの人は感化されます。',
'{userName}のいいところは厳しさです。{userName}の厳しさがものごとをいつも成功に導きます。',
'{userName}のいいところは知識です。博識な{userName}を多くの人が頼りにしています。',
'{userName}のいいところはユニークさです。{userName}だけのその特徴が皆を楽しくさせます。',
'{userName}のいいところは用心深さです。{userName}の洞察に、多くの人が助けられます。',
'{userName}のいいところは見た目です。内側から溢れ出る{userName}の良さに皆が気を惹かれます。',
'{userName}のいいところは決断力です。{userName}がする決断にいつも助けられる人がいます。',
'{userName}のいいところは思いやりです。{userName}に気をかけてもらった多くの人が感謝しています。',
'{userName}のいいところは感受性です。{userName}が感じたことに皆が共感し、わかりあうことができます。',
'{userName}のいいところは節度です。強引すぎない{userName}の考えに皆が感謝しています。',
'{userName}のいいところは好奇心です。新しいことに向かっていく{userName}の心構えが多くの人に魅力的に映ります。',
'{userName}のいいところは気配りです。{userName}の配慮が多くの人を救っています。',
'{userName}のいいところはその全てです。ありのままの{userName}自身がいいところなのです。',
'{userName}のいいところは自制心です。やばいと思ったときにしっかりと衝動を抑えられる{userName}が皆から評価されています。',
'{userName}のいいところは優しさです。{userName}の優しい雰囲気や立ち振る舞いに多くの人が癒やされています。'
];
/**
* 名前の文字列を渡すと診断結果を返す関数
* @param {string}userName ユーザーの名前
* @return {string}診断結果
*/
function assessment(userName) {
//全文文字のコード番号を取得してそれに足し合わせる
let sumOfCharCode = 0;
for(let i = 0; i < userName.length; i++) {
sumOfCharCode = sumOfCharCode + userName.charCodeAt(i);
}

//文字のコード番号の合計を回答の数で割って添字の数値を求める
const index = sumOfCharCode % answers.length;
let result = answers[index];

result = result.replace(/\{userName\}/g, userName);
return result;
}
//テストコード
console.assert(
assessment('太郎')===
'太郎のいいところは決断力です。太郎がする決断にいつも助けられる人がいます。',
'診断結果の文言の特定の部分に名前に置き換える処理が正しくありません。'
);

console.assert(
assessment('太郎')===assessment('太郎'),
'入力が同じ名前なら同じ診断結果を出力する処理が正しくありません'
);