Add token symbol matching

This commit is contained in:
Clement Ho 2016-11-14 13:22:32 -06:00
parent 01eb0571f0
commit 329b03b3c3
2 changed files with 77 additions and 25 deletions

View File

@ -4,18 +4,37 @@
key: 'author', key: 'author',
type: 'string', type: 'string',
param: 'username', param: 'username',
symbol: '@',
}, { }, {
key: 'assignee', key: 'assignee',
type: 'string', type: 'string',
param: 'username', param: 'username',
symbol: '@',
conditions: [{
keyword: 'none',
url: 'assignee_id=0',
}]
}, { }, {
key: 'milestone', key: 'milestone',
type: 'string', type: 'string',
param: 'title', param: 'title',
symbol: '%',
conditions: [{
keyword: 'none',
url: 'milestone_title=No+Milestone',
}, {
keyword: 'upcoming',
url: 'milestone_title=%23upcoming',
}]
}, { }, {
key: 'label', key: 'label',
type: 'array', type: 'array',
param: 'name[]', param: 'name[]',
symbol: '~',
conditions: [{
keyword: 'none',
url: 'label_name[]=No+Label',
}]
}]; }];
function clearSearch(e) { function clearSearch(e) {
@ -47,28 +66,42 @@
const key = decodeURIComponent(split[0]); const key = decodeURIComponent(split[0]);
const value = split[1]; const value = split[1];
// Sanitize value since URL converts spaces into + // Check if it matches edge conditions listed in validTokenKeys
// Replace before decode so that we know what was originally + versus the encoded + let conditionIndex = 0;
const sanitizedValue = value ? decodeURIComponent(value.replace(/[+]/g, ' ')) : value; const validCondition = validTokenKeys.filter(v => v.conditions && v.conditions.filter((c, index) => {
const match = validTokenKeys.filter(t => key === `${t.key}_${t.param}`)[0]; if (c.url === p) {
conditionIndex = index;
if (match) {
const sanitizedKey = key.slice(0, key.indexOf('_'));
const valueHasSpace = sanitizedValue.indexOf(' ') !== -1;
const preferredQuotations = '"';
let quotationsToUse = preferredQuotations;
if (valueHasSpace) {
// Prefer ", but use ' if required
quotationsToUse = sanitizedValue.indexOf(preferredQuotations) === -1 ? preferredQuotations : '\'';
} }
return c.url === p;
})[0])[0];
inputValue += valueHasSpace ? `${sanitizedKey}:${quotationsToUse}${sanitizedValue}${quotationsToUse}` : `${sanitizedKey}:${sanitizedValue}`; if (validCondition) {
inputValue += ' '; inputValue += `${validCondition.key}:${validCondition.conditions[conditionIndex].keyword}`;
} else if (!match && key === 'search') { } else {
inputValue += sanitizedValue; // Sanitize value since URL converts spaces into +
inputValue += ' '; // Replace before decode so that we know what was originally + versus the encoded +
const sanitizedValue = value ? decodeURIComponent(value.replace(/[+]/g, ' ')) : value;
const match = validTokenKeys.filter(t => key === `${t.key}_${t.param}`)[0];
if (match) {
const sanitizedKey = key.slice(0, key.indexOf('_'));
const valueHasSpace = sanitizedValue.indexOf(' ') !== -1;
const symbol = match.symbol;
const preferredQuotations = '"';
let quotationsToUse = preferredQuotations;
if (valueHasSpace) {
// Prefer ", but use ' if required
quotationsToUse = sanitizedValue.indexOf(preferredQuotations) === -1 ? preferredQuotations : '\'';
}
inputValue += valueHasSpace ? `${sanitizedKey}:${symbol}${quotationsToUse}${sanitizedValue}${quotationsToUse}` : `${sanitizedKey}:${symbol}${sanitizedValue}`;
inputValue += ' ';
} else if (!match && key === 'search') {
inputValue += sanitizedValue;
inputValue += ' ';
}
} }
}); });
@ -133,8 +166,23 @@
path += `&state=${currentState}`; path += `&state=${currentState}`;
tokens.forEach((token) => { tokens.forEach((token) => {
const param = validTokenKeys.filter(t => t.key === token.key)[0].param; const match = validTokenKeys.filter(t => t.key === token.key)[0];
path += `&${token.key}_${param}=${encodeURIComponent(token.value)}`; let tokenPath = '';
if (token.wildcard && match.conditions) {
const condition = match.conditions.filter(c => c.keyword === token.value.toLowerCase())[0];
if (condition) {
tokenPath = `${condition.url}`;
}
} else if (!token.wildcard) {
// Remove the wildcard token
tokenPath = `${token.key}_${match.param}=${encodeURIComponent(token.value.slice(1))}`;
} else {
tokenPath = `${token.key}_${match.param}=${encodeURIComponent(token.value)}`;
}
path += `&${tokenPath}`;
}); });
if (searchToken) { if (searchToken) {

View File

@ -57,7 +57,10 @@
if (colonIndex !== -1) { if (colonIndex !== -1) {
const tokenKey = i.slice(0, colonIndex).toLowerCase(); const tokenKey = i.slice(0, colonIndex).toLowerCase();
const tokenValue = i.slice(colonIndex + 1); const tokenValue = i.slice(colonIndex + 1);
const match = this.validTokenKeys.filter(v => v.key === tokenKey)[0]; const tokenSymbol = tokenValue[0];
console.log(tokenSymbol)
const keyMatch = this.validTokenKeys.filter(v => v.key === tokenKey)[0];
const symbolMatch = this.validTokenKeys.filter(v => v.symbol === tokenSymbol)[0];
if (tokenValue.indexOf('"') !== -1) { if (tokenValue.indexOf('"') !== -1) {
lastQuotation = '"'; lastQuotation = '"';
@ -67,10 +70,11 @@
incompleteToken = true; incompleteToken = true;
} }
if (match && tokenValue.length > 0) { if (keyMatch && tokenValue.length > 0) {
this.tokens.push({ this.tokens.push({
key: match.key, key: keyMatch.key,
value: tokenValue, value: tokenValue,
wildcard: symbolMatch ? false : true,
}); });
return; return;