aboutsummaryrefslogtreecommitdiff
path: root/src/content/navigates.js
blob: 64e5fc0af81df457175a6414f820ece39dde784a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
const PREV_LINK_PATTERNS = [
  /\bprev\b/i, /\bprevious\b/i, /\bback\b/i,
  /</, /\u2039/, /\u2190/, /\xab/, /\u226a/, /<</
];
const NEXT_LINK_PATTERNS = [
  /\bnext\b/i,
  />/, /\u203a/, /\u2192/, /\xbb/, /\u226b/, />>/
];

const findLinkByPatterns = (win, patterns) => {
  let links = win.document.getElementsByTagName('a');
  return Array.prototype.find.call(links, (link) => {
    return patterns.some(ptn => ptn.test(link.textContent));
  });
};

const historyPrev = (win) => {
  win.history.back();
};

const historyNext = (win) => {
  win.history.forward();
};

const linkPrev = (win) => {
  let link = win.document.querySelector('a[rel=prev]');
  if (link) {
    return link.click();
  }
  link = findLinkByPatterns(win, PREV_LINK_PATTERNS);
  if (link) {
    link.click();
  }
};

const linkNext = (win) => {
  let link = win.document.querySelector('a[rel=next]');
  if (link) {
    return link.click();
  }
  link = findLinkByPatterns(win, NEXT_LINK_PATTERNS);
  if (link) {
    link.click();
  }
};

const parent = (win) => {
  let loc = win.location;
  if (loc.hash !== '') {
    loc.hash = '';
    return;
  } else if (loc.search !== '') {
    loc.search = '';
    return;
  }

  const basenamePattern = /\/[^/]+$/;
  const lastDirPattern = /\/[^/]+\/$/;
  if (basenamePattern.test(loc.pathname)) {
    loc.pathname = loc.pathname.replace(basenamePattern, '/');
  } else if (lastDirPattern.test(loc.pathname)) {
    loc.pathname = loc.pathname.replace(lastDirPattern, '/');
  }
};

const root = (win) => {
  win.location = win.location.origin;
};

export { historyPrev, historyNext, linkPrev, linkNext, parent, root };